From 5bfafe20bc11b358fe968d263f654b47711a2157 Mon Sep 17 00:00:00 2001 From: Lumir Balhar Date: Mon, 11 Mar 2024 09:17:40 +0100 Subject: [PATCH 01/16] Update to 24.0 (rhbz#2268783) --- .gitignore | 1 + python-packaging.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 0e19ead..3de6bae 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ /packaging-23.0.tar.gz /packaging-23.1.tar.gz /packaging-23.2.tar.gz +/packaging-24.0.tar.gz diff --git a/python-packaging.spec b/python-packaging.spec index c89672b..5c83b94 100644 --- a/python-packaging.spec +++ b/python-packaging.spec @@ -19,8 +19,8 @@ %endif Name: python-%{pypi_name} -Version: 23.2 -Release: 4%{?dist} +Version: 24.0 +Release: 1%{?dist} Summary: Core utilities for Python packages License: BSD-2-Clause OR Apache-2.0 @@ -134,6 +134,9 @@ echo '%{python3_sitelib}/packaging*' > %{pyproject_files} %changelog +* Mon Mar 11 2024 Lumír Balhar - 24.0-1 +- Update to 24.0 (rhbz#2268783) + * Fri Jan 26 2024 Fedora Release Engineering - 23.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild diff --git a/sources b/sources index ae5b0c6..a550b95 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (packaging-23.2.tar.gz) = 77dfeb0dc6499c55eb5bc4a5bdcdaa146122b97e8f6190c0bf75baadb4e89e4cb5b62ac7d96175acc3d8b387507472b97f0bf18c70df2b6aa78ac54e6c0eb5a3 +SHA512 (packaging-24.0.tar.gz) = bfffe6e677f3bdcaee87053caf5840396b694dfa771c37680282d70d62b6d928dae399a2da7f1a9ea2af482f1b61b353da0c6902d80ad932535995a8b21baabc From 7677c1835b3f11c4388a53bf3e182c000f60bbf5 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Thu, 6 Jun 2024 16:27:54 +0200 Subject: [PATCH 02/16] Bootstrap for Python 3.13 --- python-packaging.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/python-packaging.spec b/python-packaging.spec index 5c83b94..db720a1 100644 --- a/python-packaging.spec +++ b/python-packaging.spec @@ -1,3 +1,4 @@ +%global _with_bootstrap 1 %global pypi_name packaging # Specify --with bootstrap to build in bootstrap mode @@ -20,7 +21,7 @@ Name: python-%{pypi_name} Version: 24.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Core utilities for Python packages License: BSD-2-Clause OR Apache-2.0 @@ -134,6 +135,9 @@ echo '%{python3_sitelib}/packaging*' > %{pyproject_files} %changelog +* Thu Jun 06 2024 Python Maint - 24.0-2 +- Bootstrap for Python 3.13 + * Mon Mar 11 2024 Lumír Balhar - 24.0-1 - Update to 24.0 (rhbz#2268783) From 51ca0837a366889134b4ad7a68655fcf92d3fc3d Mon Sep 17 00:00:00 2001 From: Python Maint Date: Sun, 9 Jun 2024 11:12:19 +0200 Subject: [PATCH 03/16] Rebuilt for Python 3.13 --- python-packaging.spec | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/python-packaging.spec b/python-packaging.spec index db720a1..ee7612d 100644 --- a/python-packaging.spec +++ b/python-packaging.spec @@ -1,4 +1,3 @@ -%global _with_bootstrap 1 %global pypi_name packaging # Specify --with bootstrap to build in bootstrap mode @@ -21,7 +20,7 @@ Name: python-%{pypi_name} Version: 24.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Core utilities for Python packages License: BSD-2-Clause OR Apache-2.0 @@ -135,6 +134,9 @@ echo '%{python3_sitelib}/packaging*' > %{pyproject_files} %changelog +* Sun Jun 09 2024 Python Maint - 24.0-3 +- Rebuilt for Python 3.13 + * Thu Jun 06 2024 Python Maint - 24.0-2 - Bootstrap for Python 3.13 From fe0f20a43fe5ece4e49369df2e7d8f1dd1a4c70b Mon Sep 17 00:00:00 2001 From: Lumir Balhar Date: Tue, 11 Jun 2024 10:26:58 +0200 Subject: [PATCH 04/16] Update to 24.1 (rhbz#2291172) --- .gitignore | 1 + python-packaging.spec | 11 ++++++++--- sources | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 3de6bae..36ebd5a 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ /packaging-23.1.tar.gz /packaging-23.2.tar.gz /packaging-24.0.tar.gz +/packaging-24.1.tar.gz diff --git a/python-packaging.spec b/python-packaging.spec index ee7612d..f7065a8 100644 --- a/python-packaging.spec +++ b/python-packaging.spec @@ -9,7 +9,9 @@ # No reason to ship the documentation in RHEL either, so it is also disabled by default. %if %{without bootstrap} && %{undefined rhel} # Specify --without docs to prevent the dependency loop on python-sphinx -%bcond_without docs +# Doc subpackage is disabled because it requires sphinx-toolbox since packaging 24.1 +# and that package is not available in Fedora yet. +%bcond_with docs # Specify --without tests to prevent the dependency loop on python-pytest %bcond_without tests @@ -19,8 +21,8 @@ %endif Name: python-%{pypi_name} -Version: 24.0 -Release: 3%{?dist} +Version: 24.1 +Release: 1%{?dist} Summary: Core utilities for Python packages License: BSD-2-Clause OR Apache-2.0 @@ -134,6 +136,9 @@ echo '%{python3_sitelib}/packaging*' > %{pyproject_files} %changelog +* Mon Jun 10 2024 Lumír Balhar - 24.1-1 +- Update to 24.1 (rhbz#2291172) + * Sun Jun 09 2024 Python Maint - 24.0-3 - Rebuilt for Python 3.13 diff --git a/sources b/sources index a550b95..74bc30e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (packaging-24.0.tar.gz) = bfffe6e677f3bdcaee87053caf5840396b694dfa771c37680282d70d62b6d928dae399a2da7f1a9ea2af482f1b61b353da0c6902d80ad932535995a8b21baabc +SHA512 (packaging-24.1.tar.gz) = 45836ea0e7531c485a7d5e568f9740c7f075ff1b72a0d60422c5b76c031866428ff2137d9bd153790a9fcfff6bd4a7555bc40555409ad46debae7f1c9c1fe129 From 8f10829b0dee4e5f58ef232c907f7f90e1953920 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 19 Jul 2024 13:49:39 +0000 Subject: [PATCH 05/16] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- python-packaging.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-packaging.spec b/python-packaging.spec index f7065a8..849ecf0 100644 --- a/python-packaging.spec +++ b/python-packaging.spec @@ -22,7 +22,7 @@ Name: python-%{pypi_name} Version: 24.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Core utilities for Python packages License: BSD-2-Clause OR Apache-2.0 @@ -136,6 +136,9 @@ echo '%{python3_sitelib}/packaging*' > %{pyproject_files} %changelog +* Fri Jul 19 2024 Fedora Release Engineering - 24.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Mon Jun 10 2024 Lumír Balhar - 24.1-1 - Update to 24.1 (rhbz#2291172) From d9532d2d6e02f82dbe3c03dfe875a5cbfdee51fb Mon Sep 17 00:00:00 2001 From: Lumir Balhar Date: Sat, 9 Nov 2024 13:48:17 +0100 Subject: [PATCH 06/16] Update to 24.2 (rhbz#2324709) --- .gitignore | 1 + python-packaging.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 36ebd5a..a32df9f 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ /packaging-23.2.tar.gz /packaging-24.0.tar.gz /packaging-24.1.tar.gz +/packaging-24.2.tar.gz diff --git a/python-packaging.spec b/python-packaging.spec index 849ecf0..07cb3b6 100644 --- a/python-packaging.spec +++ b/python-packaging.spec @@ -21,8 +21,8 @@ %endif Name: python-%{pypi_name} -Version: 24.1 -Release: 2%{?dist} +Version: 24.2 +Release: 1%{?dist} Summary: Core utilities for Python packages License: BSD-2-Clause OR Apache-2.0 @@ -136,6 +136,9 @@ echo '%{python3_sitelib}/packaging*' > %{pyproject_files} %changelog +* Sat Nov 09 2024 Lumír Balhar - 24.2-1 +- Update to 24.2 (rhbz#2324709) + * Fri Jul 19 2024 Fedora Release Engineering - 24.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild diff --git a/sources b/sources index 74bc30e..0b9396f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (packaging-24.1.tar.gz) = 45836ea0e7531c485a7d5e568f9740c7f075ff1b72a0d60422c5b76c031866428ff2137d9bd153790a9fcfff6bd4a7555bc40555409ad46debae7f1c9c1fe129 +SHA512 (packaging-24.2.tar.gz) = cab6be7284c6bc2abce7a5bbdc25a40e33378576c5590dad4aef9d835a2205af81ca24af7ae3603d0e4e32f8865d87a621187dae2f86df6ac613c9886d482804 From 1d6067dd6a9141a60a50414a867769aaf4819f69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lum=C3=ADr=20Balhar?= Date: Mon, 11 Nov 2024 17:12:14 +0100 Subject: [PATCH 07/16] Convert to %autorelease and %autochangelog [skip changelog] --- changelog | 199 +++++++++++++++++++++++++++++++++++++++++ python-packaging.spec | 202 +----------------------------------------- 2 files changed, 201 insertions(+), 200 deletions(-) create mode 100644 changelog diff --git a/changelog b/changelog new file mode 100644 index 0000000..c998f50 --- /dev/null +++ b/changelog @@ -0,0 +1,199 @@ +* Sat Nov 09 2024 Lumír Balhar - 24.2-1 +- Update to 24.2 (rhbz#2324709) + +* Fri Jul 19 2024 Fedora Release Engineering - 24.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Mon Jun 10 2024 Lumír Balhar - 24.1-1 +- Update to 24.1 (rhbz#2291172) + +* Sun Jun 09 2024 Python Maint - 24.0-3 +- Rebuilt for Python 3.13 + +* Thu Jun 06 2024 Python Maint - 24.0-2 +- Bootstrap for Python 3.13 + +* Mon Mar 11 2024 Lumír Balhar - 24.0-1 +- Update to 24.0 (rhbz#2268783) + +* Fri Jan 26 2024 Fedora Release Engineering - 23.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Mon Jan 22 2024 Fedora Release Engineering - 23.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Mon Oct 09 2023 Miro Hrončok - 23.2-2 +- Use the furo Sphinx theme, as intended upstream + +* Mon Oct 02 2023 Lumír Balhar - 23.2-1 +- Update to 23.2 (rhbz#2241653) + +* Tue Aug 08 2023 Karolina Surma - 23.1-5 +- Declare the license as an SPDX expression + +* Fri Jul 21 2023 Fedora Release Engineering - 23.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Fri Jun 16 2023 Python Maint - 23.1-3 +- Rebuilt for Python 3.12 + +* Tue Jun 13 2023 Python Maint - 23.1-2 +- Bootstrap for Python 3.12 + +* Mon Apr 17 2023 Lumír Balhar - 23.1-1 +- Update to 23.1 (rhbz#2186423) + +* Fri Feb 03 2023 Tomáš Hrnčiar - 23.0-1 +- Update to 23.0.0 +- https://fedoraproject.org/wiki/Changes/Update_python-packaging_to_version_22_plus +- Fixes: rhbz#2151743 + +* Fri Jan 20 2023 Fedora Release Engineering - 21.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Tue Aug 23 2022 Miro Hrončok - 21.3-7 +- Fix tests on Big Endian builders + +* Fri Jul 22 2022 Fedora Release Engineering - 21.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Tue Jul 19 2022 Zbigniew Jędrzejewski-Szmek - 21.3-5 +- Rebuilt for pyparsing-3.0.9 + +* Mon Jun 13 2022 Python Maint - 21.3-4 +- Rebuilt for Python 3.11 + +* Mon Jun 13 2022 Python Maint - 21.3-3 +- Bootstrap for Python 3.11 + +* Fri Jan 21 2022 Fedora Release Engineering - 21.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Thu Nov 18 2021 Lumír Balhar - 21.3-1 +- Update to 21.3 +Resolves: rhbz#2024413 + +* Mon Nov 01 2021 Lumír Balhar - 21.2-1 +- Update to 21.2 +Resolves: rhbz#2018534 + +* Fri Jul 23 2021 Fedora Release Engineering - 21.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Wed Jul 07 2021 Lumír Balhar - 21.0-1 +- Update to 21.0 +Resolves: rhbz#1978925 + +* Thu Jun 03 2021 Python Maint - 20.9-3 +- Rebuilt for Python 3.10 + +* Tue Jun 01 2021 Python Maint - 20.9-2 +- Bootstrap for Python 3.10 + +* Mon Feb 01 2021 Lumír Balhar - 20.9-1 +- Update to 20.9 +Resolves: rhbz#1922545 + +* Wed Jan 27 2021 Fedora Release Engineering - 20.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Mon Dec 14 2020 Lumír Balhar - 20.8-1 +- Update to 20.8 (#1906985) + +* Mon Nov 30 2020 Lumír Balhar - 20.7-1 +- Update to 20.7 (#1902369) + +* Fri Oct 02 2020 Miro Hrončok - 20.4-3 +- Drop the dependency on six to make the package lighter + +* Wed Jul 29 2020 Fedora Release Engineering - 20.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Mon Jun 01 2020 Lumír Balhar - 20.4-1 +- Update to 20.4 (#1838285) + +* Sat May 23 2020 Miro Hrončok - 20.3-3 +- Rebuilt for Python 3.9 + +* Fri May 22 2020 Miro Hrončok - 20.3-2 +- Bootstrap for Python 3.9 + +* Fri Mar 06 2020 Lumír Balhar - 20.3-1 +- Update to 20.3 (#1810738) + +* Thu Jan 30 2020 Fedora Release Engineering - 20.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Mon Jan 27 2020 Lumír Balhar - 20.1-1 +- Update to 20.1 (#1794865) + +* Mon Jan 06 2020 Lumír Balhar - 20.0-2 +- Ignore broken tests + +* Mon Jan 06 2020 Lumír Balhar - 20.0-1 +- Update to 20.0 (#1788012) + +* Thu Sep 26 2019 Lumír Balhar - 19.2-1 +- New upstream version 19.2 (bz#1742388) + +* Mon Sep 23 2019 Lumír Balhar - 19.0-6 +- Remove Python 2 subpackage +- Make spec fedora-specific + +* Mon Sep 02 2019 Miro Hrončok - 19.0-5 +- Reduce Python 2 build time dependencies + +* Fri Aug 16 2019 Miro Hrončok - 19.0-4 +- Rebuilt for Python 3.8 + +* Thu Aug 15 2019 Miro Hrončok - 19.0-3 +- Bootstrap for Python 3.8 + +* Fri Jul 26 2019 Fedora Release Engineering - 19.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Mon Feb 04 2019 Lumír Balhar - 19.0-1 +- New upstream version + +* Sat Feb 02 2019 Fedora Release Engineering - 17.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Tue Jul 31 2018 Charalampos Stratakis - 17.1-1 +- Update to 17.1 + +* Sat Jul 14 2018 Fedora Release Engineering - 16.8-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Sat Jun 16 2018 Miro Hrončok - 16.8-10 +- Rebuilt for Python 3.7 + +* Thu Jun 14 2018 Miro Hrončok - 16.8-9 +- Bootstrap for Python 3.7 + +* Fri Feb 09 2018 Iryna Shcherbina - 16.8-8 +- Update Python 2 dependency declarations to new packaging standards + (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) + +* Fri Feb 09 2018 Fedora Release Engineering - 16.8-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 16.8-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Wed Mar 22 2017 Lumir Balhar - 16.8-5 +- Epel7 compatible spec/package + +* Mon Feb 13 2017 Charalampos Stratakis - 16.8-4 +- Rebuild as wheel + +* Sat Feb 11 2017 Fedora Release Engineering - 16.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Mon Dec 19 2016 Miro Hrončok - 16.8-2 +- Rebuild for Python 3.6 + +* Wed Nov 02 2016 Lumir Balhar - 16.8-1 +- New upstream version + +* Fri Sep 16 2016 Lumir Balhar - 16.7-1 +- Initial package. diff --git a/python-packaging.spec b/python-packaging.spec index 07cb3b6..49c22f4 100644 --- a/python-packaging.spec +++ b/python-packaging.spec @@ -22,7 +22,7 @@ Name: python-%{pypi_name} Version: 24.2 -Release: 1%{?dist} +Release: %autorelease Summary: Core utilities for Python packages License: BSD-2-Clause OR Apache-2.0 @@ -136,202 +136,4 @@ echo '%{python3_sitelib}/packaging*' > %{pyproject_files} %changelog -* Sat Nov 09 2024 Lumír Balhar - 24.2-1 -- Update to 24.2 (rhbz#2324709) - -* Fri Jul 19 2024 Fedora Release Engineering - 24.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild - -* Mon Jun 10 2024 Lumír Balhar - 24.1-1 -- Update to 24.1 (rhbz#2291172) - -* Sun Jun 09 2024 Python Maint - 24.0-3 -- Rebuilt for Python 3.13 - -* Thu Jun 06 2024 Python Maint - 24.0-2 -- Bootstrap for Python 3.13 - -* Mon Mar 11 2024 Lumír Balhar - 24.0-1 -- Update to 24.0 (rhbz#2268783) - -* Fri Jan 26 2024 Fedora Release Engineering - 23.2-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild - -* Mon Jan 22 2024 Fedora Release Engineering - 23.2-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild - -* Mon Oct 09 2023 Miro Hrončok - 23.2-2 -- Use the furo Sphinx theme, as intended upstream - -* Mon Oct 02 2023 Lumír Balhar - 23.2-1 -- Update to 23.2 (rhbz#2241653) - -* Tue Aug 08 2023 Karolina Surma - 23.1-5 -- Declare the license as an SPDX expression - -* Fri Jul 21 2023 Fedora Release Engineering - 23.1-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild - -* Fri Jun 16 2023 Python Maint - 23.1-3 -- Rebuilt for Python 3.12 - -* Tue Jun 13 2023 Python Maint - 23.1-2 -- Bootstrap for Python 3.12 - -* Mon Apr 17 2023 Lumír Balhar - 23.1-1 -- Update to 23.1 (rhbz#2186423) - -* Fri Feb 03 2023 Tomáš Hrnčiar - 23.0-1 -- Update to 23.0.0 -- https://fedoraproject.org/wiki/Changes/Update_python-packaging_to_version_22_plus -- Fixes: rhbz#2151743 - -* Fri Jan 20 2023 Fedora Release Engineering - 21.3-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild - -* Tue Aug 23 2022 Miro Hrončok - 21.3-7 -- Fix tests on Big Endian builders - -* Fri Jul 22 2022 Fedora Release Engineering - 21.3-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - -* Tue Jul 19 2022 Zbigniew Jędrzejewski-Szmek - 21.3-5 -- Rebuilt for pyparsing-3.0.9 - -* Mon Jun 13 2022 Python Maint - 21.3-4 -- Rebuilt for Python 3.11 - -* Mon Jun 13 2022 Python Maint - 21.3-3 -- Bootstrap for Python 3.11 - -* Fri Jan 21 2022 Fedora Release Engineering - 21.3-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Thu Nov 18 2021 Lumír Balhar - 21.3-1 -- Update to 21.3 -Resolves: rhbz#2024413 - -* Mon Nov 01 2021 Lumír Balhar - 21.2-1 -- Update to 21.2 -Resolves: rhbz#2018534 - -* Fri Jul 23 2021 Fedora Release Engineering - 21.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Wed Jul 07 2021 Lumír Balhar - 21.0-1 -- Update to 21.0 -Resolves: rhbz#1978925 - -* Thu Jun 03 2021 Python Maint - 20.9-3 -- Rebuilt for Python 3.10 - -* Tue Jun 01 2021 Python Maint - 20.9-2 -- Bootstrap for Python 3.10 - -* Mon Feb 01 2021 Lumír Balhar - 20.9-1 -- Update to 20.9 -Resolves: rhbz#1922545 - -* Wed Jan 27 2021 Fedora Release Engineering - 20.8-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Mon Dec 14 2020 Lumír Balhar - 20.8-1 -- Update to 20.8 (#1906985) - -* Mon Nov 30 2020 Lumír Balhar - 20.7-1 -- Update to 20.7 (#1902369) - -* Fri Oct 02 2020 Miro Hrončok - 20.4-3 -- Drop the dependency on six to make the package lighter - -* Wed Jul 29 2020 Fedora Release Engineering - 20.4-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Mon Jun 01 2020 Lumír Balhar - 20.4-1 -- Update to 20.4 (#1838285) - -* Sat May 23 2020 Miro Hrončok - 20.3-3 -- Rebuilt for Python 3.9 - -* Fri May 22 2020 Miro Hrončok - 20.3-2 -- Bootstrap for Python 3.9 - -* Fri Mar 06 2020 Lumír Balhar - 20.3-1 -- Update to 20.3 (#1810738) - -* Thu Jan 30 2020 Fedora Release Engineering - 20.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Mon Jan 27 2020 Lumír Balhar - 20.1-1 -- Update to 20.1 (#1794865) - -* Mon Jan 06 2020 Lumír Balhar - 20.0-2 -- Ignore broken tests - -* Mon Jan 06 2020 Lumír Balhar - 20.0-1 -- Update to 20.0 (#1788012) - -* Thu Sep 26 2019 Lumír Balhar - 19.2-1 -- New upstream version 19.2 (bz#1742388) - -* Mon Sep 23 2019 Lumír Balhar - 19.0-6 -- Remove Python 2 subpackage -- Make spec fedora-specific - -* Mon Sep 02 2019 Miro Hrončok - 19.0-5 -- Reduce Python 2 build time dependencies - -* Fri Aug 16 2019 Miro Hrončok - 19.0-4 -- Rebuilt for Python 3.8 - -* Thu Aug 15 2019 Miro Hrončok - 19.0-3 -- Bootstrap for Python 3.8 - -* Fri Jul 26 2019 Fedora Release Engineering - 19.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Mon Feb 04 2019 Lumír Balhar - 19.0-1 -- New upstream version - -* Sat Feb 02 2019 Fedora Release Engineering - 17.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Tue Jul 31 2018 Charalampos Stratakis - 17.1-1 -- Update to 17.1 - -* Sat Jul 14 2018 Fedora Release Engineering - 16.8-11 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Sat Jun 16 2018 Miro Hrončok - 16.8-10 -- Rebuilt for Python 3.7 - -* Thu Jun 14 2018 Miro Hrončok - 16.8-9 -- Bootstrap for Python 3.7 - -* Fri Feb 09 2018 Iryna Shcherbina - 16.8-8 -- Update Python 2 dependency declarations to new packaging standards - (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) - -* Fri Feb 09 2018 Fedora Release Engineering - 16.8-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Thu Jul 27 2017 Fedora Release Engineering - 16.8-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Wed Mar 22 2017 Lumir Balhar - 16.8-5 -- Epel7 compatible spec/package - -* Mon Feb 13 2017 Charalampos Stratakis - 16.8-4 -- Rebuild as wheel - -* Sat Feb 11 2017 Fedora Release Engineering - 16.8-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Mon Dec 19 2016 Miro Hrončok - 16.8-2 -- Rebuild for Python 3.6 - -* Wed Nov 02 2016 Lumir Balhar - 16.8-1 -- New upstream version - -* Fri Sep 16 2016 Lumir Balhar - 16.7-1 -- Initial package. +%autochangelog From 190cdfa5c6a2b1d41791403883cbc600f8293df2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 18 Jan 2025 16:57:04 +0000 Subject: [PATCH 08/16] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From f20db6945ae28becb23fdbe501d2e52db3f26372 Mon Sep 17 00:00:00 2001 From: Karolina Surma Date: Tue, 12 Nov 2024 12:25:43 +0100 Subject: [PATCH 09/16] Run a smoke test on CI Unify the test suite between Fedora and CentOS Stream. This has been cherry-picked from c10s branch. --- tests/smoke/runtest.sh | 13 +++++++++++++ tests/tests.yml | 3 +++ 2 files changed, 16 insertions(+) create mode 100644 tests/smoke/runtest.sh diff --git a/tests/smoke/runtest.sh b/tests/smoke/runtest.sh new file mode 100644 index 0000000..d0e4f06 --- /dev/null +++ b/tests/smoke/runtest.sh @@ -0,0 +1,13 @@ +#!/bin/bash +set -eux + +# Currently there is no easy way to see the versions of installed packages. +# Let's list them to make sure we're testing against the correct package set. +rpm -qa | sort +python3 -c 'import packaging' +python3 -c 'from packaging import version; version.Version("2.5.1rc2")' +python3 -c 'from packaging import specifiers; specifiers.SpecifierSet("~=1.0")' +python3 -c 'from packaging import markers; markers.Marker("python_version>'"'"'2'"'"'")' +python3 -c 'from packaging import requirements; requirements.Requirement('"'"'name[foo]>=2,<3; python_version>"2.0"'"'"')' +python3 -c 'from packaging import tags; tags.Tag("py39", "none", "any")' +python3 -c 'from packaging.utils import canonicalize_name; canonicalize_name("Django_foobar")' diff --git a/tests/tests.yml b/tests/tests.yml index c89a956..a403286 100644 --- a/tests/tests.yml +++ b/tests/tests.yml @@ -25,6 +25,9 @@ - rpm_generators_unit_tests: dir: python-rpm-generators run: ./tests/download_data_and_run_pytest.sh + - smoke: + dir: . + run: ./smoke/runtest.sh required_packages: - fedpkg-minimal - mock From 177dbd914ca7088d38f2e3ac26792ffb69a585d4 Mon Sep 17 00:00:00 2001 From: Lumir Balhar Date: Sun, 20 Apr 2025 20:26:22 +0200 Subject: [PATCH 10/16] Update to 25.0 (rhbz#2361114) --- .gitignore | 1 + python-packaging.spec | 2 +- sources | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index a32df9f..12c5076 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ /packaging-24.0.tar.gz /packaging-24.1.tar.gz /packaging-24.2.tar.gz +/packaging-25.0.tar.gz diff --git a/python-packaging.spec b/python-packaging.spec index 49c22f4..3ccae48 100644 --- a/python-packaging.spec +++ b/python-packaging.spec @@ -21,7 +21,7 @@ %endif Name: python-%{pypi_name} -Version: 24.2 +Version: 25.0 Release: %autorelease Summary: Core utilities for Python packages diff --git a/sources b/sources index 0b9396f..b75606d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (packaging-24.2.tar.gz) = cab6be7284c6bc2abce7a5bbdc25a40e33378576c5590dad4aef9d835a2205af81ca24af7ae3603d0e4e32f8865d87a621187dae2f86df6ac613c9886d482804 +SHA512 (packaging-25.0.tar.gz) = fb8419f81f0f817440c0b297fc6e963832e219e7a324bf4e0321f1e131a4822f17a19f2eb033a8d4adb622ccb16db59776ec44906a0c0b34f2877b59b9558c18 From 1d5255c3b74a90bb944718f6c1f13f2ffa22d89c Mon Sep 17 00:00:00 2001 From: Python Maint Date: Mon, 2 Jun 2025 11:22:42 +0200 Subject: [PATCH 11/16] Bootstrap for Python 3.14 --- python-packaging.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/python-packaging.spec b/python-packaging.spec index 3ccae48..6f117ab 100644 --- a/python-packaging.spec +++ b/python-packaging.spec @@ -1,3 +1,4 @@ +%global _with_bootstrap 1 %global pypi_name packaging # Specify --with bootstrap to build in bootstrap mode From 4f8ffba24fd567d1d4e0dbbf91b66359ed283699 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Tue, 3 Jun 2025 11:30:32 +0200 Subject: [PATCH 12/16] Rebuilt for Python 3.14 --- python-packaging.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/python-packaging.spec b/python-packaging.spec index 6f117ab..3ccae48 100644 --- a/python-packaging.spec +++ b/python-packaging.spec @@ -1,4 +1,3 @@ -%global _with_bootstrap 1 %global pypi_name packaging # Specify --with bootstrap to build in bootstrap mode From 6fcf0545b171b2627731a0b0a4f045f0c1aa001c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 09:13:37 +0000 Subject: [PATCH 13/16] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From 5826dff7bbe1f6c2403675bf544376dabfc5f8be Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 15 Aug 2025 14:19:05 +0200 Subject: [PATCH 14/16] Rebuilt for Python 3.14.0rc2 bytecode From 38746eb07fc3e3df1920f777a03b9a4b1ee729b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Zachar?= Date: Fri, 25 Jul 2025 14:55:26 +0200 Subject: [PATCH 15/16] CI: Drop STI and use tmt instead Resolves: rhbz#2383038 --- .fmf/version | 1 + plan.fmf | 51 ++++++++++++++++++++++++++++++++++++++++++ tests/smoke/runtest.sh | 0 tests/tests.yml | 40 --------------------------------- 4 files changed, 52 insertions(+), 40 deletions(-) create mode 100644 .fmf/version create mode 100644 plan.fmf mode change 100644 => 100755 tests/smoke/runtest.sh delete mode 100644 tests/tests.yml diff --git a/.fmf/version b/.fmf/version new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/.fmf/version @@ -0,0 +1 @@ +1 diff --git a/plan.fmf b/plan.fmf new file mode 100644 index 0000000..bd248b6 --- /dev/null +++ b/plan.fmf @@ -0,0 +1,51 @@ +execute: + how: tmt + +discover: + - name: same_repo + how: shell + tests: + - name: smoke + test: ./smoke/runtest.sh + path: /tests + - name: rpms_pyproject-rpm-macros + how: shell + url: https://src.fedoraproject.org/rpms/pyproject-rpm-macros.git + tests: + - name: pyproject_pytest + path: /tests + test: ./mocktest.sh python-pytest + - name: pyproject_entrypoints + path: /tests + test: ./mocktest.sh python-entrypoints + - name: pyproject_pluggy + path: /tests + test: ./mocktest.sh python-pluggy + - name: pyproject_clikit + path: /tests + test: ./mocktest.sh python-clikit + - name: rpms_python-rpm-generators + how: shell + test: | + # Need to clone on our own, tmt clones it into 'tests' subdirectory + # which breaks fedpkg-minimal pkgname detection + git clone --depth=1 https://src.fedoraproject.org/rpms/python-rpm-generators.git python-rpm-generators && + cd python-rpm-generators && + ./tests/download_data_and_run_pytest.sh +prepare: + - name: Install dependencies + how: install + package: + - fedpkg-minimal + - mock + - python3-pip + - python3-pytest + - python3-pyyaml + - python3-setuptools + - python3-wheel + - rpmdevtools + - rpm-build + - dnf + - name: Update packages + how: shell + script: dnf upgrade -y diff --git a/tests/smoke/runtest.sh b/tests/smoke/runtest.sh old mode 100644 new mode 100755 diff --git a/tests/tests.yml b/tests/tests.yml deleted file mode 100644 index a403286..0000000 --- a/tests/tests.yml +++ /dev/null @@ -1,40 +0,0 @@ ---- -- hosts: localhost - roles: - - role: standard-test-basic - tags: - - classic - repositories: - - repo: "https://src.fedoraproject.org/rpms/pyproject-rpm-macros.git" - dest: "pyproject-rpm-macros" - - repo: "https://src.fedoraproject.org/rpms/python-rpm-generators.git" - dest: "python-rpm-generators" - tests: - - pyproject_pytest: - dir: pyproject-rpm-macros/tests - run: ./mocktest.sh python-pytest - - pyproject_entrypoints: - dir: pyproject-rpm-macros/tests - run: ./mocktest.sh python-entrypoints - - pyproject_pluggy: - dir: pyproject-rpm-macros/tests - run: ./mocktest.sh python-pluggy - - pyproject_clikit: - dir: pyproject-rpm-macros/tests - run: ./mocktest.sh python-clikit - - rpm_generators_unit_tests: - dir: python-rpm-generators - run: ./tests/download_data_and_run_pytest.sh - - smoke: - dir: . - run: ./smoke/runtest.sh - required_packages: - - fedpkg-minimal - - mock - - python3-pip - - python3-pytest - - python3-pyyaml - - python3-setuptools - - python3-wheel - - rpmdevtools - - rpm-build From efb6ac5714056740a6cccaf214b439063fa70e3f Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 19 Sep 2025 13:55:23 +0200 Subject: [PATCH 16/16] Rebuilt for Python 3.14.0rc3 bytecode