From 3fec637d29d8d6d07a6aecb3bbf85e6fb582fd72 Mon Sep 17 00:00:00 2001 From: Alfredo Moralejo Date: Sep 11 2021 09:40:31 +0000 Subject: Import python-fastcache-1.1.0-9.el9 in CloudSIG xena --- diff --git a/.python-fastcache.metadata b/.python-fastcache.metadata new file mode 100644 index 0000000..02c3b4e --- /dev/null +++ b/.python-fastcache.metadata @@ -0,0 +1 @@ +7eeb81944cc55cf892a460f1db17e33398ae59b4 SOURCES/fastcache-1.1.0.tar.gz diff --git a/SOURCES/python-fastcache.rpmlintrc b/SOURCES/python-fastcache.rpmlintrc new file mode 100644 index 0000000..a38c518 --- /dev/null +++ b/SOURCES/python-fastcache.rpmlintrc @@ -0,0 +1,5 @@ +# THIS FILE IS FOR WHITELISTING RPMLINT ERRORS AND WARNINGS IN TASKOTRON +# https://fedoraproject.org/wiki/Taskotron/Tasks/dist.rpmlint#Whitelisting_errors + +# The dictionary is missing some technical terms +addFilter(r'W: spelling-error .* (functools|lru)') diff --git a/SPECS/python-fastcache.spec b/SPECS/python-fastcache.spec new file mode 100644 index 0000000..d5810de --- /dev/null +++ b/SPECS/python-fastcache.spec @@ -0,0 +1,135 @@ +%global srcname fastcache + +Name: python-%{srcname} +Version: 1.1.0 +Release: 9%{?dist} +Summary: C implementation of python3 lru_cache + +License: MIT +URL: https://github.com/pbrady/%{srcname} +Source0: https://github.com/pbrady/%{srcname}/archive/v%{version}/%{srcname}-%{version}.tar.gz + +BuildRequires: gcc +BuildRequires: python3-devel +BuildRequires: %{py3_dist pycmd} +BuildRequires: %{py3_dist pytest} +BuildRequires: %{py3_dist setuptools} + +%description +This package contains a C implementation of the python 3 lru_cache. It +passes all tests in the standard library for functools.lru_cache. + +%package -n python%{python3_pkgversion}-%{srcname} +Summary: C implementation of python3 lru_cache + +%description -n python%{python3_pkgversion}-%{srcname} +This package contains a C implementation of the python 3 lru_cache. It +passes all tests in the standard library for functools.lru_cache. + +%prep +%autosetup -n %{srcname}-%{version} + +%build +%py3_build "--define=WITH_THREAD" + +%install +%py3_install +chmod 0755 %{buildroot}%{python3_sitearch}/%{srcname}/*.so + +%check +export PYTHONPATH=%{buildroot}%{python3_sitearch} +mkdir -p empty +cd empty +%{python3} << EOF +import fastcache +if not fastcache.test(): + raise Exception('Tests failed') +EOF +cd - + +%files -n python%{python3_pkgversion}-%{srcname} +%doc CHANGELOG README.md +%license LICENSE +%{python3_sitearch}/%{srcname}/ +%{python3_sitearch}/%{srcname}*.egg-info/ +%exclude %{python3_sitearch}/%{srcname}/tests + +%changelog +* Wed Jan 27 2021 Fedora Release Engineering - 1.1.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Wed Jul 29 2020 Fedora Release Engineering - 1.1.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Tue May 26 2020 Miro Hrončok - 1.1.0-7 +- Rebuilt for Python 3.9 + +* Thu Jan 30 2020 Fedora Release Engineering - 1.1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Oct 03 2019 Miro Hrončok - 1.1.0-5 +- Rebuilt for Python 3.8.0rc1 (#1748018) + +* Mon Aug 19 2019 Miro Hrončok - 1.1.0-4 +- Rebuilt for Python 3.8 + +* Fri Jul 26 2019 Fedora Release Engineering - 1.1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sat Feb 02 2019 Fedora Release Engineering - 1.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sat Oct 6 2018 Jerry James - 1.1.0-1 +- New upstream version +- Drop python 2 subpackage + +* Sat Jul 14 2018 Fedora Release Engineering - 1.0.2-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Tue Jun 19 2018 Miro Hrončok - 1.0.2-13 +- Rebuilt for Python 3.7 + +* Fri Feb 09 2018 Fedora Release Engineering - 1.0.2-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Thu Aug 03 2017 Fedora Release Engineering - 1.0.2-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 1.0.2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Sat Feb 11 2017 Fedora Release Engineering - 1.0.2-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Thu Dec 22 2016 Orion Poplawski - 1.0.2-8 +- Build python3 for EPEL +- Use single build directory +- Run tests as upstream does + +* Mon Dec 19 2016 Miro Hrončok - 1.0.2-7 +- Rebuild for Python 3.6 + +* Tue Jul 19 2016 Fedora Release Engineering - 1.0.2-6 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + +* Thu Feb 04 2016 Fedora Release Engineering - 1.0.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Mon Feb 1 2016 Jerry James - 1.0.2-4 +- Comply with latest python packaging guidelines + +* Tue Nov 10 2015 Orion Poplawski - 1.0.2-4 +- Use python2/3_version macros + +* Tue Nov 10 2015 Fedora Release Engineering - 1.0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 + +* Thu Jun 18 2015 Fedora Release Engineering - 1.0.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Mon Dec 1 2014 Jerry James - 1.0.2-2 +- Be more verbose in the file listing +- Run the tests verbosely + +* Fri Nov 21 2014 Jerry James - 1.0.2-1 +- Initial RPM