blob: b27de8146b9c0c69b656e4d3c459101cbbb5cc4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Maintainer: Stick <stick@stma.is>
# Contributer: Sherlock Holo <Sherlockya@gmail.com>
_pkg=locust
pkgname="python-$_pkg-git"
pkgver=1.0.3.r25.g5ea0342
pkgrel=1
pkgdesc="Scalable user load testing tool written in Python"
arch=('any')
url="https://github.com/locustio/$_pkg"
license=('MIT')
depends=('python-gevent'
'python-flask'
'python-requests'
'python-msgpack'
'python-pyzmq'
'python-geventhttpclient'
'python-configargparse'
'python-psutil'
'python-flask-basicauth')
makedepends=('git'
'python-setuptools')
provides=("python-$_pkg")
conflicts=("python-$_pkg")
source=("$pkgname::git+$url")
sha256sums=('SKIP')
pkgver() {
cd "$pkgname" || exit
local _ver
_ver="$(git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g')"
printf '%s\n' "${_ver#v}"
}
build() {
cd "$pkgname" || exit
# sed -i 's/ "\([[:alpha:]-]*\).=.*"/ "\1"/' setup.py
python setup.py build
}
package() {
cd "$pkgname" || exit
python setup.py install --skip-build --root="$pkgdir"/ --optimize=1
}
|