summaryrefslogtreecommitdiffstats
path: root/abs
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2017-07-19 03:38:35 (GMT)
committerBritney Fransen <brfransen@gmail.com>2017-07-19 03:38:35 (GMT)
commit3bdb5be26490c0c9efcab0db9a509c1619caeca9 (patch)
tree2e2df11caf3954219d1a29150f17a2b7da6dbfb1 /abs
parent6fbd52cf907f4e2b3d7408c1056ee59589fe6bfb (diff)
downloadlinhes_pkgbuild-3bdb5be26490c0c9efcab0db9a509c1619caeca9.zip
linhes_pkgbuild-3bdb5be26490c0c9efcab0db9a509c1619caeca9.tar.gz
linhes_pkgbuild-3bdb5be26490c0c9efcab0db9a509c1619caeca9.tar.bz2
python2-plumbum: initial inclusion. dep of flexget
Diffstat (limited to 'abs')
-rw-r--r--abs/core/python_modules/python2-plumbum/PKGBUILD29
1 files changed, 29 insertions, 0 deletions
diff --git a/abs/core/python_modules/python2-plumbum/PKGBUILD b/abs/core/python_modules/python2-plumbum/PKGBUILD
new file mode 100644
index 0000000..b4f9cc9
--- /dev/null
+++ b/abs/core/python_modules/python2-plumbum/PKGBUILD
@@ -0,0 +1,29 @@
+# Maintainer: Florian Jacob <projects+arch AT florianjacob )DOT( de>
+# Contributor: Milo Mirate <mmirate@gmx.com>
+_pkgname=plumbum
+pkgname=python2-plumbum
+pkgver=1.6.3
+pkgrel=1
+pkgdesc="Shell combinators library."
+arch=('any')
+url="https://pypi.python.org/pypi/plumbum"
+license=('GPL')
+groups=()
+depends=('python2' 'python2-six')
+makedepends=()
+provides=()
+conflicts=()
+replaces=()
+backup=()
+# plumbum is plain python and therefore we don't need to run strip
+options=(!emptydirs !strip)
+install=
+source=("https://pypi.python.org/packages/50/15/f26f60e1bb82aabed7ff86f3fd2976784047f9a291c63ac9019086a69559/${_pkgname}-${pkgver}.tar.gz")
+sha256sums=('0249e708459f1b05627a7ca8787622c234e4db495a532acbbd1f1f17f28c7320')
+
+package() {
+ cd "$srcdir/${_pkgname}-$pkgver"
+ python2 setup.py install --root="$pkgdir/" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et: