www-apps/gitea: bump to 1.4.0
This commit is contained in:
parent
00c472bc87
commit
29965ff6d7
5 changed files with 111 additions and 0 deletions
2
www-apps/gitea/files/gitea.confd
Normal file
2
www-apps/gitea/files/gitea.confd
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
# arguments for gitea
|
||||
command_args="--config /var/lib/gitea/conf/app.ini"
|
||||
25
www-apps/gitea/files/gitea.initd
Normal file
25
www-apps/gitea/files/gitea.initd
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
#!/sbin/openrc-run
|
||||
# Copyright 2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
description="Gitea, a self-hosted Git service"
|
||||
pidfile=${pidfile:-"/run/${SVCNAME}/${SVCNAME}.pid"}
|
||||
user=${user:-git}
|
||||
group=${group:-git}
|
||||
|
||||
command="/usr/bin/gitea web"
|
||||
command_args="${command_args:--config /var/lib/gitea/conf/app.ini}"
|
||||
command_background="true"
|
||||
start_stop_daemon_args="--user ${user} --group ${group} \
|
||||
-e GITEA_CUSTOM=/var/lib/gitea
|
||||
--stdout /var/log/${SVCNAME}/${SVCNAME}.log \
|
||||
--stderr /var/log/${SVCNAME}/${SVCNAME}.log"
|
||||
|
||||
depend() {
|
||||
need net
|
||||
after net
|
||||
}
|
||||
|
||||
start_pre() {
|
||||
checkpath -d -m 0755 -o "${user}":"${group}" "${pidfile%/*}"
|
||||
}
|
||||
8
www-apps/gitea/files/gitea.logrotated
Normal file
8
www-apps/gitea/files/gitea.logrotated
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
/var/log/gitea/* {
|
||||
su git git
|
||||
missingok
|
||||
size 5M
|
||||
rotate 3
|
||||
compress
|
||||
copytruncate
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue