[packages/python-repoze.lru] - added python3 module

qboosh qboosh at pld-linux.org
Sat Oct 28 21:30:18 CEST 2023


commit 0f444658508511ac75f5646f3b71b55b3b4d6741
Author: Jakub Bogusz <qboosh at pld-linux.org>
Date:   Sat Oct 28 20:17:58 2023 +0200

    - added python3 module

 python-repoze.lru.spec | 65 ++++++++++++++++++++++++++++++++++++++++++++++----
 1 file changed, 60 insertions(+), 5 deletions(-)
---
diff --git a/python-repoze.lru.spec b/python-repoze.lru.spec
index 68ee8a0..8a01b0c 100644
--- a/python-repoze.lru.spec
+++ b/python-repoze.lru.spec
@@ -2,6 +2,8 @@
 # Conditional build:
 %bcond_without	doc	# Sphinx documentation
 %bcond_without	tests	# unit tests
+%bcond_without	python2 # CPython 2.x module
+%bcond_without	python3 # CPython 3.x module
 
 %define 	module	repoze.lru
 Summary:	A tiny LRU cache implementation and decorator
@@ -14,12 +16,22 @@ Group:		Libraries/Python
 Source0:	https://files.pythonhosted.org/packages/source/r/repoze.lru/repoze.lru-%{version}.tar.gz
 # Source0-md5:	c08cc030387e0b1fc53c5c7d964b35e2
 URL:		https://pypi.org/project/repoze.lru/
+%if %{with python2}
 BuildRequires:	python-modules >= 1:2.7
 BuildRequires:	python-setuptools
 %if %{with tests}
 BuildRequires:	python-coverage
 BuildRequires:	python-nose
 %endif
+%endif
+%if %{with python3}
+BuildRequires:	python3-modules >= 1:3.4
+BuildRequires:	python3-setuptools
+%if %{with tests}
+BuildRequires:	python3-coverage
+BuildRequires:	python3-nose
+%endif
+%endif
 BuildRequires:	rpm-pythonprov
 BuildRequires:	rpmbuild(macros) >= 1.714
 %if %{with doc}
@@ -40,6 +52,23 @@ used - z zastępowaniem najdawniej używanych elementów). Klucze i
 wartości rzadziej używane będą usuwane z pamięci podręcznej szybciej,
 niż klucze i wartości używane częściej.
 
+%package -n python3-%{module}
+Summary:	A tiny LRU cache implementation and decorator
+Summary(pl.UTF-8):	Mała implementacja pamięci podręcznej LRU z dekoratorem
+Group:		Libraries/Python
+Requires:	python3-modules >= 1:3.2
+
+%description -n python3-%{module}
+repoze.lru is a LRU (least recently used) cache implementation. Keys
+and values that are not used frequently will be evicted from the cache
+faster than keys and values that are used frequently.
+
+%description -n python3-%{module} -l pl.UTF-8
+repoze.lru to implementacja pamięci podręcznej LRU (least recently
+used - z zastępowaniem najdawniej używanych elementów). Klucze i
+wartości rzadziej używane będą usuwane z pamięci podręcznej szybciej,
+niż klucze i wartości używane częściej.
+
 %package apidocs
 Summary:	API documentation for Python repoze.lru module
 Summary(pl.UTF-8):	Dokumentacja API modułu Pythona repoze.lru
@@ -55,7 +84,13 @@ Dokumentacja API modułu Pythona repoze.lru.
 %setup -q -n %{module}-%{version}
 
 %build
+%if %{with python2}
 %py_build %{?with_tests:test}
+%endif
+
+%if %{with python3}
+%py3_build %{?with_tests:test}
+%endif
 
 %if %{with doc}
 PYTHONPATH=$(pwd) \
@@ -66,24 +101,44 @@ PYTHONPATH=$(pwd) \
 %install
 rm -rf $RPM_BUILD_ROOT
 
+%if %{with python2}
 %py_install
 
 %{__rm} $RPM_BUILD_ROOT%{py_sitescriptdir}/repoze/lru/tests.py*
-
 %py_postclean
+%endif
+
+%if %{with python3}
+%py3_install
+
+%{__rm} $RPM_BUILD_ROOT%{py3_sitescriptdir}/repoze/lru/tests.py
+%{__rm} $RPM_BUILD_ROOT%{py3_sitescriptdir}/repoze/lru/__pycache__/tests.*.py*
+%endif
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
+%if %{with python2}
 %files
 %defattr(644,root,root,755)
 %doc COPYRIGHT.txt LICENSE.txt README.rst
 # XXX: shared with repoze.*
 %dir %{py_sitescriptdir}/repoze
-%dir %{py_sitescriptdir}/repoze/lru
-%{py_sitescriptdir}/repoze/lru/*.py[co]
-%{py_sitescriptdir}/%{module}-%{version}-py*-nspkg.pth
-%{py_sitescriptdir}/%{module}-%{version}-py*.egg-info
+%{py_sitescriptdir}/repoze/lru
+%{py_sitescriptdir}/repoze.lru-%{version}-py*-nspkg.pth
+%{py_sitescriptdir}/repoze.lru-%{version}-py*.egg-info
+%endif
+
+%if %{with python3}
+%files -n python3-%{module}
+%defattr(644,root,root,755)
+%doc COPYRIGHT.txt LICENSE.txt README.rst
+# XXX: shared with repoze.*
+%dir %{py3_sitescriptdir}/repoze
+%{py3_sitescriptdir}/repoze/lru
+%{py3_sitescriptdir}/repoze.lru-%{version}-py*-nspkg.pth
+%{py3_sitescriptdir}/repoze.lru-%{version}-py*.egg-info
+%endif
 
 %if %{with doc}
 %files apidocs
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/python-repoze.lru.git/commitdiff/0f444658508511ac75f5646f3b71b55b3b4d6741



More information about the pld-cvs-commit mailing list