summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2016-04-15 17:57:50 (GMT)
committerBritney Fransen <brfransen@gmail.com>2016-04-15 17:57:50 (GMT)
commitdc1ef1f017ace98952c1e417f086779a1c01ea71 (patch)
treecc42c15b4578b8dbe88626e84eb915dd5d0a43b0
parentbc7cebddcaa8d2dd9c598302947d08a3b1a1f317 (diff)
downloadlinhes_pkgbuild-dc1ef1f017ace98952c1e417f086779a1c01ea71.zip
linhes_pkgbuild-dc1ef1f017ace98952c1e417f086779a1c01ea71.tar.gz
linhes_pkgbuild-dc1ef1f017ace98952c1e417f086779a1c01ea71.tar.bz2
python2-ipaddress: initial inclusion dep of python-cryptography
-rw-r--r--abs/core/python_modules/python2-ipaddress/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/abs/core/python_modules/python2-ipaddress/PKGBUILD b/abs/core/python_modules/python2-ipaddress/PKGBUILD
new file mode 100644
index 0000000..d5a0bd5
--- /dev/null
+++ b/abs/core/python_modules/python2-ipaddress/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars@archlinux.org>
+# Contributor: Nikolaus Brandt <sua-aur-661bbb3b@brandt-n.eu>
+
+pkgname=python2-ipaddress
+pkgver=1.0.16
+pkgrel=1
+pkgdesc="IPv4/IPv6 manipulation library"
+arch=(any)
+url="https://github.com/phihag/ipaddress"
+license=('custom:PSF')
+depends=('python2')
+source=("https://pypi.python.org/packages/source/i/ipaddress/ipaddress-$pkgver.tar.gz"
+ LICENSE)
+sha512sums=('50baf15f185b039037eef7b047d5a0ffbe1b335d2d94c218b6a2012ae1ba89c5e5c4f64667d8a623e4e4e7598d90c8a7caa8327ea4c155260ab90384f86a6c89'
+ '5cc59a125412b0eb35f05d40756db050805fc1bd5729f350796644ad92b8117f8d3ed3c7cf6ab8b072518706bf95a1d40f016d065726a1296e19ea09582ec385')
+
+check() {
+ # Not included in release tarball
+ cd ipaddress-$pkgver
+ # python2 test_ipaddress.py
+}
+
+package() {
+ cd ipaddress-$pkgver
+ python2 setup.py install --root="$pkgdir/" --optimize=1
+ install -Dm644 ../LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}