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

Bartłomiej Piotrowski bpiotrowski at archlinux.org
Sun Dec 25 17:58:26 UTC 2016


    Date: Sunday, December 25, 2016 @ 17:58:25
  Author: bpiotrowski
Revision: 202191

archrelease: copy trunk to community-staging-any

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

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

Copied: python-helper/repos/community-staging-any/PKGBUILD (from rev 202190, python-helper/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD	                        (rev 0)
+++ community-staging-any/PKGBUILD	2016-12-25 17:58:25 UTC (rev 202191)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgbase=python-helper
+pkgname=('python-helper' 'python2-helper')
+pkgver=2.4.2
+pkgrel=2
+pkgdesc="Development library for quickly writing configurable applications and daemons"
+arch=('any')
+license=('BSD')
+url="https://helper.readthedocs.org"
+makedepends=('python-setuptools' 'python2-setuptools' 'python-yaml' 'python2-yaml' 'git')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 'python-coverage'
+              'python2-coverage')
+source=("git+https://github.com/gmr/helper.git#tag=$pkgver")
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a helper{,-py2}
+}
+
+build() {
+  cd "$srcdir"/helper
+  python setup.py build
+
+  cd "$srcdir"/helper-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/helper
+  nosetests3
+
+  cd "$srcdir"/helper-py2
+  nosetests2
+}
+
+package_python-helper() {
+  depends=('python-yaml')
+
+  cd helper
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-helper() {
+  depends=('python2-yaml')
+
+  cd helper-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+



More information about the arch-commits mailing list