From df32b45ac3cc363a04bc2aad07c0051bfb83e21b Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Tue, 26 Nov 2024 18:50:27 +0300 Subject: [PATCH] import pyelftools-0.30-6.el10 --- .gitignore | 1 + .pyelftools.metadata | 1 + SPECS/pyelftools.spec | 236 ++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 238 insertions(+) create mode 100644 .gitignore create mode 100644 .pyelftools.metadata create mode 100644 SPECS/pyelftools.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..039f88e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/pyelftools-0.30.tar.gz diff --git a/.pyelftools.metadata b/.pyelftools.metadata new file mode 100644 index 0000000..2cb786b --- /dev/null +++ b/.pyelftools.metadata @@ -0,0 +1 @@ +0b6cf912872cb36ef7d575cc6efc4a4a41efbe99 SOURCES/pyelftools-0.30.tar.gz diff --git a/SPECS/pyelftools.spec b/SPECS/pyelftools.spec new file mode 100644 index 0000000..d6a3bec --- /dev/null +++ b/SPECS/pyelftools.spec @@ -0,0 +1,236 @@ +# main package is archful to run tests everywhere but produces noarch packages +%global debug_package %{nil} + +Summary: Pure-Python library for parsing and analyzing ELF files +Name: pyelftools +Version: 0.30 +Release: 6%{?dist} +License: Public Domain +URL: https://github.com/eliben/pyelftools +Source0: https://github.com/eliben/pyelftools/archive/v%{version}/%{name}-%{version}.tar.gz +%global _description \ +Pure-Python library for parsing and analyzing ELF files\ +and DWARF debugging information. +%description %_description + +%package -n python3-%{name} +Summary: %{summary} +# https://github.com/eliben/pyelftools/issues/180 +Provides: bundled(python3-construct) = 2.6 +BuildRequires: %{_bindir}/llvm-dwarfdump +BuildRequires: %{_bindir}/readelf +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildArch: noarch +%{?python_provide:%python_provide python3-%{name}} +%description -n python3-%{name} %_description + +%prep +%autosetup +%ifnarch x86_64 +rm test/external_tools/llvm-dwarfdump +rm test/external_tools/readelf +%endif + +%build +%{py3_build} + +%install +%{py3_install} +pushd %{buildroot}%{_bindir} +mv readelf.py pyreadelf-%{python3_version} +ln -s pyreadelf-%{python3_version} pyreadelf-3 +ln -s pyreadelf-3 pyreadelf +popd + +%check +%{__python3} test/run_all_unittests.py +%{__python3} test/run_examples_test.py +# tests may fail because of differences in output-formatting +# from binutils' readelf. See: +# https://github.com/eliben/pyelftools/wiki/Hacking-guide#tests +%{__python3} test/run_readelf_tests.py || : + +%files -n python3-%{name} +%license LICENSE +%doc CHANGES +%{_bindir}/pyreadelf +%{_bindir}/pyreadelf-%{python3_version} +%{_bindir}/pyreadelf-3 +%{python3_sitelib}/elftools +%{python3_sitelib}/pyelftools-*.egg-info + +%changelog +* Wed Jun 26 2024 Timothy Redaelli - 0.30-6 +- Fix smoke test by adding .fmf/version file + +* Tue Jun 25 2024 Timothy Redaelli - 0.30-5 +- Add gating configuration and a simple smoke test + +* Mon Jun 24 2024 Troy Dawson - 0.30-4 +- Bump release for June 2024 mass rebuild + +* Fri Jan 26 2024 Fedora Release Engineering - 0.30-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sun Jan 21 2024 Fedora Release Engineering - 0.30-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Fri Sep 08 2023 Terje Rosten - 0.30-1 +- 0.30 + +* Fri Jul 21 2023 Fedora Release Engineering - 0.29-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Tue Jun 13 2023 Python Maint - 0.29-3 +- Rebuilt for Python 3.12 + +* Fri Jan 20 2023 Fedora Release Engineering - 0.29-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Thu Aug 11 2022 Dominik Mierzejewski - 0.29-1 +- 0.29 (#2117393) +- require llvm-dwarfdump for tests + +* Fri Jul 22 2022 Fedora Release Engineering - 0.28-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Mon Jun 13 2022 Python Maint - 0.28-2 +- Rebuilt for Python 3.11 + +* Sun Feb 13 2022 Terje Rosten - 0.28-1 +- 0.28 + +* Fri Jan 21 2022 Fedora Release Engineering - 0.27-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Tue Nov 02 2021 Dominik Mierzejewski - 0.27-5 +- fix FTBFS with python 3.11 (fixes #2019399) + +* Fri Jul 23 2021 Fedora Release Engineering - 0.27-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Fri Jun 04 2021 Python Maint - 0.27-3 +- Rebuilt for Python 3.10 + +* Wed Jan 27 2021 Fedora Release Engineering - 0.27-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Fri Oct 30 2020 Dominik Mierzejewski - 0.27-1 +- update to 0.27 (#1891845) +- run readelf tests on all arches + +* Tue Jul 28 2020 Fedora Release Engineering - 0.26-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Tue May 26 2020 Miro Hrončok - 0.26-3 +- Rebuilt for Python 3.9 + +* Thu Jan 30 2020 Fedora Release Engineering - 0.26-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Tue Dec 17 2019 Dominik Mierzejewski - 0.26-1 +- update to 0.26 (#1780153) +- make main package archful to run tests on all arches + (pythonN-pyelftools subpackages are still noarch) +- run readelf tests on x86_64 only for now +- rename binaries to conform to Python packaging guidelines +- enable python3 subpackage for EPEL7 +- declare bundled old construct module instead of needlessly requiring it + +* Thu Oct 03 2019 Miro Hrončok - 0.25-5 +- Rebuilt for Python 3.8.0rc1 (#1748018) + +* Mon Aug 19 2019 Miro Hrončok - 0.25-4 +- Rebuilt for Python 3.8 + +* Fri Jul 26 2019 Fedora Release Engineering - 0.25-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Tue Jun 11 2019 Terje Rosten - 0.25-2 +- Still support Python 2 on Fedora 31 + +* Sun May 05 2019 Terje Rosten - 0.25-1 +- 0.25 +- Use bundled construct as construct 2.9 is incompatible +- Drop Python 2 stuff on el8 and Python 31 or newer + +* Sat Feb 02 2019 Fedora Release Engineering - 0.24-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Fri Jul 13 2018 Fedora Release Engineering - 0.24-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Tue Jun 19 2018 Miro Hrončok - 0.24-2 +- Rebuilt for Python 3.7 + +* Sun Jun 17 2018 Terje Rosten - 0.24-1 +- 0.24 +- some clean up +- remove naked provide for Fedora 29 and later +- switch to Python 3 for pyreadelf for Fedora 29 and later + +* Wed Feb 21 2018 Iryna Shcherbina - 0.22-0.16.git20130619.a1d9681 +- Update Python 2 dependency declarations to new packaging standards + (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) + +* Fri Feb 09 2018 Fedora Release Engineering - 0.22-0.15.git20130619.a1d9681 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek - 0.22-0.14.git20130619.a1d9681 +- Python 2 binary package renamed to python2-pyelftools + See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3 + +* Thu Aug 03 2017 Fedora Release Engineering - 0.22-0.13.git20130619.a1d9681 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 0.22-0.12.git20130619.a1d9681 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Sat Feb 11 2017 Fedora Release Engineering - 0.22-0.11.git20130619.a1d9681 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Mon Dec 19 2016 Miro Hrončok - 0.22-0.10.git20130619.a1d9681 +- Rebuild for Python 3.6 + +* Tue Jul 19 2016 Fedora Release Engineering - 0.22-0.9.git20130619.a1d9681 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + +* Thu Feb 04 2016 Fedora Release Engineering - 0.22-0.8.git20130619.a1d9681 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Tue Nov 10 2015 Fedora Release Engineering - 0.22-0.7.git20130619.a1d9681 +- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 + +* Thu Jun 18 2015 Fedora Release Engineering - 0.22-0.6.git20130619.a1d9681 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Sun Aug 17 2014 Fedora Release Engineering - 0.22-0.5.git20130619.a1d9681 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sat Jun 07 2014 Fedora Release Engineering - 0.22-0.4.git20130619.a1d9681 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Tue May 27 2014 Kalev Lember - 0.22-0.3.git20130619.a1d9681 +- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 + +* Wed Oct 02 2013 Björn Esser - 0.22-0.2.git20130619.a1d9681 +- adaptions for new Python-guidelines + +* Fri Aug 16 2013 Björn Esser - 0.22-0.1.git20130619.a1d9681 +- update to latest pre-release git snapshot +- add python3-package +- build on all arches to get some conclusion from testsuite, + but create noarch pkgs + +* Sat Jun 08 2013 Terje Rosten - 0.21-2 +- Remove bundled construct lib + +* Thu May 09 2013 Terje Rosten - 0.21-1 +- 0.21 +- Run test +- Updated source url +- Drop defattr + +* Wed Jun 06 2012 Kushal Das 0.20-1 +- Intial package (#829676)