From 10425806961065d6979210f459ec577239acf96d Mon Sep 17 00:00:00 2001 From: Karolina Surma Date: Mon, 3 Jul 2023 19:30:21 +0200 Subject: [PATCH 01/17] Add the missing depedency on python-testtools --- python-autopage.spec | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/python-autopage.spec b/python-autopage.spec index c2cb9d2..2345a44 100644 --- a/python-autopage.spec +++ b/python-autopage.spec @@ -17,7 +17,7 @@ Name: python-%{srcname} Version: 0.5.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A Python library to provide automatic paging for console output License: ASL 2.0 URL: https://pypi.python.org/pypi/autopage @@ -37,9 +37,15 @@ Summary: %{summary} BuildRequires: python3-devel %if %{with pyproject} BuildRequires: pyproject-rpm-macros +# autopage should ideally require fixtures[streams], but we don't have that +# packaged in Fedora yet. Once it's available, we should backport the +# upstream change in tox.ini: https://github.com/zaneb/autopage/commit/08aec4a975d8 +# and remove the BuildRequire below +BuildRequires: %{py3_dist testtools} %else %if %{with enable_tests} BuildRequires: %{py3_dist fixtures} +BuildRequires: %{py3_dist testtools} %endif %endif @@ -90,6 +96,9 @@ cp %{SOURCE1} ./ %doc README.md %changelog +* Mon Jul 03 2023 Karolina Surma - 0.5.1-5 +- Add the missing test dependency on python-testtools + * Fri Jan 20 2023 Fedora Release Engineering - 0.5.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From fb8eb73c8b1eb0229060647ed22380e0d9e9f296 Mon Sep 17 00:00:00 2001 From: Karolina Surma Date: Mon, 3 Jul 2023 19:48:45 +0200 Subject: [PATCH 02/17] Skip test_end_to_end - they fail with newer less in Fedora --- python-autopage.spec | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/python-autopage.spec b/python-autopage.spec index 2345a44..55fb020 100644 --- a/python-autopage.spec +++ b/python-autopage.spec @@ -54,6 +54,11 @@ BuildRequires: %{py3_dist testtools} %prep %autosetup -n %{srcname}-%{version} +# end to end tests currently don't work in RPM, one reported example: +# https://github.com/zaneb/autopage/issues/5 +# skip them to enable Python 3.12 rebuild +rm autopage/tests/test_end_to_end.py + %if %{with pyproject} %generate_buildrequires %pyproject_buildrequires -e pep8,%{toxenv} From e1a1ea3f16360c03fa79998cdbc8973fca318abb Mon Sep 17 00:00:00 2001 From: Karolina Surma Date: Mon, 3 Jul 2023 19:52:29 +0200 Subject: [PATCH 03/17] Don't require linters for Fedora build Usage of the linters is discouraged when packaging downstream. Source: https://docs.fedoraproject.org/en-US/packaging-guidelines/Python/#_linters --- python-autopage.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-autopage.spec b/python-autopage.spec index 55fb020..ededd96 100644 --- a/python-autopage.spec +++ b/python-autopage.spec @@ -61,7 +61,7 @@ rm autopage/tests/test_end_to_end.py %if %{with pyproject} %generate_buildrequires -%pyproject_buildrequires -e pep8,%{toxenv} +%pyproject_buildrequires -t %else cp %{SOURCE1} ./ %endif From dee0ec0b1edb1b803a3684dc9b625741b46d1586 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Mon, 3 Jul 2023 20:45:26 +0200 Subject: [PATCH 04/17] Rebuilt for Python 3.12 --- python-autopage.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-autopage.spec b/python-autopage.spec index ededd96..54b9bc8 100644 --- a/python-autopage.spec +++ b/python-autopage.spec @@ -17,7 +17,7 @@ Name: python-%{srcname} Version: 0.5.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A Python library to provide automatic paging for console output License: ASL 2.0 URL: https://pypi.python.org/pypi/autopage @@ -101,6 +101,9 @@ cp %{SOURCE1} ./ %doc README.md %changelog +* Mon Jul 03 2023 Python Maint - 0.5.1-6 +- Rebuilt for Python 3.12 + * Mon Jul 03 2023 Karolina Surma - 0.5.1-5 - Add the missing test dependency on python-testtools From 6feb4b2444a402eb83399a222595996288cbb574 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 21 Jul 2023 07:30:52 +0000 Subject: [PATCH 05/17] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-autopage.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-autopage.spec b/python-autopage.spec index 54b9bc8..7687b73 100644 --- a/python-autopage.spec +++ b/python-autopage.spec @@ -17,7 +17,7 @@ Name: python-%{srcname} Version: 0.5.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A Python library to provide automatic paging for console output License: ASL 2.0 URL: https://pypi.python.org/pypi/autopage @@ -101,6 +101,9 @@ cp %{SOURCE1} ./ %doc README.md %changelog +* Fri Jul 21 2023 Fedora Release Engineering - 0.5.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Mon Jul 03 2023 Python Maint - 0.5.1-6 - Rebuilt for Python 3.12 From 5ee5fb0562026f7b02a4d43b41968da8a443a8d7 Mon Sep 17 00:00:00 2001 From: Zane Bitter Date: Mon, 16 Oct 2023 22:43:04 +1300 Subject: [PATCH 06/17] Update to version 0.5.2 from upstream Fix integration tests with less v633 and make them reliable again. --- .gitignore | 1 + 0001-Do-not-depend-on-fixtures-streams.patch | 29 ++++++++++++++++++++ python-autopage.spec | 25 +++++++++-------- sources | 2 +- 4 files changed, 44 insertions(+), 13 deletions(-) create mode 100644 0001-Do-not-depend-on-fixtures-streams.patch diff --git a/.gitignore b/.gitignore index f271a02..3a9dbf9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /autopage-0.4.0.tar.gz /autopage-0.5.0.tar.gz /autopage-0.5.1.tar.gz +/autopage-0.5.2.tar.gz diff --git a/0001-Do-not-depend-on-fixtures-streams.patch b/0001-Do-not-depend-on-fixtures-streams.patch new file mode 100644 index 0000000..d27cce3 --- /dev/null +++ b/0001-Do-not-depend-on-fixtures-streams.patch @@ -0,0 +1,29 @@ +From 5cb057af95db1f7a00f6b393401b1ca4f6a2cd14 Mon Sep 17 00:00:00 2001 +From: Zane Bitter +Date: Mon, 16 Oct 2023 23:07:52 +1300 +Subject: [PATCH] Do not depend on fixtures[streams] + +The streams extra is not yet packaged in Fedora, so we can't depend on +it. Instead, depend on testtools directly. +--- + tox.ini | 3 +-- + 1 file changed, 1 insertion(+), 2 deletions(-) + +diff --git a/tox.ini b/tox.ini +index 8e54cba..3b2ed0a 100644 +--- a/tox.ini ++++ b/tox.ini +@@ -6,9 +6,8 @@ isolated_build = true + deps = + pytest + fixtures +- fixtures[streams] + pip>=19;python_version<'3.7' +- testtools;python_version<'3.7' ++ testtools + commands = + pytest + +-- +2.41.0 + diff --git a/python-autopage.spec b/python-autopage.spec index 7687b73..a13f695 100644 --- a/python-autopage.spec +++ b/python-autopage.spec @@ -16,14 +16,18 @@ Name: python-%{srcname} -Version: 0.5.1 -Release: 7%{?dist} +Version: 0.5.2 +Release: 1%{?dist} Summary: A Python library to provide automatic paging for console output License: ASL 2.0 URL: https://pypi.python.org/pypi/autopage Source0: %{pypi_source} Source1: setup.py +# autopage should ideally require fixtures[streams], but we don't have that +# packaged in Fedora yet. +Patch1: 0001-Do-not-depend-on-fixtures-streams.patch + BuildArch: noarch %global _description %{expand: @@ -37,14 +41,12 @@ Summary: %{summary} BuildRequires: python3-devel %if %{with pyproject} BuildRequires: pyproject-rpm-macros -# autopage should ideally require fixtures[streams], but we don't have that -# packaged in Fedora yet. Once it's available, we should backport the -# upstream change in tox.ini: https://github.com/zaneb/autopage/commit/08aec4a975d8 -# and remove the BuildRequire below -BuildRequires: %{py3_dist testtools} %else %if %{with enable_tests} BuildRequires: %{py3_dist fixtures} +# autopage should ideally require fixtures[streams], but we don't have that +# packaged in Fedora yet. Once that is available, we can depend on only that +# instead of testtools. BuildRequires: %{py3_dist testtools} %endif %endif @@ -54,11 +56,6 @@ BuildRequires: %{py3_dist testtools} %prep %autosetup -n %{srcname}-%{version} -# end to end tests currently don't work in RPM, one reported example: -# https://github.com/zaneb/autopage/issues/5 -# skip them to enable Python 3.12 rebuild -rm autopage/tests/test_end_to_end.py - %if %{with pyproject} %generate_buildrequires %pyproject_buildrequires -t @@ -101,6 +98,10 @@ cp %{SOURCE1} ./ %doc README.md %changelog +* Mon Oct 16 2023 Zane Bitter 0.5.2-1 +- Fix tests with less v633 +- Fix test reliability + * Fri Jul 21 2023 Fedora Release Engineering - 0.5.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild diff --git a/sources b/sources index 8ed3583..aecfd87 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (autopage-0.5.1.tar.gz) = d2db8091bfdb209319ed8f06cea86abdc33e8ea338290d3a6f99341d78d8a9f079021c21c18c9ee7032f13496ed0d3bfe5a96465473fc747da984452d26c0382 +SHA512 (autopage-0.5.2.tar.gz) = a5449fc2a1011a3936c69784803e9f65a603cfa6df2335b095b029051fc26742109141ef2eb201f567334c0617433f29477efc43d98357d7ee00f266c6546560 From 917c3d7a38784798e0997dc3b9b7945e9cc58bab Mon Sep 17 00:00:00 2001 From: Zane Bitter Date: Wed, 18 Oct 2023 22:28:46 +1300 Subject: [PATCH 07/17] Depend on fixtures[streams] directly Now that the streams extra has been added to python-fixtures (in 4.0.1-6.fc40), we can use the correct dependencies from upstream and not have to specify the transitive dependencies ourselves. --- 0001-Do-not-depend-on-fixtures-streams.patch | 29 -------------------- python-autopage.spec | 14 ++++------ 2 files changed, 5 insertions(+), 38 deletions(-) delete mode 100644 0001-Do-not-depend-on-fixtures-streams.patch diff --git a/0001-Do-not-depend-on-fixtures-streams.patch b/0001-Do-not-depend-on-fixtures-streams.patch deleted file mode 100644 index d27cce3..0000000 --- a/0001-Do-not-depend-on-fixtures-streams.patch +++ /dev/null @@ -1,29 +0,0 @@ -From 5cb057af95db1f7a00f6b393401b1ca4f6a2cd14 Mon Sep 17 00:00:00 2001 -From: Zane Bitter -Date: Mon, 16 Oct 2023 23:07:52 +1300 -Subject: [PATCH] Do not depend on fixtures[streams] - -The streams extra is not yet packaged in Fedora, so we can't depend on -it. Instead, depend on testtools directly. ---- - tox.ini | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -diff --git a/tox.ini b/tox.ini -index 8e54cba..3b2ed0a 100644 ---- a/tox.ini -+++ b/tox.ini -@@ -6,9 +6,8 @@ isolated_build = true - deps = - pytest - fixtures -- fixtures[streams] - pip>=19;python_version<'3.7' -- testtools;python_version<'3.7' -+ testtools - commands = - pytest - --- -2.41.0 - diff --git a/python-autopage.spec b/python-autopage.spec index a13f695..ac67d57 100644 --- a/python-autopage.spec +++ b/python-autopage.spec @@ -17,17 +17,13 @@ Name: python-%{srcname} Version: 0.5.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A Python library to provide automatic paging for console output License: ASL 2.0 URL: https://pypi.python.org/pypi/autopage Source0: %{pypi_source} Source1: setup.py -# autopage should ideally require fixtures[streams], but we don't have that -# packaged in Fedora yet. -Patch1: 0001-Do-not-depend-on-fixtures-streams.patch - BuildArch: noarch %global _description %{expand: @@ -44,10 +40,7 @@ BuildRequires: pyproject-rpm-macros %else %if %{with enable_tests} BuildRequires: %{py3_dist fixtures} -# autopage should ideally require fixtures[streams], but we don't have that -# packaged in Fedora yet. Once that is available, we can depend on only that -# instead of testtools. -BuildRequires: %{py3_dist testtools} +BuildRequires: %{py3_dist fixtures[streams]} %endif %endif @@ -98,6 +91,9 @@ cp %{SOURCE1} ./ %doc README.md %changelog +* Wed Oct 25 2023 Zane Bitter 0.5.2-2 +- Depend on fixtures[streams] directly + * Mon Oct 16 2023 Zane Bitter 0.5.2-1 - Fix tests with less v633 - Fix test reliability From 0057a4e4a14a887dbe844f58bdbfc3fbdd061292 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 21 Jan 2024 23:29:13 +0000 Subject: [PATCH 08/17] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- python-autopage.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-autopage.spec b/python-autopage.spec index ac67d57..38be707 100644 --- a/python-autopage.spec +++ b/python-autopage.spec @@ -17,7 +17,7 @@ Name: python-%{srcname} Version: 0.5.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A Python library to provide automatic paging for console output License: ASL 2.0 URL: https://pypi.python.org/pypi/autopage @@ -91,6 +91,9 @@ cp %{SOURCE1} ./ %doc README.md %changelog +* Sun Jan 21 2024 Fedora Release Engineering - 0.5.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Wed Oct 25 2023 Zane Bitter 0.5.2-2 - Depend on fixtures[streams] directly From d737deed683309b9d8532194ad7a17e729423c6a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 26 Jan 2024 01:29:32 +0000 Subject: [PATCH 09/17] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- python-autopage.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-autopage.spec b/python-autopage.spec index 38be707..146ff94 100644 --- a/python-autopage.spec +++ b/python-autopage.spec @@ -17,7 +17,7 @@ Name: python-%{srcname} Version: 0.5.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A Python library to provide automatic paging for console output License: ASL 2.0 URL: https://pypi.python.org/pypi/autopage @@ -91,6 +91,9 @@ cp %{SOURCE1} ./ %doc README.md %changelog +* Fri Jan 26 2024 Fedora Release Engineering - 0.5.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sun Jan 21 2024 Fedora Release Engineering - 0.5.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 4fa67ddf957c10111824489181979256fa59c0e2 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 7 Jun 2024 23:23:33 +0200 Subject: [PATCH 10/17] Rebuilt for Python 3.13 --- python-autopage.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-autopage.spec b/python-autopage.spec index 146ff94..aa49b4c 100644 --- a/python-autopage.spec +++ b/python-autopage.spec @@ -17,7 +17,7 @@ Name: python-%{srcname} Version: 0.5.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A Python library to provide automatic paging for console output License: ASL 2.0 URL: https://pypi.python.org/pypi/autopage @@ -91,6 +91,9 @@ cp %{SOURCE1} ./ %doc README.md %changelog +* Fri Jun 07 2024 Python Maint - 0.5.2-5 +- Rebuilt for Python 3.13 + * Fri Jan 26 2024 Fedora Release Engineering - 0.5.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From f87413066c9cf9e6c99dd96638cd65286a709ceb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 19 Jul 2024 09:39:27 +0000 Subject: [PATCH 11/17] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- python-autopage.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-autopage.spec b/python-autopage.spec index aa49b4c..e74ce57 100644 --- a/python-autopage.spec +++ b/python-autopage.spec @@ -17,7 +17,7 @@ Name: python-%{srcname} Version: 0.5.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A Python library to provide automatic paging for console output License: ASL 2.0 URL: https://pypi.python.org/pypi/autopage @@ -91,6 +91,9 @@ cp %{SOURCE1} ./ %doc README.md %changelog +* Fri Jul 19 2024 Fedora Release Engineering - 0.5.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Fri Jun 07 2024 Python Maint - 0.5.2-5 - Rebuilt for Python 3.13 From 2fff915a50eeacdee2bacd79db95768dcdbfbf21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Wed, 24 Jul 2024 17:01:53 +0200 Subject: [PATCH 12/17] convert ASL 2.0 license to SPDX This is part of https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_4 --- python-autopage.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/python-autopage.spec b/python-autopage.spec index e74ce57..aa09dd9 100644 --- a/python-autopage.spec +++ b/python-autopage.spec @@ -17,9 +17,10 @@ Name: python-%{srcname} Version: 0.5.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A Python library to provide automatic paging for console output -License: ASL 2.0 +# Automatically converted from old format: ASL 2.0 - review is highly recommended. +License: Apache-2.0 URL: https://pypi.python.org/pypi/autopage Source0: %{pypi_source} Source1: setup.py @@ -91,6 +92,9 @@ cp %{SOURCE1} ./ %doc README.md %changelog +* Wed Jul 24 2024 Miroslav Suchý - 0.5.2-7 +- convert license to SPDX + * Fri Jul 19 2024 Fedora Release Engineering - 0.5.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From 6bae6dce5f8c56480d85b3f9e400316b01a43302 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 18 Jan 2025 12:05:19 +0000 Subject: [PATCH 13/17] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- python-autopage.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-autopage.spec b/python-autopage.spec index aa09dd9..4cf1357 100644 --- a/python-autopage.spec +++ b/python-autopage.spec @@ -17,7 +17,7 @@ Name: python-%{srcname} Version: 0.5.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A Python library to provide automatic paging for console output # Automatically converted from old format: ASL 2.0 - review is highly recommended. License: Apache-2.0 @@ -92,6 +92,9 @@ cp %{SOURCE1} ./ %doc README.md %changelog +* Sat Jan 18 2025 Fedora Release Engineering - 0.5.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Wed Jul 24 2024 Miroslav Suchý - 0.5.2-7 - convert license to SPDX From 9c88a066eec22e57ed590edc198a6ec090473cdc Mon Sep 17 00:00:00 2001 From: Python Maint Date: Tue, 3 Jun 2025 08:20:08 +0200 Subject: [PATCH 14/17] Rebuilt for Python 3.14 --- python-autopage.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-autopage.spec b/python-autopage.spec index 4cf1357..7d6ed5d 100644 --- a/python-autopage.spec +++ b/python-autopage.spec @@ -17,7 +17,7 @@ Name: python-%{srcname} Version: 0.5.2 -Release: 8%{?dist} +Release: 9%{?dist} Summary: A Python library to provide automatic paging for console output # Automatically converted from old format: ASL 2.0 - review is highly recommended. License: Apache-2.0 @@ -92,6 +92,9 @@ cp %{SOURCE1} ./ %doc README.md %changelog +* Tue Jun 03 2025 Python Maint - 0.5.2-9 +- Rebuilt for Python 3.14 + * Sat Jan 18 2025 Fedora Release Engineering - 0.5.2-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From 479014286414944c0ba4e77839ea470a017659bd Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 06:46:30 +0000 Subject: [PATCH 15/17] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- python-autopage.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-autopage.spec b/python-autopage.spec index 7d6ed5d..8c596dd 100644 --- a/python-autopage.spec +++ b/python-autopage.spec @@ -17,7 +17,7 @@ Name: python-%{srcname} Version: 0.5.2 -Release: 9%{?dist} +Release: 10%{?dist} Summary: A Python library to provide automatic paging for console output # Automatically converted from old format: ASL 2.0 - review is highly recommended. License: Apache-2.0 @@ -92,6 +92,9 @@ cp %{SOURCE1} ./ %doc README.md %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 0.5.2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Tue Jun 03 2025 Python Maint - 0.5.2-9 - Rebuilt for Python 3.14 From 69be73e0ca74265268deedf065725a6026cbb630 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 15 Aug 2025 13:16:38 +0200 Subject: [PATCH 16/17] Rebuilt for Python 3.14.0rc2 bytecode --- python-autopage.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-autopage.spec b/python-autopage.spec index 8c596dd..662735b 100644 --- a/python-autopage.spec +++ b/python-autopage.spec @@ -17,7 +17,7 @@ Name: python-%{srcname} Version: 0.5.2 -Release: 10%{?dist} +Release: 11%{?dist} Summary: A Python library to provide automatic paging for console output # Automatically converted from old format: ASL 2.0 - review is highly recommended. License: Apache-2.0 @@ -92,6 +92,9 @@ cp %{SOURCE1} ./ %doc README.md %changelog +* Fri Aug 15 2025 Python Maint - 0.5.2-11 +- Rebuilt for Python 3.14.0rc2 bytecode + * Fri Jul 25 2025 Fedora Release Engineering - 0.5.2-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From 183df03650740b9f58b1dd7fa5d8d62f9657e018 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 19 Sep 2025 12:47:38 +0200 Subject: [PATCH 17/17] Rebuilt for Python 3.14.0rc3 bytecode --- python-autopage.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-autopage.spec b/python-autopage.spec index 662735b..309ec73 100644 --- a/python-autopage.spec +++ b/python-autopage.spec @@ -17,7 +17,7 @@ Name: python-%{srcname} Version: 0.5.2 -Release: 11%{?dist} +Release: 12%{?dist} Summary: A Python library to provide automatic paging for console output # Automatically converted from old format: ASL 2.0 - review is highly recommended. License: Apache-2.0 @@ -92,6 +92,9 @@ cp %{SOURCE1} ./ %doc README.md %changelog +* Fri Sep 19 2025 Python Maint - 0.5.2-12 +- Rebuilt for Python 3.14.0rc3 bytecode + * Fri Aug 15 2025 Python Maint - 0.5.2-11 - Rebuilt for Python 3.14.0rc2 bytecode