Compare commits

...

10 Commits

Author SHA1 Message Date
openeuler-ci-bot
c71a2306db
!12 Update package to version 3.9.0
From: @jxy_git 
Reviewed-by: @shinwell_hu 
Signed-off-by: @shinwell_hu
2024-02-29 07:10:49 +00:00
jxy_git
3e0c6299dc Update package to version 3.9.0 2024-02-29 14:43:13 +08:00
openeuler-ci-bot
142574ce21
!11 update package to version 3.5.0
From: @S--Sh 
Reviewed-by: @yangzhao_kl 
Signed-off-by: @yangzhao_kl
2023-07-07 06:52:29 +00:00
sunhui
0400be7220 python-limits 2023-07-05 14:37:10 +08:00
openeuler-ci-bot
2199aab91d
!7 Upgrade to latest release [python-limits -> 3.4.0]
From: @wubijie123 
Reviewed-by: @yangzhao_kl 
Signed-off-by: @yangzhao_kl
2023-05-04 07:55:36 +00:00
wubijie
9078e92626 update version to 3.4.0 2023-05-04 15:37:06 +08:00
openeuler-ci-bot
513b729982
!6 Update package to version 3.3.1
From: @wubijie123 
Reviewed-by: @yangzhao_kl 
Signed-off-by: @yangzhao_kl
2023-04-07 09:39:29 +00:00
wubijie
167b8245e9 Update package to version 3.3.1 2023-04-06 22:04:56 +08:00
openeuler-ci-bot
a5d056de62
!5 Update package to version 3.2.0
From: @wubijie123 
Reviewed-by: @yangzhao_kl 
Signed-off-by: @yangzhao_kl
2023-02-15 06:09:31 +00:00
wubijie
cbf3430365 Update package to version 3.2.0 2023-02-14 14:55:07 +08:00
3 changed files with 27 additions and 8 deletions

Binary file not shown.

BIN
limits-3.9.0.tar.gz Normal file

Binary file not shown.

View File

@ -1,15 +1,13 @@
%global _empty_manifest_terminate_build 0
%global _empty_manifest_terminate_build 0
Name: python-limits
Version: 2.7.2
Version: 3.9.0
Release: 1
Summary: Rate limiting utilities
License: MIT
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
Requires: python3-six
%description
limits provides utilities to implement rate limiting using
various strategies and storage backends such as redis & memcached.
@ -19,7 +17,11 @@ Summary: Rate limiting utilities
Provides: python-limits = %{version}-%{release}
BuildRequires: python3-devel
BuildRequires: python3-setuptools
Requires: python3-deprecated
Requires: python3-importlib-resources
Requires: python3-setuptools
Requires: python3-packaging
Requires: python3-typing-extensions
%description -n python3-limits
limits provides utilities to implement rate limiting using
various strategies and storage backends such as redis & memcached.
@ -27,7 +29,6 @@ various strategies and storage backends such as redis & memcached.
%package help
Summary: Development documents and examples for limits
Provides: python3-limits-doc
%description help
limits provides utilities to implement rate limiting using
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 example ]; then cp -arf example %{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}
if [ -d usr/lib ]; then
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
@ -73,6 +77,22 @@ mv %{buildroot}/doclist.lst .
%{_docdir}/*
%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
- 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>
- Package Spec generated