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

Felix Yan felixonmars at archlinux.org
Sat Dec 24 10:55:10 UTC 2016


    Date: Saturday, December 24, 2016 @ 10:55:09
  Author: felixonmars
Revision: 201358

archrelease: copy trunk to community-staging-any

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

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

Copied: python-testfixtures/repos/community-staging-any/PKGBUILD (from rev 201357, python-testfixtures/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD	                        (rev 0)
+++ community-staging-any/PKGBUILD	2016-12-24 10:55:09 UTC (rev 201358)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgbase=python-testfixtures
+pkgname=('python-testfixtures' 'python2-testfixtures')
+pkgver=4.13.3
+pkgrel=2
+pkgdesc="A collection of helpers and mock objects that are useful when writing unit tests or doc tests"
+arch=('any')
+license=('MIT')
+url="https://github.com/Simplistix/testfixtures"
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock'
+              'python-manuel' 'python2-manuel' 'python-nose-fixes' 'python2-nose-fixes')
+source=("git+https://github.com/Simplistix/testfixtures.git#tag=$pkgver")
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a testfixtures{,-py2}
+}
+
+build() {
+  cd "$srcdir"/testfixtures
+  python setup.py build
+
+  cd "$srcdir"/testfixtures-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/testfixtures
+  nosetests3
+
+  cd "$srcdir"/testfixtures-py2
+  nosetests2
+}
+
+package_python-testfixtures() {
+  depends=('python')
+
+  cd testfixtures
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 docs/license.txt "$pkgdir/usr/share/licenses/$pkgname/license.txt"
+}
+
+package_python2-testfixtures() {
+  depends=('python2')
+
+  cd testfixtures-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 docs/license.txt "$pkgdir/usr/share/licenses/$pkgname/license.txt"
+}



More information about the arch-commits mailing list