Compare commits
4 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9947c1c32b | ||
|
|
93a096f257 | ||
|
|
e634e76b33 | ||
|
|
2ea1ac313d |
5 changed files with 49 additions and 36 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -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
|
||||
|
|
|
|||
29
0001-Do-not-depend-on-fixtures-streams.patch
Normal file
29
0001-Do-not-depend-on-fixtures-streams.patch
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
From 5cb057af95db1f7a00f6b393401b1ca4f6a2cd14 Mon Sep 17 00:00:00 2001
|
||||
From: Zane Bitter <zbitter@redhat.com>
|
||||
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
|
||||
|
||||
|
|
@ -16,14 +16,18 @@
|
|||
|
||||
|
||||
Name: python-%{srcname}
|
||||
Version: 0.5.1
|
||||
Release: 4%{?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:
|
||||
|
|
@ -40,6 +44,10 @@ 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}
|
||||
%endif
|
||||
%endif
|
||||
|
||||
|
|
@ -50,7 +58,7 @@ BuildRequires: %{py3_dist fixtures}
|
|||
|
||||
%if %{with pyproject}
|
||||
%generate_buildrequires
|
||||
%pyproject_buildrequires -e pep8,%{toxenv}
|
||||
%pyproject_buildrequires -t
|
||||
%else
|
||||
cp %{SOURCE1} ./
|
||||
%endif
|
||||
|
|
@ -90,35 +98,9 @@ cp %{SOURCE1} ./
|
|||
%doc README.md
|
||||
|
||||
%changelog
|
||||
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
* Mon Oct 16 2023 Zane Bitter <zaneb@fedoraproject.org> 0.5.2-1
|
||||
- Fix tests with less v633
|
||||
- Fix test reliability
|
||||
|
||||
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Wed Jun 15 2022 Python Maint <python-maint@redhat.com> - 0.5.1-2
|
||||
- Rebuilt for Python 3.11
|
||||
|
||||
* Fri May 27 2022 Zane Bitter <zaneb@fedoraproject.org> 0.5.1-1
|
||||
- Update to v0.5.1 to fix test reliability
|
||||
|
||||
* Fri Jan 21 2022 Zane Bitter <zaneb@fedoraproject.org> 0.5.0-1
|
||||
- Update to v0.5.0
|
||||
|
||||
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Wed Oct 27 2021 Zane Bitter <zaneb@fedoraproject.org> 0.4.0-2
|
||||
- Update specfile to build for more distros
|
||||
|
||||
* Mon Jul 12 2021 Zane Bitter <zaneb@fedoraproject.org> 0.4.0-1
|
||||
- Update to v0.4.0
|
||||
|
||||
* Fri Jun 25 2021 Zane Bitter <zaneb@fedoraproject.org> 0.3.1-1
|
||||
- Update to v0.3.1 for easier packaging
|
||||
|
||||
* Fri Jun 25 2021 Zane Bitter <zaneb@fedoraproject.org> 0.3.0-2
|
||||
- Support building for EPEL
|
||||
|
||||
* Fri Jun 18 2021 Zane Bitter <zaneb@fedoraproject.org> 0.3.0-1
|
||||
- Initial build
|
||||
* Wed May 24 2023 Zane Bitter <zaneb@fedoraproject.org> 0.5.1-1
|
||||
- Initial build for EPEL 9
|
||||
|
|
|
|||
3
setup.py
3
setup.py
|
|
@ -1,3 +1,4 @@
|
|||
from setuptools import setup
|
||||
|
||||
setup(install_requires=["setuptools>=30.3.0"])
|
||||
if __name__ == '__main__':
|
||||
setup(install_requires=["setuptools>=30.3.0"])
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (autopage-0.5.1.tar.gz) = d2db8091bfdb209319ed8f06cea86abdc33e8ea338290d3a6f99341d78d8a9f079021c21c18c9ee7032f13496ed0d3bfe5a96465473fc747da984452d26c0382
|
||||
SHA512 (autopage-0.5.2.tar.gz) = a5449fc2a1011a3936c69784803e9f65a603cfa6df2335b095b029051fc26742109141ef2eb201f567334c0617433f29477efc43d98357d7ee00f266c6546560
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue