void-packages/srcpkgs/gitea/template
maxice8 0aab9464d8 gitea: update to 1.5.1.
From gitea changelog (PR numbers from gitea have been stripped):

• SECURITY
  • Don't disclose emails of all users when sending out emails
  • Improve URL validation for external wiki and external issues
  • Make cookies HttpOnly and obey COOKIE_SECURE flag

Closes: #2641 [via git-merge-pr]
2018-09-12 14:00:16 -07:00

52 lines
1.9 KiB
Bash

# Template file for 'gitea'
pkgname=gitea
version=1.5.1
revision=1
build_style=go
go_import_path=code.gitea.io/gitea
# This could be done with build options, but these are built in with the
# following justification.
# * bindata: running with things not all in the binary is not a
# supported distribution format by the gitea upstream developers.
# That mode is only supported for development of gitea within the
# source tree
# * sqlite: this is likely the database that everyone will use. Only
# particularly large installations will want to go through the
# effort of setting up a real database server.
# * pam: PAM allows for authentication to varied external sources.
# Internal authentication supports the local database, OpenID, and
# LDAP, but basic other auth sources such as Kerberos and more
# exotic authenticators require PAM support to be useable.
# * tidb: This is an alternate database engine for users who would
# rather not use SQLite3 for some reason. It is also potentially
# more resiliant to corrupted writes.
go_build_tags="bindata sqlite pam tidb"
hostmakedepends="go-bindata"
makedepends="sqlite-devel pam-devel"
depends="git"
short_desc="Git with a cup of Tea"
maintainer="Michael Aldridge <maldridge@VoidLinux.eu>"
license="MIT"
homepage="https://gitea.io"
changelog="https://github.com/go-gitea/gitea/blob/master/CHANGELOG.md"
distfiles="https://github.com/go-gitea/gitea/archive/v${version}.tar.gz"
checksum=a810fdf79169c1dd4795b64ad41225c44b781e134162925c51a0b7360f1cd095
system_accounts="_gitea"
_gitea_homedir="/var/lib/gitea"
_gitea_shell="/bin/bash" # Proper shell needed for ssh support
make_dirs="/var/lib/gitea 0755 _gitea _gitea
/var/log/gitea 0755 _gitea root"
conf_files="/etc/gitea.conf"
pre_build() {
cd $GOSRCPATH
make generate
cd $wrksrc
}
post_install() {
vlicense LICENSE
vsv gitea
vinstall custom/conf/app.ini.sample 0640 /etc gitea.conf
}