[arch-commits] Commit in (4 files)

Lukas Fleischer lfleischer at archlinux.org
Sat Jun 17 10:54:30 UTC 2017


    Date: Saturday, June 17, 2017 @ 10:54:29
  Author: lfleischer
Revision: 237866

Inital import of python-fasteners.

Added:
  python-fasteners/
  python-fasteners/repos/
  python-fasteners/trunk/
  python-fasteners/trunk/PKGBUILD

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

Added: python-fasteners/trunk/PKGBUILD
===================================================================
--- python-fasteners/trunk/PKGBUILD	                        (rev 0)
+++ python-fasteners/trunk/PKGBUILD	2017-06-17 10:54:29 UTC (rev 237866)
@@ -0,0 +1,32 @@
+# Maintainer: Lukas Fleischer <lfleischer at archlinux.org>
+# Contributor: Tomislav Ivek <tomislav.ivek at gmail.com>
+
+pkgname=('python-fasteners' 'python2-fasteners')
+pkgver=0.14.1
+pkgrel=5
+pkgdesc="A python package that provides useful locks."
+arch=('any')
+url="https://github.com/harlowja/fasteners"
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("https://github.com/harlowja/fasteners/archive/$pkgver.tar.gz")
+sha512sums=('954d692b7f43563ba1413854c8dec2f5ff98757346c55aaa5f39e9aa777fb746bf4f9506beab6cfa149d5646db4b3de58d35bcef95e3128096c3346c9fd8015c')
+
+build() {
+  cd "$srcdir/fasteners-$pkgver"
+  python setup.py build
+}
+
+package_python-fasteners() {
+  depends=('python-six' 'python-monotonic')
+
+  cd "$srcdir/fasteners-$pkgver"
+  python setup.py install --optimize=1 --root=${pkgdir}
+}
+
+package_python2-fasteners() {
+  depends=('python2-six' 'python2-monotonic')
+
+  cd "$srcdir/fasteners-$pkgver"
+  python2 setup.py install --optimize=1 --root=${pkgdir}
+}



More information about the arch-commits mailing list