summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorSherlock Holo2017-09-13 02:33:41 +0800
committerSherlock Holo2017-09-13 02:33:41 +0800
commit54817e5981fb62efca935647193bf7fc1f67cca0 (patch)
tree929b057af5598be5d82324e002f481c39068a62f
parent887ba0b6ed7581a71ecdd8a42a11fb30c6420e42 (diff)
downloadaur-54817e5981fb62efca935647193bf7fc1f67cca0.tar.gz
Fix a bug
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD6
2 files changed, 7 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 3a734a0ccdf1..cce10a738dc0 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,9 @@
# Generated by mksrcinfo v8
-# Tue Sep 12 18:30:21 UTC 2017
+# Tue Sep 12 18:33:07 UTC 2017
pkgbase = python-locust-git
pkgdesc = An easy-to-use, distributed, user load testing tool.
pkgver = v0.8a1.82.g8c4eeae
- pkgrel = 4
+ pkgrel = 5
url = http://locust.io/
arch = any
license = MIT
@@ -17,6 +17,7 @@ pkgbase = python-locust-git
source = git://github.com/locustio/locust.git
source = locust.patch
md5sums = SKIP
+ md5sums = cd7c5b5fafcd7ca2561ea9450b4bf26a
pkgname = python-locust-git
diff --git a/PKGBUILD b/PKGBUILD
index 5d18cfde664b..57f1a47dd6cb 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=python-locust-git
_pkgname=locust
pkgver=v0.8a1.82.g8c4eeae
-pkgrel=4
+pkgrel=5
pkgdesc="An easy-to-use, distributed, user load testing tool."
arch=('any')
url="http://locust.io/"
@@ -20,7 +20,9 @@ pkgver() {
}
build() {
- cd $srcdir/$_pkgname
+ cd $srcdir
+ mv locust.patch $_pkgname
+ cd $_pkgname
patch -p0 -i locust.patch
python setup.py build
}