Compare commits
10 Commits
7ceba6bf09
...
c71a2306db
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c71a2306db | ||
|
|
3e0c6299dc | ||
|
|
142574ce21 | ||
|
|
0400be7220 | ||
|
|
2199aab91d | ||
|
|
9078e92626 | ||
|
|
513b729982 | ||
|
|
167b8245e9 | ||
|
|
a5d056de62 | ||
|
|
cbf3430365 |
Binary file not shown.
BIN
limits-3.9.0.tar.gz
Normal file
BIN
limits-3.9.0.tar.gz
Normal file
Binary file not shown.
@ -1,15 +1,13 @@
|
|||||||
%global _empty_manifest_terminate_build 0
|
%global _empty_manifest_terminate_build 0
|
||||||
Name: python-limits
|
Name: python-limits
|
||||||
Version: 2.7.2
|
Version: 3.9.0
|
||||||
Release: 1
|
Release: 1
|
||||||
Summary: Rate limiting utilities
|
Summary: Rate limiting utilities
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://limits.readthedocs.org
|
URL: https://limits.readthedocs.org
|
||||||
Source0: https://files.pythonhosted.org/packages/31/85/e4f649153ca9ae13a236eb9a7d8b098b382a1e5e57cc0b645191423ab9e8/limits-2.7.2.tar.gz
|
Source0: https://files.pythonhosted.org/packages/42/f8/6516b81e926899ebbd6ec0376fa33141fc9ef529117860a6de23fbd7e6da/limits-3.9.0.tar.gz
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
Requires: python3-six
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
limits provides utilities to implement rate limiting using
|
limits provides utilities to implement rate limiting using
|
||||||
various strategies and storage backends such as redis & memcached.
|
various strategies and storage backends such as redis & memcached.
|
||||||
@ -19,7 +17,11 @@ Summary: Rate limiting utilities
|
|||||||
Provides: python-limits = %{version}-%{release}
|
Provides: python-limits = %{version}-%{release}
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-setuptools
|
BuildRequires: python3-setuptools
|
||||||
|
Requires: python3-deprecated
|
||||||
|
Requires: python3-importlib-resources
|
||||||
|
Requires: python3-setuptools
|
||||||
|
Requires: python3-packaging
|
||||||
|
Requires: python3-typing-extensions
|
||||||
%description -n python3-limits
|
%description -n python3-limits
|
||||||
limits provides utilities to implement rate limiting using
|
limits provides utilities to implement rate limiting using
|
||||||
various strategies and storage backends such as redis & memcached.
|
various strategies and storage backends such as redis & memcached.
|
||||||
@ -27,7 +29,6 @@ various strategies and storage backends such as redis & memcached.
|
|||||||
%package help
|
%package help
|
||||||
Summary: Development documents and examples for limits
|
Summary: Development documents and examples for limits
|
||||||
Provides: python3-limits-doc
|
Provides: python3-limits-doc
|
||||||
|
|
||||||
%description help
|
%description help
|
||||||
limits provides utilities to implement rate limiting using
|
limits provides utilities to implement rate limiting using
|
||||||
various strategies and storage backends such as redis & memcached.
|
various strategies and storage backends such as redis & memcached.
|
||||||
@ -45,6 +46,9 @@ if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
|
|||||||
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
|
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
|
||||||
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
|
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
|
||||||
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
|
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
|
||||||
|
if [ -f README.rst ]; then cp -af README.rst %{buildroot}/%{_pkgdocdir}; fi
|
||||||
|
if [ -f README.md ]; then cp -af README.md %{buildroot}/%{_pkgdocdir}; fi
|
||||||
|
if [ -f README.txt ]; then cp -af README.txt %{buildroot}/%{_pkgdocdir}; fi
|
||||||
pushd %{buildroot}
|
pushd %{buildroot}
|
||||||
if [ -d usr/lib ]; then
|
if [ -d usr/lib ]; then
|
||||||
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
|
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
|
||||||
@ -73,6 +77,22 @@ mv %{buildroot}/doclist.lst .
|
|||||||
%{_docdir}/*
|
%{_docdir}/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Feb 29 2024 jiangxinyu <jiangxinyu@kylinos.cn> - 3.9.0-1
|
||||||
|
- Update package to version 3.9.0
|
||||||
|
Add option to wrap storage errors with a StorageError exception
|
||||||
|
|
||||||
|
* Wed Jul 5 2023 sunhui <sunhui@kylinos.cn> - 3.5.0-1
|
||||||
|
- Update package to version 3.5.0
|
||||||
|
|
||||||
|
* Thu May 04 2023 wubijie <wubijie@kylinos.cn> - 3.4.0-1
|
||||||
|
- Update package to version 3.4.0
|
||||||
|
|
||||||
|
* Fri Apr 7 2023 wubijie <wubijie@kylinos.cn> - 3.3.1-1
|
||||||
|
- Update package to version 3.3.1
|
||||||
|
|
||||||
|
* Tue Feb 14 2023 wubijie <wubijie@kylinos.cn> - 3.2.0-1
|
||||||
|
- Update package to version 3.2.0
|
||||||
|
|
||||||
* Fri Dec 16 2022 lijian <lijian2@kylinos.cn> - 2.7.2-1
|
* Fri Dec 16 2022 lijian <lijian2@kylinos.cn> - 2.7.2-1
|
||||||
- update to upstream version 2.7.2
|
- update to upstream version 2.7.2
|
||||||
|
|
||||||
@ -81,4 +101,3 @@ mv %{buildroot}/doclist.lst .
|
|||||||
|
|
||||||
* Sat Feb 20 2021 Python_Bot <Python_Bot@openeuler.org>
|
* Sat Feb 20 2021 Python_Bot <Python_Bot@openeuler.org>
|
||||||
- Package Spec generated
|
- Package Spec generated
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user