www-apps/gitea: Version bump to 1.4.1
authorStefan G. Weichinger <office@oops.co.at>
Sat, 2 Jun 2018 12:05:50 +0000 (14:05 +0200)
committerManuel Rüger <mrueg@gentoo.org>
Sat, 2 Jun 2018 12:06:20 +0000 (14:06 +0200)
Package-Manager: Portage-2.3.40, Repoman-2.3.9

www-apps/gitea/Manifest
www-apps/gitea/files/app.ini [new file with mode: 0644]
www-apps/gitea/files/gitea.initd
www-apps/gitea/files/gitea.initd-r1 [new file with mode: 0644]
www-apps/gitea/files/gitea.service [new file with mode: 0644]
www-apps/gitea/gitea-1.4.1.ebuild [new file with mode: 0644]

index 0d035e17496dbe2ad94c82977c6b84607232090f..a8618bdacce5eb1a6568d17512e362d6ad64c6ee 100644 (file)
@@ -1,3 +1,4 @@
 DIST gitea-1.2.3.tar.gz 14336812 BLAKE2B 9c0d1aed458cb2accaf6138f949a6f49b470ae32b75dd921b88cac93cfc61c361791270541fbeae9ecc300b8266abcc1d0b677514536d0697c5a2952b74af18e SHA512 b519bb2fae20da75444a9cb971ab1db0aed04261c6522464feb2e0bad28bc5b8fff3ce8a85f8d26e9cfe79b41c29e540b3ff0aa0c3e99ce90e9e9a1ec26a165e
 DIST gitea-1.3.0.tar.gz 14780025 BLAKE2B a290bf1583a741cfee5ff69c7997114d802643dc0b213a41bbac08713201ce05192d9ad4d7b33639ae173b79d3c5dbd154b7fd753a744ec64550df4786fdc5a2 SHA512 51cfcb53a039ce8c7995748bd54ea34b88b404de35ef6c9c5742b220fee814fe81670634aa272bbd0002431e70e757b0e460d159e41b7378c93cd5aa820d45f4
 DIST gitea-1.3.1.tar.gz 14783710 BLAKE2B 20e333719aa1a670488046406dc942fd843fcb2ea92473006e255a6a8f2f00709bf87443a425302d0c73916260a5d2e7876e00233a3e1ceb657439ac3d7a4873 SHA512 45161e089d5437b5aacc9589a50a61da3a8f4c88edb33fe3605eb49f36f67cb0a8a80f261016745a6c5131755f7963b1b61df62e47aab2bcd43a6932dceadd0f
+DIST gitea-1.4.1.tar.gz 14978598 BLAKE2B 8fde79291b745750e79c944e7fcf938d2476ddaa386c1277f54bf315831eeb749507e270ca0a8a8351dd8fa60656bb98eb7c478a5c99f2ac20d350b6054339d5 SHA512 3b812bd61215230035ec9241e953f239981d04580d931f379aa550e11d2f7facd56bf70ac9e2d866224d341570a238bcc5c2fa71fd1432cfb95b8c8b703784e6
diff --git a/www-apps/gitea/files/app.ini b/www-apps/gitea/files/app.ini
new file mode 100644 (file)
index 0000000..5dd998f
--- /dev/null
@@ -0,0 +1,4 @@
+[log]
+MODE      = file
+LEVEL     = Info
+ROOT_PATH = /var/log/gitea
index ea618140c5806ab2c0e55057a5a0a3e94201b1fe..837164aa01409de9574cd3824c290f042e2743f3 100644 (file)
@@ -1,5 +1,5 @@
 #!/sbin/openrc-run
-# Copyright 2016 Gentoo Foundation
+# Copyright 2016-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 description="Gitea, a self-hosted Git service"
@@ -11,7 +11,7 @@ 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
+       -e GITEA_WORK_DIR=/var/lib/gitea
        --stdout /var/log/${SVCNAME}/${SVCNAME}.log \
        --stderr /var/log/${SVCNAME}/${SVCNAME}.log"
 
diff --git a/www-apps/gitea/files/gitea.initd-r1 b/www-apps/gitea/files/gitea.initd-r1
new file mode 100644 (file)
index 0000000..837164a
--- /dev/null
@@ -0,0 +1,25 @@
+#!/sbin/openrc-run
+# Copyright 2016-2018 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_WORK_DIR=/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%/*}"
+}
diff --git a/www-apps/gitea/files/gitea.service b/www-apps/gitea/files/gitea.service
new file mode 100644 (file)
index 0000000..3fdbc1f
--- /dev/null
@@ -0,0 +1,26 @@
+[Unit]
+Description=Gitea service
+Documentation=https://gitea.io
+
+AssertPathIsDirectory=/var/lib/gitea
+AssertPathIsReadWrite=/var/lib/gitea
+
+After=network.target
+Requires=network.target
+After=mysqld.service
+Requires=mysqld.service
+
+[Service]
+User=git
+Group=git
+
+Environment="GITEA_CUSTOM=/var/lib/gitea"
+WorkingDirectory=/var/lib/gitea
+ExecStart=/usr/bin/gitea web -c /var/lib/gitea/conf/app.ini
+
+Restart=always
+PrivateTmp=true
+Nice=5
+
+[Install]
+WantedBy=multi-user.target
diff --git a/www-apps/gitea/gitea-1.4.1.ebuild b/www-apps/gitea/gitea-1.4.1.ebuild
new file mode 100644 (file)
index 0000000..41abc1c
--- /dev/null
@@ -0,0 +1,61 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit user systemd golang-build golang-vcs-snapshot
+
+EGO_PN="code.gitea.io/gitea"
+KEYWORDS="~amd64 ~arm"
+
+DESCRIPTION="A painless self-hosted Git service, written in Go"
+HOMEPAGE="https://github.com/go-gitea/gitea"
+SRC_URI="https://github.com/go-gitea/gitea/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE=""
+
+DEPEND="dev-go/go-bindata"
+RDEPEND="dev-vcs/git"
+
+pkg_setup() {
+       enewgroup git
+       enewuser git -1 /bin/bash /var/lib/gitea git
+}
+
+src_prepare() {
+       default
+       sed -i -e "s/\"main.Version.*$/\"main.Version=${PV}\"/"\
+               -e "s/-ldflags '-s/-ldflags '/" src/${EGO_PN}/Makefile || die
+}
+
+src_compile() {
+       GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" emake -C src/${EGO_PN} generate
+       TAGS="bindata pam sqlite" LDFLAGS="" CGO_LDFLAGS="-fno-PIC" GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" emake -C src/${EGO_PN} build
+}
+
+src_install() {
+       pushd src/${EGO_PN} || die
+       dobin gitea
+       insinto /var/lib/gitea/conf
+       newins custom/conf/app.ini.sample app.ini.example
+       popd || die
+       newinitd "${FILESDIR}"/gitea.initd-r1 gitea
+       newconfd "${FILESDIR}"/gitea.confd gitea
+       keepdir /var/log/gitea /var/lib/gitea/data
+       fowners -R git:git /var/log/gitea /var/lib/gitea/
+       systemd_dounit "${FILESDIR}/gitea.service"
+}
+
+pkg_postinst() {
+       if [[ ! -e "${EROOT}/var/lib/gitea/conf/app.ini" ]]; then
+               elog "No app.ini found, copying initial config over"
+               cp "${FILESDIR}"/app.ini "${EROOT}"/var/lib/gitea/conf/ || die
+               chown git:git /var/lib/gitea/conf/app.ini
+       else
+               elog "app.ini found, please check example file for possible changes"
+               ewarn "Please note that environment variables have been changed:"
+               ewarn "GITEA_WORK_DIR is set to /var/lib/gitea (previous value: unset)"
+               ewarn "GITEA_CUSTOM is set to '\$GITEA_WORK_DIR/custom' (previous: /var/lib/gitea)"
+       fi
+}