aboutsummaryrefslogtreecommitdiffstats
path: root/community/gitea/APKBUILD
blob: 92c3b1e309822afb5e8d43c431e2e8dd112a77a3 (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
83
84
85
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
# Contributor: 6543 <6543@obermui.de>
# Maintainer: Carlo Landmeter <clandmeter@gmail.com>
pkgname=gitea
pkgver=1.11.4
pkgrel=2
pkgdesc="A self-hosted Git service written in Go"
url="https://gitea.io"
arch="all !mips !mips64"
license="MIT"
options="chmod-clean"
depends="git git-lfs gnupg"
makedepends="go libcap nodejs npm"
checkdepends="bash openssh openssh-keygen sqlite"
install="$pkgname.pre-install"
pkgusers="gitea"
pkggroups="www-data"
subpackages="$pkgname-openrc"
source="$pkgname-$pkgver.tar.gz::https://github.com/go-gitea/gitea/archive/v$pkgver.tar.gz
	$pkgname.initd
	$pkgname.ini
	0001-Fix-rebase-conflict-detection-in-git-2.26.patch
	"
builddir="$srcdir/src/code.gitea.io/$pkgname"

case "$CARCH" in
	x86_64|s390x|x86) options="$options !check" ;;
esac

prepare() {
	mkdir -p ${builddir%/*}
	mv "$srcdir"/$pkgname-$pkgver "$builddir"/
	default_prepare
}

build() {
	export GOPATH="$srcdir"
	export TAGS="tidb sqlite sqlite_unlock_notify"
	export GITEA_VERSION="$pkgver"
	unset LDFLAGS
	make build
}

check() {
	## "make test" - modified (exclude broken tests)
	## 'code.gitea.io/gitea/modules/migrations': github hase rate limits! 403 API
	PACKAGES=$(go list ./... | grep -v /vendor/ | \
		grep -v 'code.gitea.io/gitea/modules/migrations' | \
		grep -v 'code.gitea.io/gitea/modules/charset' | \
		grep -v 'code.gitea.io/gitea/integrations' | \
		grep -v 'code.gitea.io/gitea/modules/git')
	GO111MODULE=on go test -mod=vendor -tags='sqlite sqlite_unlock_notify' $PACKAGES

	timeout -s ABRT 20m make test-sqlite
}

package() {
	for dir in $pkgname $pkgname/git $pkgname/data $pkgname/db $pkgname/custom; do
		install -d -m 750 -o gitea -g www-data \
			"$pkgdir"/var/lib/$dir
	done

	install -d -m 755 -o gitea -g www-data "$pkgdir"/var/log/$pkgname

	install -D -m 755 $pkgname "$pkgdir"/usr/bin/$pkgname

	# Allow non root to bind to port 80.
	setcap cap_net_bind_service=+ep \
		"$pkgdir"/usr/bin/$pkgname

	install -D -m 644 -o gitea -g www-data "$srcdir"/gitea.ini \
		"$pkgdir"/etc/$pkgname/app.ini
	chown gitea:www-data "$pkgdir"/etc/$pkgname

	install -d -m 755 "$pkgdir"/usr/share/webapps/$pkgname
	mv options public templates "$pkgdir"/usr/share/webapps/$pkgname/

	install -D -m 755 "$srcdir"/$pkgname.initd \
		"$pkgdir"/etc/init.d/$pkgname
}

sha512sums="5b7d07fd02f3acf900f1a3d2d9bb99a94487eaaf148d11a9746b309ee97ffc2d208fd47cc7e121ac0b2a6e97c919ea0232898f7f6851248a8407c706edbc904a  gitea-1.11.4.tar.gz
4c2c4933c482f0c06447252b50533d637cbd0ad7416684c0771ad7e3326d9793b5f28879f5251b38c51bc71ed15a4aa767ce05d08edb6ca0840749e659fb5081  0001-Fix-rebase-conflict-detection-in-git-2.26.patch
2497e6f2a18e3ceb65352cd220eab2c1c0893d0e731600462a60397de2b70d7c1de7db2af2769b25fe708b0822c811bb20dc797b59b9dd93efb376bea1c35796  gitea.initd
431184faffa8996873d92d7b0d16bc4b1a0178d264cd2928d1f49b13ad3e6470d9ede7a18c12112deeeb38f0647ccc0b012e98bcbd96e7b8496a3dc18f5b1fb7  gitea.ini"