[packages/python3-propcache] Initial
arekm
arekm at pld-linux.org
Sat Feb 8 19:04:29 CET 2025
commit 926fed411ad073f46ed340741a06288060e12bbd
Author: Arkadiusz Miśkiewicz <arekm at maven.pl>
Date: Sat Feb 8 18:42:33 2025 +0100
Initial
python3-propcache.spec | 90 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 90 insertions(+)
---
diff --git a/python3-propcache.spec b/python3-propcache.spec
new file mode 100644
index 0000000..1ff35b9
--- /dev/null
+++ b/python3-propcache.spec
@@ -0,0 +1,90 @@
+# Conditional build:
+%bcond_without doc # API documentation
+%bcond_without tests # unit tests
+
+%define module propcache
+Summary: Accelerated property cache
+Name: python3-%{module}
+Version: 0.2.1
+Release: 1
+License: Apache
+Group: Libraries/Python
+Source0: https://pypi.debian.net/%{module}/%{module}-%{version}.tar.gz
+# Source0-md5: c642caac1415818205011277008142ea
+URL: https://pypi.org/project/propcache/
+BuildRequires: python3-Cython
+BuildRequires: python3-build
+BuildRequires: python3-installer
+BuildRequires: python3-modules >= 1:3.9
+%if %{with tests}
+#BuildRequires: python3-
+%endif
+BuildRequires: rpm-pythonprov
+BuildRequires: rpmbuild(macros) >= 2.044
+%if %{with doc}
+BuildRequires: sphinx-pdg-3
+%endif
+Requires: python3-modules >= 1:3.2
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+The module provides a fast implementation of cached properties for
+Python 3.9+.
+
+%package apidocs
+Summary: API documentation for Python %{module} module
+Summary(pl.UTF-8): Dokumentacja API modułu Pythona %{module}
+Group: Documentation
+
+%description apidocs
+API documentation for Python %{module} module.
+
+%description apidocs -l pl.UTF-8
+Dokumentacja API modułu Pythona %{module}.
+
+%prep
+%setup -q -n %{module}-%{version}
+
+sed -i -e 's#--numprocesses=auto##g' -e 's#--numprocesses=0##g' pytest.ini
+
+%build
+%py3_build_pyproject
+
+%if %{with tests}
+%{__python} -m zipfile -e build-3/*.whl build-3-test
+# use explicit plugins list for reliable builds (delete PYTEST_PLUGINS if empty)
+PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 \
+PYTEST_PLUGINS=pytest_codspeed \
+%{__python3} -m pytest -o pythonpath="$PWD/build-3-test" tests
+%endif
+
+%if %{with doc}
+%{__make} -C docs html \
+ SPHINXBUILD=sphinx-build-3
+rm -rf docs/_build/html/_sources
+%endif
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%py3_install_pyproject
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc CHANGES.rst README.rst
+%dir %{py3_sitedir}/%{module}
+%{py3_sitedir}/%{module}/*.py
+%{py3_sitedir}/%{module}/*.pyx
+%{py3_sitedir}/%{module}/py.typed
+%{py3_sitedir}/%{module}/__pycache__
+%attr(755,root,root) %{py3_sitedir}/%{module}/*.so
+%{py3_sitedir}/%{module}-%{version}.dist-info
+
+%if %{with doc}
+%files apidocs
+%defattr(644,root,root,755)
+%doc docs/_build/html/*
+%endif
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/python3-propcache.git/commitdiff/926fed411ad073f46ed340741a06288060e12bbd
More information about the pld-cvs-commit
mailing list