summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorWouter de Vries2015-12-16 13:38:33 +0100
committerWouter de Vries2015-12-16 13:38:33 +0100
commit237f6c6650b6938a6ce314468c1e4b0872f0fc55 (patch)
tree10228d0842c118a17cf20005d74d1ece5139d7c3
parent009c8609110984c997a82b6ee8f819ed57a5038a (diff)
downloadaur-237f6c6650b6938a6ce314468c1e4b0872f0fc55.tar.gz
Update to 1.0.6 and remove pycache
-rw-r--r--PKGBUILD5
1 files changed, 3 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 36a879d68e71..3a2f3dbe0440 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Wouter de Vries <wouter@wouter-web.nl>
_name=ripe.atlas.cousteau
pkgname=python-ripe-atlas-cousteau
-pkgver=1.0.4
+pkgver=1.0.6
pkgrel=1
pkgdesc="A python wrapper around RIPE ATLAS API"
arch=('any')
@@ -11,9 +11,10 @@ depends=('python>=3.4' 'python-requests>=2.7.0' 'python-dateutil' 'python-socket
makedepends=('python-setuptools')
provides=('python-ripe-atlas-cousteau')
source=("https://pypi.python.org/packages/source/r/$_name/$_name-$pkgver.tar.gz")
-md5sums=('02534728feb8455b5de8e553480a0ece')
+md5sums=('196933a791e4d0c2eb123ca5a79162e0')
package() {
cd "$srcdir/$_name-$pkgver"
python setup.py install --root="$pkgdir" --optimize=1 || return 1
+ rm -r "ripe/__pycache__" "ripe/atlas/__pycache__"
}