[arch-commits] Commit in python-pykka/trunk (PKGBUILD)

2020-12-02 Thread Morten Linderud via arch-commits
Date: Wednesday, December 2, 2020 @ 18:12:45
  Author: foxboron
Revision: 769231

upgpkg: python-pykka 2.0.3-1

Modified:
  python-pykka/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-12-02 18:10:59 UTC (rev 769230)
+++ PKGBUILD2020-12-02 18:12:45 UTC (rev 769231)
@@ -3,8 +3,8 @@
 # Contributor: Antoine Pierlot-Garcin 
 
 pkgname=python-pykka
-pkgver=2.0.2
-pkgrel=3
+pkgver=2.0.3
+pkgrel=1
 pkgdesc="Easy to use concurrency abstractions for Python using the actor model"
 arch=('any')
 url="http://pykka.readthedocs.org/";
@@ -13,7 +13,7 @@
 makedepends=('python-setuptools')
 optdepends=('python-gevent: Use gevent based actors from pykka.gevent')
 source=("https://pypi.python.org/packages/source/P/Pykka/Pykka-$pkgver.tar.gz";)
-sha512sums=('98b2e6122dc5158da489265cf7cf9e358bfa432d0a0eaab9f50a07c0050083afb19aad494e4cd27347c376947eafb7d9796909c18e3648ef1bf0685bd6384e5b')
+sha512sums=('0f4d6d9e0c92a7e7cafb340f343afa1e78bcefdd0454341d3f457fa202acdd3de979881689cb3cd5f2cbd3a08f80177f6470db4fb895b20d9c1b4d0b9ef627ee')
 
 build() {
   cd "Pykka-$pkgver"


[arch-commits] Commit in python-pykka/trunk (PKGBUILD)

2020-11-11 Thread Felix Yan via arch-commits
Date: Wednesday, November 11, 2020 @ 10:39:26
  Author: felixonmars
Revision: 750228

upgpkg: python-pykka 2.0.2-3: Python 3.9 rebuild

Modified:
  python-pykka/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-11 10:39:24 UTC (rev 750227)
+++ PKGBUILD2020-11-11 10:39:26 UTC (rev 750228)
@@ -4,7 +4,7 @@
 
 pkgname=python-pykka
 pkgver=2.0.2
-pkgrel=2
+pkgrel=3
 pkgdesc="Easy to use concurrency abstractions for Python using the actor model"
 arch=('any')
 url="http://pykka.readthedocs.org/";


[arch-commits] Commit in python-pykka/trunk (PKGBUILD)

2019-12-22 Thread Morten Linderud via arch-commits
Date: Sunday, December 22, 2019 @ 22:05:47
  Author: foxboron
Revision: 538939

upgpkg: python-pykka 2.0.2-1

Added:
  python-pykka/trunk/PKGBUILD

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

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-22 22:05:47 UTC (rev 538939)
@@ -0,0 +1,27 @@
+# Maintainer: Morten Linderud 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Antoine Pierlot-Garcin 
+
+pkgname=python-pykka
+pkgver=2.0.2
+pkgrel=1
+pkgdesc="Easy to use concurrency abstractions for Python using the actor model"
+arch=('any')
+url="http://pykka.readthedocs.org/";
+license=('Apache')
+depends=('python')
+makedepends=('python-setuptools')
+optdepends=('python-gevent: Use gevent based actors from pykka.gevent')
+source=("https://pypi.python.org/packages/source/P/Pykka/Pykka-$pkgver.tar.gz";)
+sha512sums=('98b2e6122dc5158da489265cf7cf9e358bfa432d0a0eaab9f50a07c0050083afb19aad494e4cd27347c376947eafb7d9796909c18e3648ef1bf0685bd6384e5b')
+
+build() {
+  cd "Pykka-$pkgver"
+  python setup.py build
+}
+
+package() {
+  cd "Pykka-$pkgver"
+  python setup.py install --prefix=/usr --root="$pkgdir"/ --optimize=1 
--skip-build
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}