Date: Friday, April 7, 2023 @ 04:50:28
  Author: felixonmars
Revision: 1440578

archrelease: copy trunk to community-staging-any

Added:
  python-ratelim/repos/community-staging-any/
  python-ratelim/repos/community-staging-any/PKGBUILD
    (from rev 1440577, python-ratelim/trunk/PKGBUILD)

----------+
 PKGBUILD |   26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

Copied: python-ratelim/repos/community-staging-any/PKGBUILD (from rev 1440577, 
python-ratelim/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD                              (rev 0)
+++ community-staging-any/PKGBUILD      2023-04-07 04:50:28 UTC (rev 1440578)
@@ -0,0 +1,26 @@
+# Maintainer: Felix Yan <[email protected]>
+
+pkgname=python-ratelim
+pkgver=0.1.6
+pkgrel=8
+pkgdesc="Makes it easy to respect rate limits"
+url="https://github.com/themiurgo/ratelim";
+license=('MIT')
+arch=('any')
+depends=('python-decorator')
+makedepends=('python-setuptools')
+source=("https://pypi.io/packages/source/r/ratelim/ratelim-$pkgver.tar.gz";
+        
ratelim-LICENSE::https://raw.githubusercontent.com/themiurgo/ratelim/master/LICENSE)
+sha512sums=('4d074d47278c591182d56d398c827da86c06428a1f994bd443f04903cca2bfe6affdfdd0daaca6115066903607e0216ac0a5f29240fdfe1c1faf5873a55122b0'
+            
'ffe65c1aa0d76ed652c0536ea72a518ad449c15270eb654c01d037f3cf263b154293aca66edcb535f499ebb71891833836a90095c913e35498e24888bea2cb2b')
+
+build() {
+  cd ratelim-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd ratelim-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 ../ratelim-LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Reply via email to