summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorWouter de Vries2015-12-18 10:38:59 +0100
committerWouter de Vries2015-12-18 10:38:59 +0100
commit950b7f269fb48e93cc2c408cb7316835dd0df394 (patch)
treea3aa070b8614fd302e065efcb3be3ae7d19782f3
parent35b5e561d4fc4b027a5e9890e771da31ea3aa7bb (diff)
downloadaur-950b7f269fb48e93cc2c408cb7316835dd0df394.tar.gz
Added force to remove, to prevent an error when the pycache has not been created
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD4
2 files changed, 4 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index d95024c506ae..378c75e161f1 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,9 @@
# Generated by mksrcinfo v8
-# Wed Dec 16 12:40:42 UTC 2015
+# Fri Dec 18 09:38:41 UTC 2015
pkgbase = python-ripe-atlas-sagan
pkgdesc = A parsing library for RIPE Atlas measurement results
pkgver = 1.1.8
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/RIPE-NCC/ripe.atlas.sagan
arch = any
license = GPL3
diff --git a/PKGBUILD b/PKGBUILD
index c554711615ac..287dc179b7d4 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
_name=ripe.atlas.sagan
pkgname=python-ripe-atlas-sagan
pkgver=1.1.8
-pkgrel=1
+pkgrel=2
pkgdesc="A parsing library for RIPE Atlas measurement results"
arch=('any')
url="https://github.com/RIPE-NCC/$_name"
@@ -17,5 +17,5 @@ md5sums=('6a29ebba5926afc4d8791fc48993eae5')
package() {
cd "$srcdir/$_name-$pkgver"
python setup.py install --root="$pkgdir" --optimize=1 || return 1
- rm -r "ripe/__pycache__" "ripe/atlas/__pycache__"
+ rm -rf "ripe/__pycache__" "ripe/atlas/__pycache__"
}