From 81486bc951fdf58f9b0bd02df42f5218601981a1 Mon Sep 17 00:00:00 2001 From: rdobuilder Date: Oct 11 2024 12:53:45 +0000 Subject: Update to 4.0.0 Related-to: https://review.rdoproject.org/r/q/Icbf84989016430fcf6d5316846f622fc1c2dc011 --- diff --git a/.python-munch.metadata b/.python-munch.metadata new file mode 100644 index 0000000..8a90057 --- /dev/null +++ b/.python-munch.metadata @@ -0,0 +1 @@ +c1e9d141f43fe74fee3ad8397d1e2d4747bdaa0e SOURCES/munch-4.0.0.tar.gz diff --git a/SOURCES/Adjust-tests-for-Python-3.13.patch b/SOURCES/Adjust-tests-for-Python-3.13.patch new file mode 100644 index 0000000..346b72e --- /dev/null +++ b/SOURCES/Adjust-tests-for-Python-3.13.patch @@ -0,0 +1,32 @@ +From c5563ce5c0328e4a59d676cdf35740567978742b Mon Sep 17 00:00:00 2001 +From: Karolina Surma +Date: Wed, 5 Jun 2024 09:40:17 +0200 +Subject: [PATCH] Adjust tests for Python 3.13 + +--- + tests/test_munch.py | 9 +++++++++ + 1 file changed, 9 insertions(+) + +diff --git a/tests/test_munch.py b/tests/test_munch.py +index 9dadcee..70fa82c 100644 +--- a/tests/test_munch.py ++++ b/tests/test_munch.py +@@ -225,6 +225,15 @@ def test_reserved_attributes(attrname): + assert attr == 'munch' + elif attrname == '__dict__': + assert attr == {} ++ elif attrname == '__static_attributes__': ++ # Python 3.13: added __static_attributes__ attribute, populated by the ++ # compiler, containing a tuple of names of attributes of this class ++ # which are accessed through self.X from any function in its body. ++ assert isinstance(attr, tuple) ++ elif attrname == '__firstlineno__': ++ # Python 3.13: added __firstlineno__ attribute, populated by the ++ # compiler, containing the line number of the first line of the class definition ++ assert isinstance(attr, int) + else: + assert callable(attr) + +-- +2.44.0 + diff --git a/SPECS/python-munch.spec b/SPECS/python-munch.spec new file mode 100644 index 0000000..c8b19b3 --- /dev/null +++ b/SPECS/python-munch.spec @@ -0,0 +1,223 @@ +%bcond_without unittests +%global modname munch + +Name: python-munch +Version: 4.0.0 +Release: 1%{?dist} +Summary: A dot-accessible dictionary (a la JavaScript objects) + +License: MIT +URL: https://pypi.io/project/munch +Source0: %pypi_source %{modname} + +# Compatibility with Python 3.13 which has added more class attributes +# https://github.com/Infinidat/munch/pull/104 +Patch: Adjust-tests-for-Python-3.13.patch + +BuildArch: noarch + +BuildRequires: python3-devel +BuildRequires: pyproject-rpm-macros + +%if %{with unittests} +# the testing extra combines coverage, pylint, etc. +# tox uses the testing extra and runs coverage command +# we'll use pytest directly instead to avoid all those dependencies +# https://docs.fedoraproject.org/en-US/packaging-guidelines/Python/#_linters +BuildRequires: python3-pytest +%endif + +%global _description %{expand: +munch is a fork of David Schoonover's **Bunch** package, providing similar +functionality. 99% of the work was done by him, and the fork was made +mainly for lack of responsiveness for fixes and maintenance on the original +code. + +Munch is a dictionary that supports attribute-style access, a la +JavaScript.} + +%description %_description + +%package -n python3-munch +Summary: %{summary} +# This could go away in a subsequent release as per https://github.com/Infinidat/munch/pull/64 +Requires: %{py3_dist setuptools} + +%description -n python3-munch %_description + +%prep +%autosetup -n %{modname}-%{version} -p1 + +%generate_buildrequires +%pyproject_buildrequires %{?with_unittests:-x yaml} + +# Remove shebang to make rpmlint happy. +sed -i '/\/usr\/bin\/python/d' munch/__init__.py + +# Remove bundled egg-info in case it exists +rm -rf %{modname}.egg-info + +%build +%pyproject_wheel + + +%install +%pyproject_install +%pyproject_save_files munch + + +%check +%pyproject_check_import +%if %{with unittests} +%pytest +%endif + + +%files -n python3-munch -f %{pyproject_files} +%doc README.md +%license LICENSE.txt + + +%changelog +* Thu Oct 10 2024 Kevin Fenzi - 4.0.0-1 +- Update to 4.0.0. Fixes rhbz#2203603 + +* Fri Jul 19 2024 Fedora Release Engineering - 2.5.0-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Fri Jun 07 2024 Python Maint - 2.5.0-16 +- Rebuilt for Python 3.13 + +* Fri Jan 26 2024 Fedora Release Engineering - 2.5.0-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Mon Jan 22 2024 Fedora Release Engineering - 2.5.0-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Fri Jul 21 2023 Fedora Release Engineering - 2.5.0-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Sun Jul 02 2023 Python Maint - 2.5.0-12 +- Rebuilt for Python 3.12 + +* Fri Jan 20 2023 Fedora Release Engineering - 2.5.0-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Fri Jul 22 2022 Fedora Release Engineering - 2.5.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Mon Jun 13 2022 Python Maint - 2.5.0-9 +- Rebuilt for Python 3.11 + +* Thu May 19 2022 Nils Philippsen - 2.5.0-8 +- Fix runtime dependency on setuptools +- Modernize how the package is built + +* Fri Jan 21 2022 Fedora Release Engineering - 2.5.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Fri Jul 23 2021 Fedora Release Engineering - 2.5.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Fri Jun 04 2021 Python Maint - 2.5.0-5 +- Rebuilt for Python 3.10 + +* Wed Jan 27 2021 Fedora Release Engineering - 2.5.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Wed Jul 29 2020 Fedora Release Engineering - 2.5.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Sun May 24 2020 Miro Hrončok - 2.5.0-2 +- Rebuilt for Python 3.9 + +* Wed Mar 04 2020 Miro Hrončok - 2.5.0-1 +- Update to 2.5.0 (#1766566) +- Fixes build with Python 3.9 (#1789175) + +* Thu Jan 30 2020 Fedora Release Engineering - 2.3.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Mon Sep 09 2019 Miro Hrončok - 2.3.2-6 +- Subpackage python2-munch has been removed + See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal + +* Sat Aug 17 2019 Miro Hrončok - 2.3.2-5 +- Rebuilt for Python 3.8 + +* Fri Jul 26 2019 Fedora Release Engineering - 2.3.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sat Feb 02 2019 Fedora Release Engineering - 2.3.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Wed Nov 14 2018 Pavel Raiskup - 2.3.2-2 +- add --without=python{2,3} rpmbuild options + +* Wed Jul 25 2018 Pierre-Yves Chibon - 2.3.2-1 +- Update to 2.3.2 + +* Sat Jul 14 2018 Fedora Release Engineering - 2.2.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Mon Jun 18 2018 Miro Hrončok - 2.2.0-5 +- Rebuilt for Python 3.7 + +* Mon Feb 12 2018 Iryna Shcherbina - 2.2.0-4 +- Update Python 2 dependency declarations to new packaging standards + (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) + +* Fri Feb 09 2018 Fedora Release Engineering - 2.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek - 2.2.0-2 +- Python 2 binary package renamed to python2-munch + See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3 + +* Mon Jul 31 2017 Kevin Fenzi - 2.2.0-1 +- Update to 2.2.0. Fixes bug #1475808 + +* Thu Jul 27 2017 Fedora Release Engineering - 2.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Tue Mar 21 2017 Ralph Bean - 2.1.1-1 +- new version + +* Sat Feb 11 2017 Fedora Release Engineering - 2.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Wed Jan 11 2017 Ralph Bean - 2.1.0-1 +- new version + +* Mon Dec 19 2016 Miro Hrončok - 2.0.4-4 +- Rebuild for Python 3.6 + +* Tue Jul 19 2016 Fedora Release Engineering - 2.0.4-3 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + +* Thu Feb 04 2016 Fedora Release Engineering - 2.0.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Fri Dec 11 2015 Ralph Bean - 2.0.4-1 +- new version + +* Tue Nov 10 2015 Fedora Release Engineering - 2.0.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 + +* Wed Nov 04 2015 Ralph Bean - 2.0.4-1 +- new version + +* Sat Oct 03 2015 Ralph Bean - 2.0.3-1 +- new version + +* Mon Aug 17 2015 Ralph Bean - 2.0.2-4 +- Define license macro for el6. + +* Thu Jun 18 2015 Fedora Release Engineering - 2.0.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Sun Apr 12 2015 Ralph Bean - 2.0.2-2 +- Remove shebang to make rpmlint happy. + +* Sat Apr 11 2015 Ralph Bean - 2.0.2-1 +- Initial package for Fedora