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

Felix Yan felixonmars at archlinux.org
Sat Jun 30 01:59:07 UTC 2018


    Date: Saturday, June 30, 2018 @ 01:59:06
  Author: felixonmars
Revision: 347828

archrelease: copy trunk to community-staging-any

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

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

Copied: python-vcversioner/repos/community-staging-any/PKGBUILD (from rev 347827, python-vcversioner/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD	                        (rev 0)
+++ community-staging-any/PKGBUILD	2018-06-30 01:59:06 UTC (rev 347828)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgbase=python-vcversioner
+pkgname=(python-vcversioner python2-vcversioner)
+pkgver=2.16.0.0
+pkgrel=2
+pkgdesc="Use version control tags to discover version numbers"
+url="https://github.com/habnabit/vcversioner"
+license=('ISC')
+arch=('any')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+source=("$pkgbase-$pkgver.tar.bz2::https://github.com/habnabit/vcversioner/archive/$pkgver.tar.gz")
+sha512sums=('0ce7edf28d0626707f977b565f938a754d374d0cada8683f05fa6d1088930d4d858213dbcb5dba149d828e76341eec4a168ef1998ce9894b72c35c1eef59bd08')
+
+prepare() {
+  echo -n "$pkgver-0-UNKNOWN" > vcversioner-$pkgver/version.txt
+  cp -a vcversioner-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/vcversioner-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/vcversioner-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/vcversioner-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/vcversioner-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-vcversioner() {
+  depends=('python')
+
+  cd vcversioner-$pkgver
+  python3 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}
+
+package_python2-vcversioner() {
+  depends=('python2')
+
+  cd vcversioner-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}



More information about the arch-commits mailing list