[arch-commits] Commit in pifpaf/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Sat Jun 30 09:40:37 UTC 2018
Date: Saturday, June 30, 2018 @ 09:40:37
Author: felixonmars
Revision: 348019
archrelease: copy trunk to community-staging-any
Added:
pifpaf/repos/community-staging-any/
pifpaf/repos/community-staging-any/PKGBUILD
(from rev 348018, pifpaf/trunk/PKGBUILD)
----------+
PKGBUILD | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 73 insertions(+)
Copied: pifpaf/repos/community-staging-any/PKGBUILD (from rev 348018, pifpaf/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2018-06-30 09:40:37 UTC (rev 348019)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgbase=pifpaf
+pkgname=('pifpaf' 'python2-pifpaf')
+pkgver=2.1.1
+pkgrel=2
+pkgdesc='Suite of tools and fixtures to manage daemons for testing'
+arch=('any')
+license=('Apache')
+url='https://github.com/jd/pifpaf'
+makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 'python2-pbr' 'python-click'
+ 'python2-click' 'python-six' 'python2-six' 'python-daiquiri' 'python2-daiquiri'
+ 'python-fixtures' 'python2-fixtures' 'python-psutil' 'python2-psutil'
+ 'python-jinja' 'python2-jinja' 'python-xattr' 'python2-xattr')
+checkdepends=('python-testrepository' 'python2-testrepository' 'python-requests' 'python2-requests'
+ 'python-testtools' 'python2-testtools' 'python-oslotest' 'python2-oslotest'
+ 'memcached' 'mongodb' 'percona-server' 'percona-server-clients' 'postgresql' 'redis'
+ 'ceph' 'consul' 'couchdb')
+# 'elasticsearch': test fails
+# 'rabbitmq': test hangs
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/jd/pifpaf/archive/$pkgver.tar.gz")
+sha512sums=('8fbc5678b4e3a11692d548f18fdfdbdc86fb6a3e0ae60a1e9f2093ebef7f8a0db604e0d1bf32ebe0d3db45a8ada7a6f1c569b9cca549941dd6b9a1bbf663c12f')
+
+prepare() {
+ cp -a pifpaf-$pkgver{,-py2}
+
+ export LC_CTYPE=en_US.UTF-8
+ export PBR_VERSION=$pkgver
+}
+
+build() {
+ cd "$srcdir"/pifpaf-$pkgver
+ python setup.py build
+
+ cd "$srcdir"/pifpaf-$pkgver-py2
+ python2 setup.py build
+}
+
+check() {
+ # Hack entry points by installing it
+
+ cd "$srcdir"/pifpaf-$pkgver
+ python setup.py install --root="$PWD/tmp_install" --optimize=1
+ PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages" PATH="$PWD/tmp_install/usr/bin:$PATH" python setup.py testr
+
+ cd "$srcdir"/pifpaf-$pkgver-py2
+ python2 setup.py install --root="$PWD/tmp_install" --optimize=1
+ PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages" PATH="$PWD/tmp_install/usr/bin:$PATH" PYTHON=python2 python2 setup.py testr
+}
+
+package_pifpaf() {
+ depends=('python-daiquiri' 'python-click' 'python-pbr' 'python-jinja' 'python-six'
+ 'python-fixtures' 'python-psutil' 'python-xattr')
+ provides=("python-pifpaf=$pkgver")
+ conflicts=('python-pifpaf')
+ replaces=('python-pifpaf')
+
+ cd pifpaf-$pkgver
+ python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-pifpaf() {
+ depends=('python2-pbr' 'python2-click' 'python2-six' 'python2-fixtures' 'python2-daiquiri'
+ 'python2-psutil' 'python2-jinja' 'python2-xattr')
+
+ cd pifpaf-$pkgver-py2
+ python2 setup.py install --root="$pkgdir" --optimize=1
+
+ mv "$pkgdir"/usr/bin/pifpaf{,2}
+}
+
+# vim:set ts=2 sw=2 et:
More information about the arch-commits
mailing list