2024-08-02 16:11:41 +00:00
|
|
|
# Contributor: Carlo Landmeter <clandmeter@alpinelinux.org>
|
|
|
|
# Contributor: 6543 <6543@obermui.de>
|
|
|
|
# Contributor: techknowlogick <techknowlogick@gitea.io>
|
|
|
|
# Contributor: Patrycja Rosa <alpine@ptrcnull.me>
|
|
|
|
# Maintainer: Antoine Martin (ayakael) <dev@ayakael.net>
|
|
|
|
pkgname=forgejo-aneksajo
|
2024-08-21 14:19:57 +00:00
|
|
|
pkgver=8.0.1
|
2024-08-02 16:11:41 +00:00
|
|
|
_gittag=v$pkgver-git-annex0
|
|
|
|
pkgrel=0
|
|
|
|
pkgdesc="Self-hosted Git service written in Go with git-annex support"
|
|
|
|
url="https://forgejo.org"
|
|
|
|
# riscv64: builds fail https://codeberg.org/forgejo/forgejo/issues/3025
|
|
|
|
arch="all !riscv64"
|
|
|
|
license="MIT"
|
|
|
|
depends="git git-lfs gnupg"
|
|
|
|
makedepends="go nodejs npm"
|
|
|
|
checkdepends="bash openssh openssh-keygen sqlite tzdata"
|
|
|
|
install="$pkgname.pre-install"
|
|
|
|
pkgusers="forgejo"
|
|
|
|
pkggroups="www-data"
|
|
|
|
subpackages="$pkgname-openrc"
|
|
|
|
source="$pkgname-$_gittag.tar.gz::https://codeberg.org/matrss/forgejo-aneksajo/archive/$_gittag.tar.gz
|
|
|
|
$pkgname.initd
|
|
|
|
$pkgname.ini
|
|
|
|
"
|
|
|
|
builddir="$srcdir/forgejo-aneksajo"
|
|
|
|
options="!check net chmod-clean" # broken with GIT_CEILING
|
|
|
|
|
|
|
|
# secfixes:
|
|
|
|
# 7.0.4-r0:
|
|
|
|
# - CVE-2024-24789
|
|
|
|
# 7.0.3-r0:
|
|
|
|
# - CVE-2024-24788
|
|
|
|
# 1.21.10.0-r0:
|
|
|
|
# - CVE-2023-45288
|
|
|
|
# 1.21.3.0-r0:
|
|
|
|
# - CVE-2023-48795
|
|
|
|
|
|
|
|
export GOCACHE="${GOCACHE:-"$srcdir/go-cache"}"
|
|
|
|
export GOTMPDIR="${GOTMPDIR:-"$srcdir"}"
|
|
|
|
export GOMODCACHE="${GOMODCACHE:-"$srcdir/go"}"
|
|
|
|
|
|
|
|
# Skip tests for archs that fail unrelated in CI
|
|
|
|
case "$CARCH" in
|
|
|
|
s390x|x86|armhf|armv7) options="$options !check" ;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
prepare() {
|
|
|
|
default_prepare
|
|
|
|
|
|
|
|
npm ci
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
# XXX: LARGEFILE64
|
|
|
|
export CGO_CFLAGS="$CFLAGS -O2 -D_LARGEFILE64_SOURCE"
|
|
|
|
export TAGS="bindata sqlite sqlite_unlock_notify"
|
|
|
|
export GITEA_VERSION="$pkgver"
|
|
|
|
export EXTRA_GOFLAGS="$GOFLAGS"
|
|
|
|
export CGO_LDFLAGS="$LDFLAGS"
|
|
|
|
unset LDFLAGS
|
|
|
|
## make FHS compliant
|
|
|
|
local setting="code.gitea.io/gitea/modules/setting"
|
|
|
|
export LDFLAGS="$LDFLAGS -X $setting.CustomConf=/etc/forgejo/app.ini"
|
|
|
|
export LDFLAGS="$LDFLAGS -X $setting.AppWorkPath=/var/lib/forgejo/"
|
|
|
|
|
|
|
|
make -j1 build
|
|
|
|
}
|
|
|
|
|
|
|
|
check() {
|
|
|
|
local home="$srcdir"/home
|
|
|
|
mkdir -p "$home"
|
|
|
|
install -d -m700 "$home"/.ssh
|
|
|
|
touch "$home"/.gitconfig
|
|
|
|
|
|
|
|
env GITEA_ROOT="$home" HOME="$home" GITEA_WORK_DIR="$(pwd)" timeout -s ABRT 20m make -j1 test-sqlite
|
|
|
|
## "make test" - modified (exclude broken tests)
|
|
|
|
## 'code.gitea.io/gitea/modules/migrations': github hase rate limits! 403 API
|
|
|
|
local tests=$(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/models/migrations' |
|
|
|
|
grep -v 'code.gitea.io/gitea/services/migrations' |
|
|
|
|
grep -v 'code.gitea.io/gitea/integrations')
|
|
|
|
env GITEA_CONF="$PWD/tests/sqlite.ini" GITEA_ROOT="$home" HOME="$home" GO111MODULE=on go test -mod=vendor -tags='sqlite sqlite_unlock_notify' $tests
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
for dir in $pkgname $pkgname/git $pkgname/data $pkgname/db $pkgname/custom; do
|
|
|
|
install -dm750 -o forgejo -g www-data \
|
|
|
|
"$pkgdir"/var/lib/$dir
|
|
|
|
done
|
|
|
|
|
|
|
|
install -dm755 -o forgejo -g www-data "$pkgdir"/var/log/forgejo
|
|
|
|
|
|
|
|
# TODO: rename when upstream does
|
|
|
|
install -Dm755 -g www-data gitea "$pkgdir"/usr/bin/forgejo
|
|
|
|
|
|
|
|
install -Dm644 -o forgejo -g www-data "$srcdir"/forgejo-aneksajo.ini \
|
|
|
|
"$pkgdir"/etc/forgejo/app.ini
|
|
|
|
chown forgejo:www-data "$pkgdir"/etc/forgejo
|
|
|
|
|
|
|
|
install -Dm755 "$srcdir"/forgejo-aneksajo.initd \
|
|
|
|
"$pkgdir"/etc/init.d/forgejo
|
|
|
|
}
|
|
|
|
|
|
|
|
sha512sums="
|
2024-08-21 14:19:57 +00:00
|
|
|
d8e273d369c934eec7ff84795cd0d896cda53bc1a2d17f610dd8476ff92dc50c4a24c4598366ef8aac3be52ddef6630489043183085334376c30bc5d4d5f15c2 forgejo-aneksajo-v8.0.1-git-annex0.tar.gz
|
2024-08-02 16:11:41 +00:00
|
|
|
eb93a9f6c8f204de5c813f58727015f53f9feaab546589e016c60743131559f04fc1518f487b6d2a0e7fa8fab6d4a67cd0cd9713a7ccd9dec767a8c1ddebe129 forgejo-aneksajo.initd
|
|
|
|
b537b41b6b3a945274a6028800f39787b48c318425a37cf5d40ace0d1b305444fd07f17b4acafcd31a629bedd7d008b0bb3e30f82ffeb3d7e7e947bdbe0ff4f3 forgejo-aneksajo.ini
|
|
|
|
"
|