From ccf7609710ff7d0a10f9512fe4df990059f67f32 Mon Sep 17 00:00:00 2001 From: eabdullin Date: Wed, 20 Nov 2024 13:20:21 +0000 Subject: [PATCH] import RHEL 10 Beta isomd5sum-1.2.5-1.el10 --- .gitignore | 9 +-- gating.yaml | 6 -- isomd5sum.spec | 137 +++++++++++++++++++++++++------------- sources | 2 +- tests/cmd-line/runtest.sh | 15 ----- tests/gating.yaml | 6 -- tests/tests.yml | 10 --- 7 files changed, 94 insertions(+), 91 deletions(-) delete mode 100644 gating.yaml delete mode 100755 tests/cmd-line/runtest.sh delete mode 100644 tests/gating.yaml delete mode 100644 tests/tests.yml diff --git a/.gitignore b/.gitignore index ac202a2..7039e32 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1 @@ -/isomd5sum-1.0.11.tar.bz2 -/isomd5sum-1.0.12.tar.bz2 -/1.0.12.tar.gz -/1.1.0.tar.gz -/1.2.0.tar.gz -/1.2.1.tar.gz -/1.2.2.tar.gz -/1.2.3.tar.gz +isomd5sum-1.2.5.tar.gz diff --git a/gating.yaml b/gating.yaml deleted file mode 100644 index 6985029..0000000 --- a/gating.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- !Policy -product_versions: - - rhel-8 -decision_context: osci_compose_gate -rules: - - !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional} diff --git a/isomd5sum.spec b/isomd5sum.spec index f58f164..1b401e1 100644 --- a/isomd5sum.spec +++ b/isomd5sum.spec @@ -1,23 +1,21 @@ -%if 0%{?rhel} > 7 -# Disable python2 build by default -%bcond_with python2 -%else -%bcond_without python2 -%endif +%global forgeurl https://github.com/rhinstaller/isomd5sum Summary: Utilities for working with md5sum implanted in ISO images Name: isomd5sum -Version: 1.2.3 -Release: 3%{?dist} +Version: 1.2.5 +Release: 1%{?dist} Epoch: 1 -License: GPLv2+ -Group: Applications/System +License: GPL-2.0-or-later -Url: https://github.com/rhinstaller/isomd5sum -Source0: https://github.com/rhinstaller/%{name}/archive/%{version}.tar.gz +%global tag %{version} +%forgemeta +Url: %{forgeurl} +Source0: %{forgesource} BuildRequires: gcc BuildRequires: popt-devel +BuildRequires: python3-devel +BuildRequires: make %description The isomd5sum package contains utilities for implanting and verifying @@ -25,7 +23,6 @@ an md5sum implanted into an ISO9660 image. %package devel Summary: Development headers and library for using isomd5sum -Group: Development/System Requires: %{name} = %{epoch}:%{version}-%{release} Provides: %{name}-static = %{epoch}:%{version}-%{release} @@ -33,24 +30,8 @@ Provides: %{name}-static = %{epoch}:%{version}-%{release} This contains header files and a library for working with the isomd5sum 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 Summary: Python bindings for isomd5sum -%{?python_provide:%python_provide python3-isomd5sum} - -BuildRequires: python3-devel %description -n python3-isomd5sum The isomd5sum package contains utilities for implanting and verifying @@ -58,21 +39,16 @@ an md5sum implanted into an ISO9660 image. %prep -%autosetup +%forgeautosetup + %build CFLAGS="$RPM_OPT_FLAGS -Wno-strict-aliasing"; export CFLAGS 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 %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 @@ -87,20 +63,91 @@ PYTHON=%{__python3} make DESTDIR=$RPM_BUILD_ROOT install-bin install-devel insta %{_libdir}/*.a /usr/share/pkgconfig/isomd5sum.pc -%if %{with python2} -%files -n python2-isomd5sum -%{python2_sitearch}/pyisomd5sum.so -%endif # with python2 - %files -n python3-isomd5sum %{python3_sitearch}/pyisomd5sum.so %changelog -* Mon May 28 2018 Charalampos Stratakis - 1:1.2.3-3 -- Conditionalize the python2 subpackage +* Tue Jun 25 2024 Brian C. Lane - 1.2.5-1 +- New Version 1.2.5 (bcl) + Resolves: RHEL-45005 +- testpyisomd5sum.py: Use a consistent iso size (bcl) +- Remove quiet from iso creation, size seems wrong (bcl) +- workflows: Move to Fedora 39 and checkout v4 (bcl) +- Add support for riscv64 (davidlt) +- workflows: Update to use actions/checkout (bcl) +- Add a GitHub Action to run tests (bcl) +- Add mips64 (wangray1021) +- testpyisomd5sum.py: Support genisoimage, Python 2 (ryan) -* Mon May 28 2018 Charalampos Stratakis - 1:1.2.3-2 -- Conditionalize the python2 subpackage +* Mon Jun 24 2024 Troy Dawson - 1:1.2.3-24 +- Bump release for June 2024 mass rebuild + +* Wed Jan 24 2024 Fedora Release Engineering - 1:1.2.3-23 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sat Jan 20 2024 Fedora Release Engineering - 1:1.2.3-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Thu Jul 20 2023 Fedora Release Engineering - 1:1.2.3-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Tue Jun 13 2023 Python Maint - 1:1.2.3-20 +- Rebuilt for Python 3.12 + +* Mon Jan 30 2023 Brian C. Lane - 1.2.3-19 +- SPDX migration + +* Thu Jan 19 2023 Fedora Release Engineering - 1:1.2.3-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Thu Jul 21 2022 Fedora Release Engineering - 1:1.2.3-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Mon Jun 13 2022 Python Maint - 1:1.2.3-16 +- Rebuilt for Python 3.11 + +* Thu Jan 20 2022 Fedora Release Engineering - 1:1.2.3-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Thu Jul 22 2021 Fedora Release Engineering - 1:1.2.3-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Fri Jun 04 2021 Python Maint - 1:1.2.3-13 +- Rebuilt for Python 3.10 + +* Tue Jan 26 2021 Fedora Release Engineering - 1:1.2.3-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Tue Dec 01 2020 Brian C. Lane - 1.2.3-11 +- Add make to BuildRequires + +* Tue Jul 28 2020 Fedora Release Engineering - 1:1.2.3-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Tue May 26 2020 Miro Hrončok - 1:1.2.3-9 +- Rebuilt for Python 3.9 + +* Wed Jan 29 2020 Fedora Release Engineering - 1:1.2.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Mon Aug 19 2019 Miro Hrončok - 1:1.2.3-7 +- Rebuilt for Python 3.8 + +* Thu Jul 25 2019 Fedora Release Engineering - 1:1.2.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Fri Feb 01 2019 Fedora Release Engineering - 1:1.2.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Mon Jan 14 2019 Miro Hrončok - 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 - 1:1.2.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Tue Jun 19 2018 Miro Hrončok - 1:1.2.3-2 +- Rebuilt for Python 3.7 * Tue Apr 10 2018 Brian C. Lane - 1:1.2.3-1 - New Version 1.2.3 (bcl) diff --git a/sources b/sources index 84f1e92..2ff8ef9 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (1.2.3.tar.gz) = a500faa368377c8fb5dfc311bc3a6dbadd253e6af7928b691d1fc11e25b69819a611f72fa201e70f5df257cdc491c97d1f612bb179fa49de1fb0a638d6ac7972 +SHA512 (isomd5sum-1.2.5.tar.gz) = aa6bb16be18b42925ac1834aa4d558fafdba7751639acfb7344a79f7ead1125d810f13c442458526f394d8790369b1c48ab41cb73881808740263161caa99655 diff --git a/tests/cmd-line/runtest.sh b/tests/cmd-line/runtest.sh deleted file mode 100755 index 1f2f20e..0000000 --- a/tests/cmd-line/runtest.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/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 diff --git a/tests/gating.yaml b/tests/gating.yaml deleted file mode 100644 index 6985029..0000000 --- a/tests/gating.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- !Policy -product_versions: - - rhel-8 -decision_context: osci_compose_gate -rules: - - !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional} diff --git a/tests/tests.yml b/tests/tests.yml deleted file mode 100644 index 82be2b1..0000000 --- a/tests/tests.yml +++ /dev/null @@ -1,10 +0,0 @@ -- hosts: localhost - roles: - - role: standard-test-basic - tags: - - classic - tests: - - cmd-line - required_packages: - - genisoimage - - coreutils