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

Felix Yan felixonmars at archlinux.org
Mon Nov 4 04:51:24 UTC 2019


    Date: Monday, November 4, 2019 @ 04:51:23
  Author: felixonmars
Revision: 523140

archrelease: copy trunk to community-staging-any

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

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

Copied: python-toposort/repos/community-staging-any/PKGBUILD (from rev 523139, python-toposort/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD	                        (rev 0)
+++ community-staging-any/PKGBUILD	2019-11-04 04:51:23 UTC (rev 523140)
@@ -0,0 +1,33 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=python-toposort
+pkgver=1.5
+pkgrel=4
+pkgdesc='Implements a topological sort algorithm'
+arch=('any')
+license=('Apache')
+url='https://bitbucket.org/ericvsmith/toposort'
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=("$pkgname-$pkgver.tar.gz::https://bitbucket.org/ericvsmith/toposort/get/$pkgver.tar.bz2")
+sha512sums=('f79ee4a04b157db164e484be054bed6d310023722cd13469454022eb96ccd3ff5bf6dc570384d3ca790c819b67afa4a96c716da2b99c458d8ddfe2e56e5222a0')
+
+prepare() {
+  mv ericvsmith-toposort-* toposort-$pkgver
+}
+
+build() {
+  cd toposort-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd toposort-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd toposort-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}



More information about the arch-commits mailing list