[arch-commits] Commit in python-automat/repos (testing-any testing-any/PKGBUILD)

Felix Yan felixonmars at archlinux.org
Thu Jun 14 07:27:13 UTC 2018


    Date: Thursday, June 14, 2018 @ 07:27:12
  Author: felixonmars
Revision: 326964

archrelease: copy trunk to testing-any

Added:
  python-automat/repos/testing-any/
  python-automat/repos/testing-any/PKGBUILD
    (from rev 326963, python-automat/trunk/PKGBUILD)

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

Copied: python-automat/repos/testing-any/PKGBUILD (from rev 326963, python-automat/trunk/PKGBUILD)
===================================================================
--- testing-any/PKGBUILD	                        (rev 0)
+++ testing-any/PKGBUILD	2018-06-14 07:27:12 UTC (rev 326964)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgbase=python-automat
+pkgname=('python-automat' 'python2-automat')
+pkgver=0.7.0
+pkgrel=1
+arch=('any')
+license=('MIT')
+pkgdesc="Self-service finite-state machines for the programmer on the go."
+url="https://github.com/glyph/automat"
+makedepends=('python-setuptools-scm' 'python2-setuptools-scm' 'm2r' 'python2-m2r' 'python-attrs'
+             'python2-attrs')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-pytest-benchmark'
+              'python2-pytest-benchmark')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/glyph/automat/archive/v$pkgver.tar.gz")
+sha512sums=('6ce26ff0e084ff0f98c3744f7c4c9b794f335b0fea09b02f9c18b7d0743f85a956bc5f8a7acea7dae08930f0860c94b12d98edbcd59e895fb9129a5c42a921ca')
+
+prepare() {
+  cp -a automat-$pkgver{,-py2}
+
+  # Set version for setuptools_scm
+  export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+}
+
+build() {
+  cd "$srcdir"/automat-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/automat-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/automat-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/automat-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-automat() {
+  depends=('python-attrs' 'python-setuptools')
+
+  cd automat-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/python-automat/LICENSE
+}
+
+package_python2-automat() {
+  depends=('python2-attrs' 'python2-setuptools')
+
+  cd automat-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/python2-automat/LICENSE
+
+  mv "$pkgdir"/usr/bin/automat-visualize{,2}
+}



More information about the arch-commits mailing list