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

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


    Date: Saturday, December 24, 2016 @ 12:21:54
  Author: felixonmars
Revision: 201486

archrelease: copy trunk to community-staging-any

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

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

Copied: python-pyassert/repos/community-staging-any/PKGBUILD (from rev 201485, python-pyassert/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD	                        (rev 0)
+++ community-staging-any/PKGBUILD	2016-12-24 12:21:54 UTC (rev 201486)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Daniel Wallace <danielwallace at gtmanfred dot com>
+# Contributor: Thomas S Hatch <thatch45 at gmail.com>
+
+pkgbase=python-pyassert
+pkgname=('python-pyassert' 'python2-pyassert')
+pkgver=0.4.2
+pkgrel=3
+pkgdesc='Rich assertions library for Python'
+arch=('any')
+url='https://github.com/pyclectic/pyassert'
+license=('Apache')
+makedepends=('python-pybuilder' 'python2-pybuilder' 'python-mockito' 'python2-mockito'
+             'python-coverage' 'python2-coverage' 'python-six' 'python2-six' 'git'
+             'python-unittest-xml-reporting' 'python2-unittest-xml-reporting' 'flake8'
+             'python2-flake8' 'pychecker') # python3-pychecker is missing
+source=("git+https://github.com/pyclectic/pyassert.git#tag=v$pkgver")
+md5sums=('SKIP')
+
+prepare() {
+  # package name will be determined by directory name
+  mkdir py2
+  cp -a pyassert py2/
+}
+
+check() {
+  cd "$srcdir"/pyassert
+  pyb -v analyze || warning "ignoring flake8 warnings"
+
+  cd "$srcdir"/py2/pyassert
+  pyb2 -v analyze || warning "ignoring flake8 warnings"
+}
+
+package_python-pyassert() {
+  depends=('python-six')
+
+  cd pyassert
+  pyb -v package
+  cd target/dist/pyassert-$pkgver
+  python setup.py install --root="$pkgdir" -O1
+}
+
+package_python2-pyassert() {
+  depends=('python2-six')
+
+  cd py2/pyassert
+  pyb2 -v package
+  cd target/dist/pyassert-$pkgver
+  python2 setup.py install --root="$pkgdir" -O1
+}



More information about the arch-commits mailing list