# Maintainer: Bruno Pagani # Maintainer: Maxime Gauduin # Contributor: Frederik Schwan # ALARM: Kevin Mihelich # - reduce go garbage collection memory usage with GOGC=50 # - don't check repo signature until author puts his keys on keyservers pkgname=gitea pkgver=1.8.3 pkgrel=1 pkgdesc="Painless self-hosted Git service. Community managed fork of Gogs." arch=(x86_64) url="https://gitea.io" license=(MIT) depends=(git) makedepends=(go-pie go-bindata dep) optdepends=( 'mariadb: MariaDB support' 'memcached: MemCached support' 'openssh: GIT over SSH support' 'pam: Authentication via PAM support' 'postgresql: PostgreSQL support' 'redis: Redis support' 'sqlite: SQLite support' ) backup=('etc/gitea/app.ini') _tag=2b76566c63f0d3d820016259a21aca4cb94bc78b # git rev-parse v${pkgver} source=("git+https://github.com/go-gitea/gitea.git#tag=${_tag}" gitea.tmpfiles gitea.service gitea.sysusers gitea-arch-defaults.patch gitea-ldflags.patch) sha256sums=('SKIP' '1521fd7edc3830c695698ffe9835709f1408040b5ec989f07410972c894fa8ba' '7789b3f6699b9e111fa080226047cdc765e55ff49a3f72aac989c11c06c3e7e0' '2abc51ccd0086bb996194bb7fb241a3f26d84f518417c872b66a3db8970da7e4' 'ab0183aeee92d127819b033cbe0b9eab2e1072fb67a0a20e838d911138799b70' '2dd05c2ec8d5b17332525fe176e40df9893aa632f48525f9d5df98e05027aebf') validpgpkeys=(8C4033A23895237CB27D52D9D9B5613BEB813F99 # Matti Ranta old RSA2048, retrieved from https://github.com/techknowlogick.gpg B56E3C7437A49E136862F5DE9D8A57ADAA232E95 # Matti Ranta new RSA4096, retrieved from https://github.com/techknowlogick.gpg ED810FD31FBE67F406ED71BDD4F1E9B6493ED946 # Jonas Franz 9C5BCD799B3CDB124147A748E0DDFEC24C48784C) # Lauris Bukšis-Haberkorns install=gitea.install prepare() { mkdir -p gopath/src/code.gitea.io ln -rTsf ${pkgname} gopath/src/code.gitea.io/gitea export GOPATH="${srcdir}"/gopath cd ${pkgname} # Change some defaults for ArchLinux patch -Np1 -i ../gitea-arch-defaults.patch # Fix LDFLAGS not being respected by Go patch -Np1 -i ../gitea-ldflags.patch cd $GOPATH/src/code.gitea.io/gitea dep ensure } build() { export GOPATH="${srcdir}"/gopath export GOGC=50 cd gopath/src/code.gitea.io/gitea make generate EXTRA_GOFLAGS="-gcflags all=-trimpath=${GOPATH} -asmflags all=-trimpath=${GOPATH}" \ make GOFLAGS="-v" TAGS="bindata sqlite pam" build } package() { install -Dm755 ${pkgname}/${pkgname} -t "${pkgdir}"/usr/bin/ install -Dm644 ${pkgname}/LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}/ install -Dm644 ${pkgname}.service -t "${pkgdir}"/usr/lib/systemd/system/ install -Dm644 ${pkgname}.tmpfiles "${pkgdir}"/usr/lib/tmpfiles.d/${pkgname}.conf install -Dm644 ${pkgname}.sysusers "${pkgdir}"/usr/lib/sysusers.d/${pkgname}.conf install -D ${pkgname}/custom/conf/app.ini.sample "${pkgdir}"/etc/gitea/app.ini }