From c7e9fc54d91f8223ad5e8f50aea86e3b487a304c Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Tue, 5 Jul 2022 10:02:29 +0200 Subject: [PATCH 01/20] Add a release helper script --- build-and-update-all-branches | 39 +++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100755 build-and-update-all-branches diff --git a/build-and-update-all-branches b/build-and-update-all-branches new file mode 100755 index 0000000..53768c2 --- /dev/null +++ b/build-and-update-all-branches @@ -0,0 +1,39 @@ +#! /bin/sh + +# Prepare main branch, review the list of branches below and then execute this +# script. + +branches='main epel7 epel8 epel9 f35 f36' + +exit_handler () +{ + git checkout main +} + +trap exit_handler EXIT + +set -e +set -x + +koji hello + +tasks= +for branch in $branches; do + if test $branch != main; then + git checkout "$branch" + git merge main + fi + git push + skip_nvr_check= + if test $branch = epel7; then + skip_nvr_check=--skip-nvr-check + fi + tasks="${tasks}`fedpkg build $skip_nvr_check --nowait | grep 'Created task' | cut -d: -f2`" +done + +if test -n "$tasks"; then + koji watch-task $tasks +fi + +git checkout main +fedpkg update From 0750cb964f6da5de10da84458ecad1a525826499 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 22 Jul 2022 20:59:56 +0000 Subject: [PATCH 02/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-progress.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-progress.spec b/python-progress.spec index 5b5e3ac..6515584 100644 --- a/python-progress.spec +++ b/python-progress.spec @@ -20,7 +20,7 @@ Name: python-%{pypi_name} Version: 1.6 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Easy to use progress bars License: ISC @@ -98,6 +98,9 @@ rm -rf %{pypi_name}.egg-info %changelog +* Fri Jul 22 2022 Fedora Release Engineering - 1.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Sat Jul 02 2022 Pavel Raiskup - 1.6-4 - fix for very frequent next() call, rhbz#2103093 From 390ed8303dd1cf4628afc6ccac6b69c329292fae Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Fri, 15 Jul 2022 09:21:25 +0200 Subject: [PATCH 03/20] Sync with https://github.com/python-progress/python-progress - use time.monotonic(), as the original fork does - return infinity time per item for zero speed Version: 1.6-6 --- 0001-fixup-moving-average-window.patch | 57 ++++++++------------------ python-progress.spec | 5 ++- 2 files changed, 22 insertions(+), 40 deletions(-) diff --git a/0001-fixup-moving-average-window.patch b/0001-fixup-moving-average-window.patch index 844a6eb..96ea569 100644 --- a/0001-fixup-moving-average-window.patch +++ b/0001-fixup-moving-average-window.patch @@ -11,7 +11,7 @@ Since the upstream default window size is only of size 10 items (by default), it calculates the average speed only for the last ~0.005s. We could enlarge the size of window (sma_window param), but the algorithm is so naive that it would decrease the -performance. +performance (O(N): sum(queue)/len(queue)). This has been discussed very extensively with upstream (PR 24 and friends) but I neither was not able to explain the problem, nor I @@ -22,36 +22,14 @@ compatibility - changes the algorithm so the average speed is calculation is fast enough, and much more stable (by default it calculates speed for window of 2 seconds). -We also don't seem to have the monotonic() mess, since we don't seem -to suffer from the same issues. - Fork with this patch backported is maintained in https://github.com/python-progress/python-progress -diff --git a/MANIFEST.in b/MANIFEST.in -index ef7c4cb..0c73842 100644 ---- a/MANIFEST.in -+++ b/MANIFEST.in -@@ -1,2 +1 @@ - include README.rst LICENSE --include test_*.py diff --git a/progress/__init__.py b/progress/__init__.py -index b434b30..71b2039 100644 +index b434b30..f26056d 100644 --- a/progress/__init__.py +++ b/progress/__init__.py -@@ -18,10 +18,7 @@ from collections import deque - from datetime import timedelta - from math import ceil - from sys import stderr --try: -- from time import monotonic --except ImportError: -- from time import time as monotonic -+from time import time - - - __version__ = '1.6' -@@ -30,19 +27,55 @@ HIDE_CURSOR = '\x1b[?25l' +@@ -30,19 +30,55 @@ HIDE_CURSOR = '\x1b[?25l' SHOW_CURSOR = '\x1b[?25h' @@ -63,7 +41,7 @@ index b434b30..71b2039 100644 + self.max_seconds = max_seconds + self.max_items = max_items + -+ stamp = time() ++ stamp = monotonic() + self.last = stamp - 0.001 + self.counter = 0 + self.deque = deque() @@ -103,30 +81,26 @@ index b434b30..71b2039 100644 def __init__(self, message='', **kwargs): self.index = 0 -- self.start_ts = monotonic() + self.start_ts = monotonic() - self.avg = 0 - self._avg_update_ts = self.start_ts - self._ts = self.start_ts - self._xput = deque(maxlen=self.sma_window) -+ self.start_ts = time() + self.window = _Window(self.sma_window_seconds, self.sma_window) for key, val in kwargs.items(): setattr(self, key, val) -@@ -67,23 +100,19 @@ class Infinite(object): - - @property +@@ -69,21 +105,17 @@ class Infinite(object): def elapsed(self): -- return int(monotonic() - self.start_ts) -+ return int(time() - self.start_ts) -+ + return int(monotonic() - self.start_ts) + + @property + def avg(self): + speed = self.window.avg + if speed: + return 1/speed -+ return 3600 # better constant? - ++ return float("inf") ++ @property def elapsed_td(self): return timedelta(seconds=self.elapsed) @@ -145,15 +119,20 @@ index b434b30..71b2039 100644 def update(self): pass -@@ -116,10 +145,7 @@ class Infinite(object): - raise AttributeError(msg) +@@ -112,14 +144,10 @@ class Infinite(object): + try: + return self.file.isatty() if self.check_tty else True + except AttributeError: +- msg = "%s has no attribute 'isatty'. Try setting check_tty=False." % self +- raise AttributeError(msg) ++ raise AttributeError('\'{}\' object has no attribute \'isatty\'. Try setting parameter check_tty=False.'.format(self)) def next(self, n=1): - now = monotonic() - dt = now - self._ts - self.update_avg(n, dt) - self._ts = now -+ self.window.next(n, time()) ++ self.window.next(n, monotonic()) self.index = self.index + n self.update() diff --git a/python-progress.spec b/python-progress.spec index 6515584..7b35399 100644 --- a/python-progress.spec +++ b/python-progress.spec @@ -20,7 +20,7 @@ Name: python-%{pypi_name} Version: 1.6 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Easy to use progress bars License: ISC @@ -98,6 +98,9 @@ rm -rf %{pypi_name}.egg-info %changelog +* Fri Jul 15 2022 Pavel Raiskup - 1.6-6 +- use time.monotonic(), bar.avg is infinity for zero speed + * Fri Jul 22 2022 Fedora Release Engineering - 1.6-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From 505ca6ee150ca11a19580f3fc228a01592daaa6f Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Fri, 15 Jul 2022 09:25:36 +0200 Subject: [PATCH 04/20] spec: clean comments after macros This caused a non-fatal syntax errors on newer systems. --- python-progress.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python-progress.spec b/python-progress.spec index 7b35399..4735194 100644 --- a/python-progress.spec +++ b/python-progress.spec @@ -53,7 +53,7 @@ Summary: %summary %{?python_provide:%python_provide python2-%{pypi_name}} %description -n python2-%{pypi_name} %_description -%endif # python2 +%endif %if 0%{with python3} @@ -62,7 +62,7 @@ Summary: Easy to use progress bars %description -n python3-%{pypi_name} Collection of easy to use progress bars and spinners. -%endif # python3 +%endif %prep From ad2c27039ec9609442e5ef4a549e09c82ba4754f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 20 Jan 2023 15:49:29 +0000 Subject: [PATCH 05/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-progress.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-progress.spec b/python-progress.spec index 4735194..1a27bd4 100644 --- a/python-progress.spec +++ b/python-progress.spec @@ -20,7 +20,7 @@ Name: python-%{pypi_name} Version: 1.6 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Easy to use progress bars License: ISC @@ -98,6 +98,9 @@ rm -rf %{pypi_name}.egg-info %changelog +* Fri Jan 20 2023 Fedora Release Engineering - 1.6-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Fri Jul 15 2022 Pavel Raiskup - 1.6-6 - use time.monotonic(), bar.avg is infinity for zero speed From 30987611b168fabdc57e24f9b1eed5b6c144bbf0 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Tue, 13 Jun 2023 20:47:57 +0200 Subject: [PATCH 06/20] Rebuilt for Python 3.12 --- python-progress.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-progress.spec b/python-progress.spec index 1a27bd4..cd2192e 100644 --- a/python-progress.spec +++ b/python-progress.spec @@ -20,7 +20,7 @@ Name: python-%{pypi_name} Version: 1.6 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Easy to use progress bars License: ISC @@ -98,6 +98,9 @@ rm -rf %{pypi_name}.egg-info %changelog +* Tue Jun 13 2023 Python Maint - 1.6-8 +- Rebuilt for Python 3.12 + * Fri Jan 20 2023 Fedora Release Engineering - 1.6-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From b0de2732cba9e027463cb0a2f1902605b8166c34 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 21 Jul 2023 12:26:00 +0000 Subject: [PATCH 07/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- python-progress.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-progress.spec b/python-progress.spec index cd2192e..7f615d5 100644 --- a/python-progress.spec +++ b/python-progress.spec @@ -20,7 +20,7 @@ Name: python-%{pypi_name} Version: 1.6 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Easy to use progress bars License: ISC @@ -98,6 +98,9 @@ rm -rf %{pypi_name}.egg-info %changelog +* Fri Jul 21 2023 Fedora Release Engineering - 1.6-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Tue Jun 13 2023 Python Maint - 1.6-8 - Rebuilt for Python 3.12 From 8dcbe52ac30a6340bb947add5cac95c7e0a934a6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 22 Jan 2024 05:12:05 +0000 Subject: [PATCH 08/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- python-progress.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-progress.spec b/python-progress.spec index 7f615d5..05200f4 100644 --- a/python-progress.spec +++ b/python-progress.spec @@ -20,7 +20,7 @@ Name: python-%{pypi_name} Version: 1.6 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Easy to use progress bars License: ISC @@ -98,6 +98,9 @@ rm -rf %{pypi_name}.egg-info %changelog +* Mon Jan 22 2024 Fedora Release Engineering - 1.6-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Fri Jul 21 2023 Fedora Release Engineering - 1.6-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From 8c1145608bcbc7bf2c87b57c89f97c5886f4fe3b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 26 Jan 2024 08:13:14 +0000 Subject: [PATCH 09/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- python-progress.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-progress.spec b/python-progress.spec index 05200f4..501b573 100644 --- a/python-progress.spec +++ b/python-progress.spec @@ -20,7 +20,7 @@ Name: python-%{pypi_name} Version: 1.6 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Easy to use progress bars License: ISC @@ -98,6 +98,9 @@ rm -rf %{pypi_name}.egg-info %changelog +* Fri Jan 26 2024 Fedora Release Engineering - 1.6-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Mon Jan 22 2024 Fedora Release Engineering - 1.6-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From aaaf5c13582a4a9b10087c2f473f11eefe587112 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 7 Jun 2024 08:57:25 +0200 Subject: [PATCH 10/20] Rebuilt for Python 3.13 --- python-progress.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-progress.spec b/python-progress.spec index 501b573..1e89985 100644 --- a/python-progress.spec +++ b/python-progress.spec @@ -20,7 +20,7 @@ Name: python-%{pypi_name} Version: 1.6 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Easy to use progress bars License: ISC @@ -98,6 +98,9 @@ rm -rf %{pypi_name}.egg-info %changelog +* Fri Jun 07 2024 Python Maint - 1.6-12 +- Rebuilt for Python 3.13 + * Fri Jan 26 2024 Fedora Release Engineering - 1.6-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 10a4af73ce4c1cbaf4b13cf8a75e6e637947d67f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 19 Jul 2024 14:12:37 +0000 Subject: [PATCH 11/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- python-progress.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-progress.spec b/python-progress.spec index 1e89985..8532c35 100644 --- a/python-progress.spec +++ b/python-progress.spec @@ -20,7 +20,7 @@ Name: python-%{pypi_name} Version: 1.6 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Easy to use progress bars License: ISC @@ -98,6 +98,9 @@ rm -rf %{pypi_name}.egg-info %changelog +* Fri Jul 19 2024 Fedora Release Engineering - 1.6-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Fri Jun 07 2024 Python Maint - 1.6-12 - Rebuilt for Python 3.13 From 853f4fd193b9fc1405f1d3d5fce0aefda110d558 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Wed, 25 Sep 2024 07:08:04 +0200 Subject: [PATCH 12/20] Update the synchronizing script --- build-and-update-all-branches | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-and-update-all-branches b/build-and-update-all-branches index 53768c2..e52a0d7 100755 --- a/build-and-update-all-branches +++ b/build-and-update-all-branches @@ -3,7 +3,7 @@ # Prepare main branch, review the list of branches below and then execute this # script. -branches='main epel7 epel8 epel9 f35 f36' +branches='main epel8 epel9 epel10 f39 f40 f41' exit_handler () { From ffb3785f1fee165771ab964d95edcf7486568bc4 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Wed, 25 Sep 2024 07:24:58 +0200 Subject: [PATCH 13/20] Make the changelog chronologically ordered --- python-progress.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-progress.spec b/python-progress.spec index 8532c35..68e07cd 100644 --- a/python-progress.spec +++ b/python-progress.spec @@ -119,7 +119,7 @@ rm -rf %{pypi_name}.egg-info * Fri Jan 20 2023 Fedora Release Engineering - 1.6-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild -* Fri Jul 15 2022 Pavel Raiskup - 1.6-6 +* Fri Jul 22 2022 Pavel Raiskup - 1.6-6 - use time.monotonic(), bar.avg is infinity for zero speed * Fri Jul 22 2022 Fedora Release Engineering - 1.6-5 From 9dde5d8b5f7ed07dbf606b382574b2945ecda89c Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Wed, 25 Sep 2024 07:27:16 +0200 Subject: [PATCH 14/20] README.md: note about Copr builds --- README.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..9d9b529 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +See also automatic push/pr [Copr builds](https://copr.fedorainfracloud.org/coprs/praiskup/enterprise-ci-python-progress/). From 70c30f0ba5a26a1e829140b1821b8aacf9c962cc Mon Sep 17 00:00:00 2001 From: Carl George Date: Mon, 23 Sep 2024 20:53:27 -0500 Subject: [PATCH 15/20] Convert to pyproject macros This updates the spec file to follow the modern Python Packaging guidelines where possible. --- python-progress.spec | 94 +++++++++++++++++--------------------------- 1 file changed, 37 insertions(+), 57 deletions(-) diff --git a/python-progress.spec b/python-progress.spec index 68e07cd..9383ca3 100644 --- a/python-progress.spec +++ b/python-progress.spec @@ -1,103 +1,83 @@ -%if 0%{?fedora} - %bcond_without python3 - %if 0%{?fedora} > 29 - %bcond_with python2 - %else - %bcond_without python2 - %endif -%else - %if 0%{?rhel} > 7 - %bcond_with python2 - %bcond_without python3 - %else - %bcond_without python2 - %bcond_with python3 - %endif -%endif - -# Created by pyp2rpm-0.5.2 %global pypi_name progress Name: python-%{pypi_name} Version: 1.6 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Easy to use progress bars License: ISC URL: http://github.com/verigak/progress/ -Source0: %pypi_source +Source0: %{pypi_source %{pypi_name}} BuildArch: noarch -%if %{with python2} -BuildRequires: python2-devel -BuildRequires: python2-setuptools -%endif - -%if %{with python3} BuildRequires: python3-devel +%if %{defined el8} BuildRequires: python3-setuptools %endif Patch1: 0001-fixup-moving-average-window.patch -%global _description\ -Collection of easy to use progress bars and spinners.\ +%global _description %{expand: +Collection of easy to use progress bars and spinners.} %description %_description -%if 0%{with python2} -%package -n python2-%{pypi_name} -Summary: %summary -%{?python_provide:%python_provide python2-%{pypi_name}} - -%description -n python2-%{pypi_name} %_description -%endif - - -%if 0%{with python3} %package -n python3-%{pypi_name} Summary: Easy to use progress bars -%description -n python3-%{pypi_name} -Collection of easy to use progress bars and spinners. -%endif +%description -n python3-%{pypi_name} %_description %prep %autosetup -p1 -n %{pypi_name}-%{version} -# Remove bundled egg-info -rm -rf %{pypi_name}.egg-info + +%if %{undefined el8} +%generate_buildrequires +%pyproject_buildrequires +%endif %build -%{?with_python2: %py2_build} -%{?with_python3: %py3_build} +%if %{defined el8} +%py3_build +%else +%pyproject_wheel +%endif %install -%{?with_python2: %py2_install} -%{?with_python3: %py3_install} - - -%if 0%{with python2} -%files -n python2-%{pypi_name} -%doc README.rst LICENSE -%{python2_sitelib}/%{pypi_name} -%{python2_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info +%if %{defined el8} +%py3_install +%else +%pyproject_install +%pyproject_save_files -l %{pypi_name} %endif -%if 0%{with python3} -%files -n python3-%{pypi_name} -%doc README.rst LICENSE + +%check +%if %{defined el8} +%py3_check_import %{pypi_name} +%else +%pyproject_check_import +%endif + + +%files -n python3-%{pypi_name} %{!?el8:-f %{pyproject_files}} +%doc README.rst +%if %{defined el8} +%license LICENSE %{python3_sitelib}/%{pypi_name} %{python3_sitelib}/%{pypi_name}-%{version}-py%{python3_version}.egg-info %endif %changelog +* Tue Sep 24 2024 Carl George - 1.6-14 +- Convert to pyproject macros + * Fri Jul 19 2024 Fedora Release Engineering - 1.6-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From 0574505f81582afea1c3ef8b6f1fb3580fb9ba17 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 18 Jan 2025 17:25:08 +0000 Subject: [PATCH 16/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- python-progress.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-progress.spec b/python-progress.spec index 9383ca3..580fafd 100644 --- a/python-progress.spec +++ b/python-progress.spec @@ -2,7 +2,7 @@ Name: python-%{pypi_name} Version: 1.6 -Release: 14%{?dist} +Release: 15%{?dist} Summary: Easy to use progress bars License: ISC @@ -75,6 +75,9 @@ Summary: Easy to use progress bars %changelog +* Sat Jan 18 2025 Fedora Release Engineering - 1.6-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Tue Sep 24 2024 Carl George - 1.6-14 - Convert to pyproject macros From b9cfe2cc7866194ebebf4657599939e8922da5d6 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Mon, 2 Jun 2025 20:34:02 +0200 Subject: [PATCH 17/20] Rebuilt for Python 3.14 --- python-progress.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-progress.spec b/python-progress.spec index 580fafd..2d62614 100644 --- a/python-progress.spec +++ b/python-progress.spec @@ -2,7 +2,7 @@ Name: python-%{pypi_name} Version: 1.6 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Easy to use progress bars License: ISC @@ -75,6 +75,9 @@ Summary: Easy to use progress bars %changelog +* Mon Jun 02 2025 Python Maint - 1.6-16 +- Rebuilt for Python 3.14 + * Sat Jan 18 2025 Fedora Release Engineering - 1.6-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From 11086bec8a8f38cd13fdf1fe8b560b1449a725f4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 09:27:00 +0000 Subject: [PATCH 18/20] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- python-progress.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-progress.spec b/python-progress.spec index 2d62614..112dc37 100644 --- a/python-progress.spec +++ b/python-progress.spec @@ -2,7 +2,7 @@ Name: python-%{pypi_name} Version: 1.6 -Release: 16%{?dist} +Release: 17%{?dist} Summary: Easy to use progress bars License: ISC @@ -75,6 +75,9 @@ Summary: Easy to use progress bars %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 1.6-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Mon Jun 02 2025 Python Maint - 1.6-16 - Rebuilt for Python 3.14 From 47d1dfb924d5269e4f5b2d9eecebf7c613f32e0a Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 15 Aug 2025 14:25:42 +0200 Subject: [PATCH 19/20] Rebuilt for Python 3.14.0rc2 bytecode --- python-progress.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-progress.spec b/python-progress.spec index 112dc37..b1bc82d 100644 --- a/python-progress.spec +++ b/python-progress.spec @@ -2,7 +2,7 @@ Name: python-%{pypi_name} Version: 1.6 -Release: 17%{?dist} +Release: 18%{?dist} Summary: Easy to use progress bars License: ISC @@ -75,6 +75,9 @@ Summary: Easy to use progress bars %changelog +* Fri Aug 15 2025 Python Maint - 1.6-18 +- Rebuilt for Python 3.14.0rc2 bytecode + * Fri Jul 25 2025 Fedora Release Engineering - 1.6-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From bb4d7e807721bf5352636aeaa92085c6d873eb49 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 19 Sep 2025 14:01:43 +0200 Subject: [PATCH 20/20] Rebuilt for Python 3.14.0rc3 bytecode --- python-progress.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-progress.spec b/python-progress.spec index b1bc82d..d8c3ee7 100644 --- a/python-progress.spec +++ b/python-progress.spec @@ -2,7 +2,7 @@ Name: python-%{pypi_name} Version: 1.6 -Release: 18%{?dist} +Release: 19%{?dist} Summary: Easy to use progress bars License: ISC @@ -75,6 +75,9 @@ Summary: Easy to use progress bars %changelog +* Fri Sep 19 2025 Python Maint - 1.6-19 +- Rebuilt for Python 3.14.0rc3 bytecode + * Fri Aug 15 2025 Python Maint - 1.6-18 - Rebuilt for Python 3.14.0rc2 bytecode