aboutsummaryrefslogtreecommitdiffstats
path: root/main/patchwork/APKBUILD
blob: 3b45b6004df58f790320fa2b077b360059488836 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Con#tributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=patchwork
pkgver=1.1.3
pkgrel=0
pkgdesc="Web-based patch tracking system"
url="https://github.com/getpatchwork/patchwork"
arch="noarch"
license="GPL"
depends="py-django py-django-registration git py-psycopg2"
subpackages="$pkgname-doc $pkgname-uwsgi-apache2:apache2_wsgi $pkgname-uwsgi-nginx:nginx_wsgi $pkgname-mysql
	$pkgname-postgresql pwclient:pwclient"
source="$pkgname-$pkgver.tar.gz::https://github.com/getpatchwork/$pkgname/archive/v$pkgver.tar.gz
	0001-support-busybox-readlink.patch
	0002-remove-uneeded-bashism-from-tools-and-change-path.patch
	nginx-uwsgi-patchwork-conf.ini
	nginx-patchwork.conf"

builddir="$srcdir"/$pkgname-$pkgver

build() {
	cd "$builddir"
	return 0
}

package() {
	cd "$builddir"
	mkdir -p "$pkgdir"/usr/share/webapps/$pkgname
	install -Dm644 COPYING \
		"$pkgdir"/usr/share/doc/$pkgname/COPYING
	rm -f COPYING
	install -Dm644 patchwork/settings/production.example.py \
		"$pkgdir"/etc/$pkgname/production.py
	mv * "$pkgdir"/usr/share/webapps/$pkgname
	cd "$pkgdir"/usr/share/webapps/patchwork/patchwork/settings
	ln -sf /etc/patchwork/production.py
}

apache2_wsgi() {
	pkgdesc="$pkgname apache2 wsgi support"
	depends="apache2 apache2-mod-wsgi"
	replaces="$pkgname-apache2-wsgi"
	install_if="$pkgname=$pkgver-r$pkgrel apache2-mod-wsgi"
	install -Dm644 "$pkgdir"/usr/share/webapps/patchwork/lib/apache2/patchwork.wsgi.conf \
		"$subpkgdir"/etc/apache2/conf.d/patchwork.wsgi.conf
}

nginx_wsgi() {
	pkgdesc="$pkgname nginx wsgi support"
	depends="nginx uwsgi-python"
	replaces="$pkgname-nginx_wsgi"
	install_if="nginx patchwork uwsgi"
	install -Dm644 "$srcdir"/nginx-patchwork.conf \
		"$subpkgdir"/etc/nginx/conf.d/patchwork.conf
	install -Dm644 "$srcdir"/nginx-uwsgi-patchwork-conf.ini \
		"$subpkgdir"/etc/uwsgi/conf.d/patchwork.ini
}

mysql() {
	pkgdesc="$pkgname mysql support"
	depends="py-mysqldb"
	mkdir -p "$subpkgdir"
}

postgresql() {
	pkgdesc="$pkgname postgresql support"
	depends="py-psycopg2"
	mkdir -p "$subpkgdir"
}

pwclient() {
	pkgdesc="command-line client for patchwork"
	depends="python2"
	install -Dm775 "$pkgdir"/usr/share/webapps/patchwork/patchwork/bin/pwclient \
		"$subpkgdir"/usr/bin/pwclient
}

sha512sums="e718ce942781c64e672c7ce9df4362277df418ba2adb61d8b512bf11ffd275d675f972703ceb301600e9b9914741f9b7f44229c1f1e5dec1470ce72b15a4598b  patchwork-1.1.3.tar.gz
a5d4e24741b66092a39c1ef4fdc76dffa1ddf87a69544ab0c374fb0701b0f7340a62ead86835d9bb412df5713f3ea3c0218e9e2e0cd01d9a1aad9414a3cc75fa  0001-support-busybox-readlink.patch
12d1b184c6cb1d3f2c51adab6b60638e4869e055e677897bb66ee1a52312e77817bec543842324e2cbc2c226f3ab9d11c3782b5ef3a6f5f5712996cadbc6c9c9  0002-remove-uneeded-bashism-from-tools-and-change-path.patch
28911a25e00a254237f7214fb681e5e984a2eae331e610be62967d5e246958e0f8d3f84861d8fd17c1190c1df72a25f28ddb33843b3679a3864beb00cb4b4961  nginx-uwsgi-patchwork-conf.ini
862dd2522236a0b18d2a8d06f1ad91ad0fd0936fa502d95e09556641e67d42e1212821bfd7fb98923e4fe8b8a7369ded8c23831fb496b1e2833d9831c1b23725  nginx-patchwork.conf"