Compare commits

...
Sign in to create a new pull request.

17 commits

Author SHA1 Message Date
Python Maint
183df03650 Rebuilt for Python 3.14.0rc3 bytecode 2025-09-19 12:47:38 +02:00
Python Maint
69be73e0ca Rebuilt for Python 3.14.0rc2 bytecode 2025-08-15 13:16:38 +02:00
Fedora Release Engineering
4790142864 Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild 2025-07-25 06:46:30 +00:00
Python Maint
9c88a066ee Rebuilt for Python 3.14 2025-06-03 08:20:08 +02:00
Fedora Release Engineering
6bae6dce5f Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild 2025-01-18 12:05:19 +00:00
Miroslav Suchý
2fff915a50 convert ASL 2.0 license to SPDX
This is part of https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_4
2024-07-24 17:01:53 +02:00
Fedora Release Engineering
f87413066c Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild 2024-07-19 09:39:27 +00:00
Python Maint
4fa67ddf95 Rebuilt for Python 3.13 2024-06-07 23:23:33 +02:00
Fedora Release Engineering
d737deed68 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild 2024-01-26 01:29:32 +00:00
Fedora Release Engineering
0057a4e4a1 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild 2024-01-21 23:29:13 +00:00
Zane Bitter
917c3d7a38 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.
2023-10-25 11:40:55 +13:00
Zane Bitter
5ee5fb0562 Update to version 0.5.2 from upstream
Fix integration tests with less v633 and make them reliable again.
2023-10-16 23:38:49 +13:00
Fedora Release Engineering
6feb4b2444 Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2023-07-21 07:30:52 +00:00
Python Maint
dee0ec0b1e Rebuilt for Python 3.12 2023-07-03 20:45:26 +02:00
Karolina Surma
e1a1ea3f16 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
2023-07-03 20:44:01 +02:00
Karolina Surma
fb8eb73c8b Skip test_end_to_end - they fail with newer less in Fedora 2023-07-03 20:44:01 +02:00
Karolina Surma
1042580696 Add the missing depedency on python-testtools 2023-07-03 20:08:22 +02:00
3 changed files with 54 additions and 5 deletions

1
.gitignore vendored
View file

@ -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

View file

@ -16,10 +16,11 @@
Name: python-%{srcname}
Version: 0.5.1
Release: 4%{?dist}
Version: 0.5.2
Release: 12%{?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
@ -40,6 +41,7 @@ BuildRequires: pyproject-rpm-macros
%else
%if %{with enable_tests}
BuildRequires: %{py3_dist fixtures}
BuildRequires: %{py3_dist fixtures[streams]}
%endif
%endif
@ -50,7 +52,7 @@ BuildRequires: %{py3_dist fixtures}
%if %{with pyproject}
%generate_buildrequires
%pyproject_buildrequires -e pep8,%{toxenv}
%pyproject_buildrequires -t
%else
cp %{SOURCE1} ./
%endif
@ -90,6 +92,52 @@ cp %{SOURCE1} ./
%doc README.md
%changelog
* Fri Sep 19 2025 Python Maint <python-maint@redhat.com> - 0.5.2-12
- Rebuilt for Python 3.14.0rc3 bytecode
* Fri Aug 15 2025 Python Maint <python-maint@redhat.com> - 0.5.2-11
- Rebuilt for Python 3.14.0rc2 bytecode
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.2-10
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
* Tue Jun 03 2025 Python Maint <python-maint@redhat.com> - 0.5.2-9
- Rebuilt for Python 3.14
* Sat Jan 18 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.2-8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
* Wed Jul 24 2024 Miroslav Suchý <msuchy@redhat.com> - 0.5.2-7
- convert license to SPDX
* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.2-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
* Fri Jun 07 2024 Python Maint <python-maint@redhat.com> - 0.5.2-5
- Rebuilt for Python 3.13
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.2-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.2-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Wed Oct 25 2023 Zane Bitter <zaneb@fedoraproject.org> 0.5.2-2
- Depend on fixtures[streams] directly
* Mon Oct 16 2023 Zane Bitter <zaneb@fedoraproject.org> 0.5.2-1
- Fix tests with less v633
- Fix test reliability
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.1-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
* Mon Jul 03 2023 Python Maint <python-maint@redhat.com> - 0.5.1-6
- Rebuilt for Python 3.12
* Mon Jul 03 2023 Karolina Surma <ksurma@redhat.com> - 0.5.1-5
- Add the missing test dependency on python-testtools
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.1-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild

View file

@ -1 +1 @@
SHA512 (autopage-0.5.1.tar.gz) = d2db8091bfdb209319ed8f06cea86abdc33e8ea338290d3a6f99341d78d8a9f079021c21c18c9ee7032f13496ed0d3bfe5a96465473fc747da984452d26c0382
SHA512 (autopage-0.5.2.tar.gz) = a5449fc2a1011a3936c69784803e9f65a603cfa6df2335b095b029051fc26742109141ef2eb201f567334c0617433f29477efc43d98357d7ee00f266c6546560