aboutsummaryrefslogtreecommitdiffstats
path: root/community/buildbot/APKBUILD
blob: 397bf7df8eab5cc66fe2499498d22dbd9dbab931 (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
45
46
47
48
49
50
51
52
53
54
55
56
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=buildbot
pkgver=0.9.5
pkgrel=0
pkgdesc="Continuous integration testing framework"
url="http://buildbot.net/"
arch="noarch"
license="GPLv2"
depends="python2 py-twisted py-simplejson py2-sqlalchemy 
	py2-pysqlite py-jinja2 py2-sqlalchemy-migrate
	py-dateutil py-setuptools"
depends_dev=""
makedepends="python2-dev"
install="${pkgname}.pre-install"
BUILDBOT_USER=buildbot
BUILDBOT_GROUP=buildbot
pkgusers="$BUILDBOT_USER"
pkggroups="$BUILDBOT_GROUP"
subpackages=""
source="https://files.pythonhosted.org/packages/source/${pkgname:0:1}/$pkgname/$pkgname-${pkgver/_/}.tar.gz
	buildmaster.initd
	buildmaster.confd"

builddir="$srcdir"/$pkgname-${pkgver/_/}

check() {
	cd "$builddir"
	python2 setup.py check
}

prepare() {
	default_prepare
}

build() {
	cd "$builddir"
	python2 setup.py build
}

package() {
	cd "$builddir"
	python2 setup.py install --prefix=/usr --root="$pkgdir"
	install -D -m 755 \
	        "$srcdir"/buildmaster.initd \
	        "$pkgdir"/etc/init.d/buildmaster
	install -D -m 644 \
	        "$srcdir"/buildmaster.confd \
	        "$pkgdir"/etc/conf.d/buildmaster
	install -d -o $BUILDBOT_USER -g $BUILDBOT_GROUP \
	        "$pkgdir"/var/lib/buildmaster
}

sha512sums="64d8ea6d80887ab697af6e6d3edb2080cbc0d478e52689b0eddfce4c7ffe8cadbc65e14087cffdf5c74c55593328452fe3e9bce976277412479defb80ff2e4ac  buildbot-0.9.5.tar.gz
2e65d22f1b94433ba11839fb3434d072f9ff8132396b03fdcdb3b437778679d1699534296fbb851d2661a3a7a0bce4ef1f94c49e7910419557e4055f2ed1a4d5  buildmaster.initd
d9339c30d3a92e92b41b0e3139ec89ecbd1460b0e4ee6c6fe2560c4307b2eb3f29b838c2f2312b9c7049bd95eaf652d09039227c691af805bc25a36999ec1840  buildmaster.confd"