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
|
2021-07-20 01:16:00 +00:00
|
|
|
|
# - set nodejs max memory
|
|
|
|
|
# - set go temp dir to /build
|
2019-08-03 00:34:22 +00:00
|
|
|
|
# - don't check repo signature until author puts his keys on keyservers
|
|
|
|
|
|
|
|
|
|
pkgname=gitea
|
2021-10-22 13:25:25 +00:00
|
|
|
|
pkgver=1.15.5
|
2020-10-10 15:54:06 +00:00
|
|
|
|
pkgrel=1
|
2021-07-19 16:53:44 +00:00
|
|
|
|
pkgdesc="Painless self-hosted Git service, community managed."
|
2019-08-03 00:34:22 +00:00
|
|
|
|
arch=(x86_64)
|
|
|
|
|
url="https://gitea.io"
|
|
|
|
|
license=(MIT)
|
|
|
|
|
depends=(git)
|
2020-07-30 01:18:24 +00:00
|
|
|
|
makedepends=(go nodejs npm)
|
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'
|
|
|
|
|
)
|
2021-10-22 13:25:25 +00:00
|
|
|
|
_tag=de013fbff1597c075fbd3fa0cf5eb052524b3102 # 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
|
2021-10-12 00:35:11 +00:00
|
|
|
|
gitea.sysusers)
|
2021-07-19 16:53:44 +00:00
|
|
|
|
sha256sums=(SKIP
|
2021-10-12 00:35:11 +00:00
|
|
|
|
9f63a517e8da6865fa6d9e87f6b08fe25ea56285304115e052809663c48dc3d7
|
|
|
|
|
b16d02a9f32a17cc14dfa46a980bad795a4ed744627e6342248f60236dc2be43
|
|
|
|
|
7e7b798b8ce035c1fb55993ece41c5efb6cad5922708866804fa50ada0cf9fa5)
|
2020-03-28 15:45:03 +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>
|
|
|
|
|
9C5BCD799B3CDB124147A748E0DDFEC24C48784C # Lauris Bukšis-Haberkorns <lauris@nix.lv>
|
|
|
|
|
D8F9672D77C0BB60A024C23EDFDE60A0093EB926 # Lauris Bukšis-Haberkorns <lauris@nix.lv> new RSA4096
|
|
|
|
|
BA66F67FD73F7058D712D308C3B7C91B632F738A # Lunny Xiao <xiaolunwen@gmail.com>, retrieved from https://github.com/lunny.gpg
|
2021-02-06 01:30:36 +00:00
|
|
|
|
B5F0915813554C32C1D599C2C99B82E40B027BAE # '6543' <6543@obermui.de>
|
2021-07-19 16:53:44 +00:00
|
|
|
|
D2CF76DA95F201E9901532AB3CDE74631F13A748 # Andrew Thornton <art27@cantab.net>, retrieved from https://github.com/zeripath.gpg
|
2021-02-06 01:30:36 +00:00
|
|
|
|
)
|
2021-10-12 00:35:11 +00:00
|
|
|
|
install=gitea.install
|
2019-08-03 00:34:22 +00:00
|
|
|
|
|
|
|
|
|
prepare() {
|
|
|
|
|
cd ${pkgname}
|
2019-08-07 13:41:51 +00:00
|
|
|
|
# Fetch dependency using go mod
|
|
|
|
|
make vendor
|
2019-08-03 00:34:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-01 19:37:31 +00:00
|
|
|
|
pkgver() {
|
|
|
|
|
cd ${pkgname}
|
|
|
|
|
git describe --tags | sed 's/^v//'
|
|
|
|
|
}
|
|
|
|
|
|
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
|
2021-07-20 01:16:00 +00:00
|
|
|
|
export NODE_OPTIONS="--max_old_space_size=1536"
|
|
|
|
|
export GOTMPDIR="/build"
|
2020-06-01 22:01:50 +00:00
|
|
|
|
export CGO_CPPFLAGS="${CPPFLAGS}"
|
|
|
|
|
export CGO_CFLAGS="${CFLAGS}"
|
|
|
|
|
export CGO_CXXFLAGS="${CXXFLAGS}"
|
|
|
|
|
export CGO_LDFLAGS="${LDFLAGS}"
|
2020-07-30 01:18:24 +00:00
|
|
|
|
export EXTRA_GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
|
2021-10-12 00:35:11 +00:00
|
|
|
|
export LDFLAGS="-X 'code.gitea.io/gitea/modules/setting.AppWorkPath=/var/lib/gitea/' -X 'code.gitea.io/gitea/modules/setting.CustomConf=/etc/gitea/app.ini'"
|
2020-07-30 01:18:24 +00:00
|
|
|
|
export TAGS="bindata sqlite sqlite_unlock_notify pam"
|
2020-09-05 16:53:05 +00:00
|
|
|
|
make -j1
|
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
|
2021-10-12 00:35:11 +00:00
|
|
|
|
install -D ${pkgname}/custom/conf/app.example.ini -t "${pkgdir}"/etc/gitea/
|
2019-08-03 00:34:22 +00:00
|
|
|
|
}
|