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

Evangelos Foutras foutrelis at archlinux.org
Sun Oct 27 07:30:01 UTC 2019


    Date: Sunday, October 27, 2019 @ 07:30:00
  Author: foutrelis
Revision: 520727

archrelease: copy trunk to community-staging-any

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

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

Copied: python-pyassert/repos/community-staging-any/PKGBUILD (from rev 520726, python-pyassert/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD	                        (rev 0)
+++ community-staging-any/PKGBUILD	2019-10-27 07:30:00 UTC (rev 520727)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Daniel Wallace <danielwallace at gtmanfred dot com>
+# Contributor: Thomas S Hatch <thatch45 at gmail.com>
+
+pkgname=python-pyassert
+pkgver=0.4.2
+pkgrel=6
+pkgdesc='Rich assertions library for Python'
+arch=('any')
+url='https://github.com/pyclectic/pyassert'
+license=('Apache')
+depends=('python-six')
+makedepends=('python-pybuilder' 'python-mockito' 'python-coverage' 'python-unittest-xml-reporting'
+             'flake8' 'pychecker')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/pyclectic/pyassert/archive/v$pkgver.tar.gz")
+sha512sums=('5a7a8078dad967913708f0bc18278ba760bbc098c1fc6f299b6a654206834dbebc82125c33456e498e5edfbf15599360c3cff807df56073eaa62330b6b494f09')
+
+prepare() {
+  # Pybuilder uses directory name to determine distribution name
+  mv pyassert-$pkgver pyassert
+
+  # BUILD FAILED - Missing plugin dependency 'pychecker':
+  #   pip._internal.exceptions.DistributionNotFound:
+  #     No matching distribution found for pychecker
+  sed -i '/use_plugin("python.pychecker")/d' pyassert/build.py
+}
+
+check() {
+  cd pyassert
+  pyb -v analyze || warning "ignoring flake8 warnings"
+}
+
+package() {
+  cd pyassert
+  pyb -v package
+  cd target/dist/pyassert-$pkgver
+  python setup.py install --root="$pkgdir" -O1
+}



More information about the arch-commits mailing list