summaryrefslogtreecommitdiffstats
path: root/abs/core/python_modules/python2-ipaddress/PKGBUILD
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2016-05-16 16:24:28 (GMT)
committerBritney Fransen <brfransen@gmail.com>2016-05-16 16:24:28 (GMT)
commitfff4c50d3a1d94c807604d6c21355993dfb95c85 (patch)
tree390f0eb0781b2599449edbdafbeb6aaba34200dc /abs/core/python_modules/python2-ipaddress/PKGBUILD
parent8de064f6e96f960cdbfe6868d9957a4613f704df (diff)
parent6f7a84649ef75069cc4fa06fabeb63e762e049d1 (diff)
downloadlinhes_pkgbuild-fff4c50d3a1d94c807604d6c21355993dfb95c85.zip
linhes_pkgbuild-fff4c50d3a1d94c807604d6c21355993dfb95c85.tar.gz
linhes_pkgbuild-fff4c50d3a1d94c807604d6c21355993dfb95c85.tar.bz2
Merge branch 'testing'
Diffstat (limited to 'abs/core/python_modules/python2-ipaddress/PKGBUILD')
-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"
+}