[arch-commits] Commit in python-kombu/repos (2 files)

Felix Yan felixonmars at archlinux.org
Thu May 30 16:54:59 UTC 2019


    Date: Thursday, May 30, 2019 @ 16:54:59
  Author: felixonmars
Revision: 474859

archrelease: copy trunk to community-testing-any

Added:
  python-kombu/repos/community-testing-any/
  python-kombu/repos/community-testing-any/PKGBUILD
    (from rev 474858, python-kombu/trunk/PKGBUILD)

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

Copied: python-kombu/repos/community-testing-any/PKGBUILD (from rev 474858, python-kombu/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD	                        (rev 0)
+++ community-testing-any/PKGBUILD	2019-05-30 16:54:59 UTC (rev 474859)
@@ -0,0 +1,81 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: mutantmonkey <aur at mutantmonkey.in>
+
+pkgbase=python-kombu
+pkgname=('python-kombu' 'python2-kombu')
+pkgver=4.6.0
+pkgrel=1
+pkgdesc='A messaging library for Python'
+arch=('any')
+url="https://kombu.readthedocs.org/"
+license=('BSD')
+options=('!emptydirs')
+makedepends=('python-amqp' 'python2-amqp' 'python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-redis' 'python2-redis'
+              'python-yaml' 'python2-yaml' 'python-msgpack' 'python2-msgpack'
+              'python-pycurl' 'python2-pycurl' 'python-case' 'python2-case' 'python-pymongo'
+              'python2-pymongo' 'python-pytz' 'python2-pytz' 'python-pytest-sugar'
+              'python2-pytest-sugar' 'python-sqlalchemy' 'python2-sqlalchemy' 'python-pyro'
+              'python2-pyro' 'python2-librabbitmq' 'python-boto3' 'python2-boto3')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/celery/kombu/archive/$pkgver.tar.gz")
+sha512sums=('30be9a10226a519ed3da7c45d0c2f74c8e92ee602588ab530aa2f48b78c957a083def11813d20b2745bd141a6e95aa9a6e8a678d3ba8b749780c2195654f8a7e')
+
+prepare() {
+  cp -a kombu-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/kombu-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/kombu-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/kombu-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/kombu-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-kombu() {
+  depends=('python-amqp')
+  optdepends=('python-pymongo: for MongoDB support'
+              'python-msgpack: for MessagePack support'
+              'python-pyro: for Pyro support'
+              'python-redis: for Redis support'
+              'python-sqlalchemy: for SQLAlchemy support'
+              'python-boto3: for Amazon SQS support'
+              'python-pycurl: for Amazon SQS support'
+              'python-yaml: for YAML support')
+              # 'python-softlayer-messaging: for SoftLayer Message Queue support': Not packaged yet
+              # 'python-kazoo: for Zookeeper support': Not packaged yet
+              # 'python-librabbitmq: C optimization for AMQP transport' Not available for python 3 yet
+
+  cd "$srcdir"/kombu-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-kombu() {
+  depends=('python2-amqp')
+  optdepends=('python2-pymongo: for MongoDB support'
+              'python2-msgpack: for MessagePack support'
+              'python2-pyro: for Pyro support'
+              'python2-redis: for Redis support'
+              'python2-sqlalchemy: for SQLAlchemy support'
+              'python2-pycurl: for Amazon SQS support'
+              'python2-yaml: for YAML support'
+              'python2-librabbitmq: C optimization for AMQP transport'
+              'python2-boto3: for Amazon SQS support')
+              # 'python2-softlayer-messaging: for SoftLayer Message Queue support': Not packaged yet
+              # 'python2-kazoo: for Zookeeper support': Not packaged yet
+
+  cd "$srcdir"/kombu-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



More information about the arch-commits mailing list