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

Felix Yan felixonmars at archlinux.org
Mon Nov 4 09:35:23 UTC 2019


    Date: Monday, November 4, 2019 @ 09:35:23
  Author: felixonmars
Revision: 523919

archrelease: copy trunk to community-staging-any

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

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

Copied: python-vcversioner/repos/community-staging-any/PKGBUILD (from rev 523918, python-vcversioner/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD	                        (rev 0)
+++ community-staging-any/PKGBUILD	2019-11-04 09:35:23 UTC (rev 523919)
@@ -0,0 +1,34 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=python-vcversioner
+pkgver=2.16.0.0
+pkgrel=4
+pkgdesc="Use version control tags to discover version numbers"
+url="https://github.com/habnabit/vcversioner"
+license=('ISC')
+arch=('any')
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-runner')
+source=("$pkgname-$pkgver.tar.bz2::https://github.com/habnabit/vcversioner/archive/$pkgver.tar.gz")
+sha512sums=('0ce7edf28d0626707f977b565f938a754d374d0cada8683f05fa6d1088930d4d858213dbcb5dba149d828e76341eec4a168ef1998ce9894b72c35c1eef59bd08')
+
+prepare() {
+  echo -n "$pkgver-0-UNKNOWN" > vcversioner-$pkgver/version.txt
+}
+
+build() {
+  cd vcversioner-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd vcversioner-$pkgver
+  python setup.py pytest
+}
+
+package() {
+  cd vcversioner-$pkgver
+  python3 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}



More information about the arch-commits mailing list