PKGBUILDs/community/gitea/PKGBUILD

69 lines
2.9 KiB
Bash
Raw Normal View History

2019-08-03 00:34:22 +00:00
# Maintainer: Bruno Pagani <archange@archlinux.org>
# Maintainer: Maxime Gauduin <alucryd@archlinux.org>
# Contributor: Frederik Schwan <frederik dot schwan at linux dot com>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - reduce go garbage collection memory usage with GOGC=50
# - don't check repo signature until author puts his keys on keyservers
pkgname=gitea
2020-01-18 01:18:56 +00:00
pkgver=1.10.3
2019-11-01 00:15:25 +00:00
pkgrel=1
2019-08-03 00:34:22 +00:00
pkgdesc="Painless self-hosted Git service. Community managed fork of Gogs."
arch=(x86_64)
url="https://gitea.io"
license=(MIT)
depends=(git)
2019-08-07 13:41:51 +00:00
makedepends=(go-pie)
2019-08-03 00:34:22 +00:00
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')
2020-01-18 01:18:56 +00:00
_tag=6303d15e124d2a0ba3c6e53b471736b750b65f66 # git rev-parse v${pkgver}
2019-08-03 00:34:22 +00:00
source=("git+https://github.com/go-gitea/gitea.git#tag=${_tag}"
gitea.tmpfiles
gitea.service
gitea.sysusers
2019-08-07 13:41:51 +00:00
gitea-arch-defaults.patch)
2020-01-18 01:18:56 +00:00
sha256sums=(SKIP
1521fd7edc3830c695698ffe9835709f1408040b5ec989f07410972c894fa8ba
7789b3f6699b9e111fa080226047cdc765e55ff49a3f72aac989c11c06c3e7e0
2abc51ccd0086bb996194bb7fb241a3f26d84f518417c872b66a3db8970da7e4
dc1ea5c72a4f3c216c021f3fea8ac46263d820c6e4e5e088b7d50d56c0fde61f)
2019-08-03 00:34:22 +00:00
validpgpkeys=(8C4033A23895237CB27D52D9D9B5613BEB813F99 # Matti Ranta <matti@mdranta.net> old RSA2048, retrieved from https://github.com/techknowlogick.gpg
B56E3C7437A49E136862F5DE9D8A57ADAA232E95 # Matti Ranta <matti@mdranta.net> new RSA4096, retrieved from https://github.com/techknowlogick.gpg
ED810FD31FBE67F406ED71BDD4F1E9B6493ED946 # Jonas Franz <info@jonasfranz.software>
2020-01-03 13:13:56 +00:00
9C5BCD799B3CDB124147A748E0DDFEC24C48784C # Lauris Bukšis-Haberkorns <lauris@nix.lv>
BA66F67FD73F7058D712D308C3B7C91B632F738A) # Lunny Xiao <xiaolunwen@gmail.com>, retrieved from https://github.com/lunny.gpg
2019-08-03 00:34:22 +00:00
prepare() {
cd ${pkgname}
# Change some defaults for ArchLinux
patch -Np1 -i ../gitea-arch-defaults.patch
2019-08-07 13:41:51 +00:00
# Fetch dependency using go mod
make vendor
2019-08-03 00:34:22 +00:00
}
build() {
2019-08-07 13:41:51 +00:00
cd ${pkgname}
2019-08-03 00:34:22 +00:00
export GOGC=50
make generate
2019-10-17 23:24:45 +00:00
LDFLAGS="-linkmode external -extldflags \"${LDFLAGS}\" -X \"code.gitea.io/gitea/modules/setting.AppWorkPath=/var/lib/gitea/\""
2019-11-25 00:19:31 +00:00
make EXTRA_GOFLAGS="-trimpath" TAGS="bindata sqlite pam" build
2019-08-03 00:34:22 +00:00
}
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
}