Compare commits
No commits in common. "c9s" and "c8s" have entirely different histories.
6
gating.yaml
Normal file
6
gating.yaml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
--- !Policy
|
||||||
|
product_versions:
|
||||||
|
- rhel-8
|
||||||
|
decision_context: osci_compose_gate
|
||||||
|
rules:
|
||||||
|
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
@ -1,17 +1,23 @@
|
|||||||
|
%if 0%{?rhel} > 7
|
||||||
|
# Disable python2 build by default
|
||||||
|
%bcond_with python2
|
||||||
|
%else
|
||||||
|
%bcond_without python2
|
||||||
|
%endif
|
||||||
|
|
||||||
Summary: Utilities for working with md5sum implanted in ISO images
|
Summary: Utilities for working with md5sum implanted in ISO images
|
||||||
Name: isomd5sum
|
Name: isomd5sum
|
||||||
Version: 1.2.3
|
Version: 1.2.3
|
||||||
Release: 14%{?dist}
|
Release: 3%{?dist}
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
|
Group: Applications/System
|
||||||
|
|
||||||
Url: https://github.com/rhinstaller/isomd5sum
|
Url: https://github.com/rhinstaller/isomd5sum
|
||||||
Source0: https://github.com/rhinstaller/%{name}/archive/%{version}.tar.gz
|
Source0: https://github.com/rhinstaller/%{name}/archive/%{version}.tar.gz
|
||||||
|
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
BuildRequires: popt-devel
|
BuildRequires: popt-devel
|
||||||
BuildRequires: python3-devel
|
|
||||||
BuildRequires: make
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
The isomd5sum package contains utilities for implanting and verifying
|
The isomd5sum package contains utilities for implanting and verifying
|
||||||
@ -19,6 +25,7 @@ an md5sum implanted into an ISO9660 image.
|
|||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Development headers and library for using isomd5sum
|
Summary: Development headers and library for using isomd5sum
|
||||||
|
Group: Development/System
|
||||||
Requires: %{name} = %{epoch}:%{version}-%{release}
|
Requires: %{name} = %{epoch}:%{version}-%{release}
|
||||||
Provides: %{name}-static = %{epoch}:%{version}-%{release}
|
Provides: %{name}-static = %{epoch}:%{version}-%{release}
|
||||||
|
|
||||||
@ -26,8 +33,24 @@ Provides: %{name}-static = %{epoch}:%{version}-%{release}
|
|||||||
This contains header files and a library for working with the isomd5sum
|
This contains header files and a library for working with the isomd5sum
|
||||||
implanting and checking.
|
implanting and checking.
|
||||||
|
|
||||||
|
%if %{with python2}
|
||||||
|
%package -n python2-isomd5sum
|
||||||
|
Summary: Python bindings for isomd5sum
|
||||||
|
|
||||||
|
BuildRequires: python2-devel
|
||||||
|
|
||||||
|
%{?python_provide:%python_provide python2-isomd5sum}
|
||||||
|
|
||||||
|
%description -n python2-isomd5sum
|
||||||
|
The isomd5sum package contains utilities for implanting and verifying
|
||||||
|
an md5sum implanted into an ISO9660 image.
|
||||||
|
%endif # with python2
|
||||||
|
|
||||||
%package -n python3-isomd5sum
|
%package -n python3-isomd5sum
|
||||||
Summary: Python bindings for isomd5sum
|
Summary: Python bindings for isomd5sum
|
||||||
|
%{?python_provide:%python_provide python3-isomd5sum}
|
||||||
|
|
||||||
|
BuildRequires: python3-devel
|
||||||
|
|
||||||
%description -n python3-isomd5sum
|
%description -n python3-isomd5sum
|
||||||
The isomd5sum package contains utilities for implanting and verifying
|
The isomd5sum package contains utilities for implanting and verifying
|
||||||
@ -37,14 +60,19 @@ an md5sum implanted into an ISO9660 image.
|
|||||||
%prep
|
%prep
|
||||||
%autosetup
|
%autosetup
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
CFLAGS="$RPM_OPT_FLAGS -Wno-strict-aliasing"; export CFLAGS
|
CFLAGS="$RPM_OPT_FLAGS -Wno-strict-aliasing"; export CFLAGS
|
||||||
LDFLAGS="$RPM_LD_FLAGS"; export LDFLAGS
|
LDFLAGS="$RPM_LD_FLAGS"; export LDFLAGS
|
||||||
|
%if %{with python2}
|
||||||
|
PYTHON=%{__python2} make checkisomd5 implantisomd5 pyisomd5sum.so
|
||||||
|
%endif # with python2
|
||||||
|
|
||||||
PYTHON=%{__python3} make checkisomd5 implantisomd5 pyisomd5sum.so
|
PYTHON=%{__python3} make checkisomd5 implantisomd5 pyisomd5sum.so
|
||||||
|
|
||||||
%install
|
%install
|
||||||
|
%if %{with python2}
|
||||||
|
PYTHON=%{__python2} make DESTDIR=$RPM_BUILD_ROOT install-bin install-devel install-python
|
||||||
|
%endif # with python2
|
||||||
|
|
||||||
PYTHON=%{__python3} make DESTDIR=$RPM_BUILD_ROOT install-bin install-devel install-python
|
PYTHON=%{__python3} make DESTDIR=$RPM_BUILD_ROOT install-bin install-devel install-python
|
||||||
|
|
||||||
@ -59,50 +87,20 @@ PYTHON=%{__python3} make DESTDIR=$RPM_BUILD_ROOT install-bin install-devel insta
|
|||||||
%{_libdir}/*.a
|
%{_libdir}/*.a
|
||||||
/usr/share/pkgconfig/isomd5sum.pc
|
/usr/share/pkgconfig/isomd5sum.pc
|
||||||
|
|
||||||
|
%if %{with python2}
|
||||||
|
%files -n python2-isomd5sum
|
||||||
|
%{python2_sitearch}/pyisomd5sum.so
|
||||||
|
%endif # with python2
|
||||||
|
|
||||||
%files -n python3-isomd5sum
|
%files -n python3-isomd5sum
|
||||||
%{python3_sitearch}/pyisomd5sum.so
|
%{python3_sitearch}/pyisomd5sum.so
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1:1.2.3-14
|
* Mon May 28 2018 Charalampos Stratakis <cstratak@redhat.com> - 1:1.2.3-3
|
||||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
- Conditionalize the python2 subpackage
|
||||||
Related: rhbz#1991688
|
|
||||||
|
|
||||||
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1:1.2.3-13
|
* Mon May 28 2018 Charalampos Stratakis <cstratak@redhat.com> - 1:1.2.3-2
|
||||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
- Conditionalize the python2 subpackage
|
||||||
|
|
||||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.2.3-12
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Dec 01 2020 Brian C. Lane <bcl@redhat.com> - 1.2.3-11
|
|
||||||
- Add make to BuildRequires
|
|
||||||
|
|
||||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.2.3-10
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 1:1.2.3-9
|
|
||||||
- Rebuilt for Python 3.9
|
|
||||||
|
|
||||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.2.3-8
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 1:1.2.3-7
|
|
||||||
- Rebuilt for Python 3.8
|
|
||||||
|
|
||||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.2.3-6
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.2.3-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jan 14 2019 Miro Hrončok <mhroncok@redhat.com> - 1:1.2.3-4
|
|
||||||
- Subpackage python2-isomd5sum has been removed
|
|
||||||
See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal
|
|
||||||
|
|
||||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.2.3-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 1:1.2.3-2
|
|
||||||
- Rebuilt for Python 3.7
|
|
||||||
|
|
||||||
* Tue Apr 10 2018 Brian C. Lane <bcl@redhat.com> - 1:1.2.3-1
|
* Tue Apr 10 2018 Brian C. Lane <bcl@redhat.com> - 1:1.2.3-1
|
||||||
- New Version 1.2.3 (bcl)
|
- New Version 1.2.3 (bcl)
|
||||||
|
15
tests/cmd-line/runtest.sh
Executable file
15
tests/cmd-line/runtest.sh
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh -eux
|
||||||
|
|
||||||
|
# Create testing iso image
|
||||||
|
rm -rf ./isocontent
|
||||||
|
mkdir isocontent
|
||||||
|
dd if=/dev/zero of=isocontent/big_enough_file bs=500K count=1
|
||||||
|
mkisofs -o test.iso isocontent
|
||||||
|
|
||||||
|
# Implant and check md5 sum
|
||||||
|
implantisomd5 test.iso
|
||||||
|
checkisomd5 --verbose test.iso
|
||||||
|
|
||||||
|
# Destroy testing iso image
|
||||||
|
rm -rf ./isocontent
|
||||||
|
rm test.iso
|
6
tests/gating.yaml
Normal file
6
tests/gating.yaml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
--- !Policy
|
||||||
|
product_versions:
|
||||||
|
- rhel-8
|
||||||
|
decision_context: osci_compose_gate
|
||||||
|
rules:
|
||||||
|
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
10
tests/tests.yml
Normal file
10
tests/tests.yml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
- hosts: localhost
|
||||||
|
roles:
|
||||||
|
- role: standard-test-basic
|
||||||
|
tags:
|
||||||
|
- classic
|
||||||
|
tests:
|
||||||
|
- cmd-line
|
||||||
|
required_packages:
|
||||||
|
- genisoimage
|
||||||
|
- coreutils
|
Loading…
Reference in New Issue
Block a user