Compare commits

...

No commits in common. 'epel9' and 'i9ce' have entirely different histories.
epel9 ... i9ce

15
.gitignore vendored

@ -1,14 +1 @@
/1.10.4.tar.gz
/1.10.5.tar.gz
/1.10.7.tar.gz
/1.10.8.tar.gz
/1.10.9.tar.gz
/1.10.10.tar.gz
/1.10.11.tar.gz
/1.11.1.tar.gz
/1.11.2.tar.gz
/1.12.1.tar.gz
/1.13.2.tar.gz
/1.13.3.tar.gz
/wrapt-1.13.3.tar.gz
/wrapt-1.17.0.tar.gz
SOURCES/wrapt-1.17.0.tar.gz

@ -0,0 +1 @@
27642ee5095dd9818a06bfc8e11802a13e73ccf1 SOURCES/wrapt-1.17.0.tar.gz

@ -1,3 +1,158 @@
## START: Set by rpmautospec
## (rpmautospec version 0.7.3)
## RPMAUTOSPEC: autorelease, autochangelog
%define autorelease(e:s:pb:n) %{?-p:0.}%{lua:
release_number = 1;
base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}"));
print(release_number + base_release_number - 1);
}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}}
## END: Set by rpmautospec
# Sphinx-generated HTML documentation is not suitable for packaging; see
# https://bugzilla.redhat.com/show_bug.cgi?id=2006555 for discussion.
#
# We can generate PDF documentation as a substitute.
%bcond docs 1
Name: python-wrapt
Version: 1.17.0
Release: %autorelease
Summary: A Python module for decorators, wrappers and monkey patching
License: BSD-2-Clause
URL: https://github.com/GrahamDumpleton/wrapt
Source: %{url}/archive/%{version}/wrapt-%{version}.tar.gz
BuildRequires: gcc
BuildRequires: python3-devel
# We bypass tox and instead BR and use pytest directly; this is simpler and
# avoids the need to patch out coverage analysis
# (https://docs.fedoraproject.org/en-US/packaging-guidelines/Python/#_linters).
BuildRequires: %{py3_dist pytest}
%global common_description %{expand:
The aim of the wrapt module is to provide a transparent object proxy for
Python, which can be used as the basis for the construction of function
wrappers and decorator functions.}
%description %{common_description}
%package -n python3-wrapt
Summary: %{summary}
%description -n python3-wrapt %{common_description}
%if %{with docs}
%package doc
Summary: Documentation for the wrapt module
BuildArch: noarch
BuildRequires: make
BuildRequires: python3-sphinx-latex
BuildRequires: latexmk
# docs/requirements.txt
BuildRequires: %{py3_dist sphinx}
BuildRequires: %{py3_dist sphinx_rtd_theme}
%description doc
%{summary}.
%endif
%prep
%autosetup -n wrapt-%{version}
%generate_buildrequires
%pyproject_buildrequires
%build
%pyproject_wheel
%if %{with docs}
PYTHONPATH="${PWD}" %make_build -C docs latex \
SPHINXOPTS='-j%{?_smp_build_ncpus}'
%make_build -C docs/_build/latex LATEXMKOPTS='-quiet'
%endif
%install
%pyproject_install
%pyproject_save_files -l wrapt
%check
%pytest -v
%if %{with docs}
%files doc
%license LICENSE
%doc docs/_build/latex/wrapt.pdf
%endif
%files -n python3-wrapt -f %{pyproject_files}
%doc README.rst
%changelog
## START: Generated by rpmautospec
* Wed Nov 27 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 1.17.0-1
- Update to 1.17.0 (close RHBZ#2316909)
* Wed Nov 27 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 1.13.3-16
- Port to pyproject-rpm-macros and run the tests
* Wed Nov 27 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 1.13.3-15
- Improve the source URL
* Wed Nov 27 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 1.13.3-14
- Do not number the sole Source
* Wed Nov 27 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 1.13.3-13
- Make the -doc subpackage noarch
* Wed Nov 27 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 1.13.3-12
- Build Sphinx-generated docs as PDF, not HTML, to sidestep guidelines
issues
* Wed Nov 27 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 1.13.3-11
- Write BuildRequires using project canonical names
* Wed Nov 27 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 1.13.3-10
- Reduce description/Summary duplication in the spec file
* Wed Nov 27 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 1.13.3-9
- Add missing LICENSE to -doc subpackage
* Wed Nov 27 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 1.13.3-8
- Use modern build conditionals
* Wed Nov 27 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 1.13.3-7
- Reduce unnecessary macro indirection in the spec file
* Wed Nov 27 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 1.13.3-6
- Remove obsolete %%python_provide macro
* Wed Nov 27 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 1.13.3-5
- Remove ancient workaround for missing %%license support
* Wed Nov 27 2024 Jan Friesse <jfriesse@redhat.com> - 1.13.3-4
- migrated to SPDX license
* Wed Nov 27 2024 Miro Hrončok <miro@hroncok.cz> - 1.13.3-3
- BuildRequire setuptools explicitly, not just transitively
* Mon Feb 12 2024 Arkady L. Shane <tigro@msvsphere-os.ru> - 1.13.3-1
- Rebuilt for MSVSphere 9.3
* Sat Nov 06 2021 Kevin Fenzi <kevin@scrye.com> - 1.13.3-1
- Update to 1.13.3. Fixes rhbz#2010551
@ -128,3 +283,5 @@
* Wed Mar 11 2015 Chandan Kumar <chkumar246@gmail.com> - 1.10.2-1
- Initial package.
## END: Generated by rpmautospec

@ -1,96 +0,0 @@
# Sphinx-generated HTML documentation is not suitable for packaging; see
# https://bugzilla.redhat.com/show_bug.cgi?id=2006555 for discussion.
#
# We can generate PDF documentation as a substitute.
%bcond docs 1
Name: python-wrapt
Version: 1.17.0
Release: %autorelease
Summary: A Python module for decorators, wrappers and monkey patching
License: BSD-2-Clause
URL: https://github.com/GrahamDumpleton/wrapt
Source: %{url}/archive/%{version}/wrapt-%{version}.tar.gz
BuildRequires: gcc
BuildRequires: python3-devel
# We bypass tox and instead BR and use pytest directly; this is simpler and
# avoids the need to patch out coverage analysis
# (https://docs.fedoraproject.org/en-US/packaging-guidelines/Python/#_linters).
BuildRequires: %{py3_dist pytest}
%global common_description %{expand:
The aim of the wrapt module is to provide a transparent object proxy for
Python, which can be used as the basis for the construction of function
wrappers and decorator functions.}
%description %{common_description}
%package -n python3-wrapt
Summary: %{summary}
%description -n python3-wrapt %{common_description}
%if %{with docs}
%package doc
Summary: Documentation for the wrapt module
BuildArch: noarch
BuildRequires: make
BuildRequires: python3-sphinx-latex
BuildRequires: latexmk
# docs/requirements.txt
BuildRequires: %{py3_dist sphinx}
BuildRequires: %{py3_dist sphinx_rtd_theme}
%description doc
%{summary}.
%endif
%prep
%autosetup -n wrapt-%{version}
%generate_buildrequires
%pyproject_buildrequires
%build
%pyproject_wheel
%if %{with docs}
PYTHONPATH="${PWD}" %make_build -C docs latex \
SPHINXOPTS='-j%{?_smp_build_ncpus}'
%make_build -C docs/_build/latex LATEXMKOPTS='-quiet'
%endif
%install
%pyproject_install
%pyproject_save_files -l wrapt
%check
%pytest -v
%if %{with docs}
%files doc
%license LICENSE
%doc docs/_build/latex/wrapt.pdf
%endif
%files -n python3-wrapt -f %{pyproject_files}
%doc README.rst
%changelog
%autochangelog

@ -1 +0,0 @@
SHA512 (wrapt-1.17.0.tar.gz) = b552676a9c41c2feadf9eeab78c011bcc068f6b160d5d91aa6afc8b880abaaf8f170071e8eb03811959d3510cb19cb8fcc0db41a3c4e7eb6c92cf04882d9c0d2
Loading…
Cancel
Save