Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/gitea/
Date: Sun, 05 Aug 2018 13:38:48
Message-Id: 1533476284.341385843b99f3f930616290046370c19cea1110.mrueg@gentoo
1 commit: 341385843b99f3f930616290046370c19cea1110
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 5 13:38:04 2018 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 5 13:38:04 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34138584
7
8 www-apps/gitea: Version bump to 1.4.3
9
10 Closes: https://bugs.gentoo.org/661420
11 Package-Manager: Portage-2.3.44, Repoman-2.3.10
12
13 www-apps/gitea/Manifest | 1 +
14 www-apps/gitea/gitea-1.4.3.ebuild | 61 +++++++++++++++++++++++++++++++++++++++
15 2 files changed, 62 insertions(+)
16
17 diff --git a/www-apps/gitea/Manifest b/www-apps/gitea/Manifest
18 index 2359161d3fc..0cc62b2e77a 100644
19 --- a/www-apps/gitea/Manifest
20 +++ b/www-apps/gitea/Manifest
21 @@ -1 +1,2 @@
22 DIST gitea-1.4.1.tar.gz 14978598 BLAKE2B 8fde79291b745750e79c944e7fcf938d2476ddaa386c1277f54bf315831eeb749507e270ca0a8a8351dd8fa60656bb98eb7c478a5c99f2ac20d350b6054339d5 SHA512 3b812bd61215230035ec9241e953f239981d04580d931f379aa550e11d2f7facd56bf70ac9e2d866224d341570a238bcc5c2fa71fd1432cfb95b8c8b703784e6
23 +DIST gitea-1.4.3.tar.gz 14985783 BLAKE2B d2f141a036406c92e7900ce073066ff5024f308c24a2705eb5da229c48a1b6c772d3148222aafd5c0d6608830670badb2a102149f58a134cc32b5175e1ae306e SHA512 24498b418b9ddb14da5568a206e1fa0831c5789e0b64207f413c3b86e2a855052f7af80d3cb80549eaae6944e22af271c00f6308c66487c3be0dccf55a17976a
24
25 diff --git a/www-apps/gitea/gitea-1.4.3.ebuild b/www-apps/gitea/gitea-1.4.3.ebuild
26 new file mode 100644
27 index 00000000000..41abc1c912b
28 --- /dev/null
29 +++ b/www-apps/gitea/gitea-1.4.3.ebuild
30 @@ -0,0 +1,61 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +inherit user systemd golang-build golang-vcs-snapshot
36 +
37 +EGO_PN="code.gitea.io/gitea"
38 +KEYWORDS="~amd64 ~arm"
39 +
40 +DESCRIPTION="A painless self-hosted Git service, written in Go"
41 +HOMEPAGE="https://github.com/go-gitea/gitea"
42 +SRC_URI="https://github.com/go-gitea/gitea/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +IUSE=""
47 +
48 +DEPEND="dev-go/go-bindata"
49 +RDEPEND="dev-vcs/git"
50 +
51 +pkg_setup() {
52 + enewgroup git
53 + enewuser git -1 /bin/bash /var/lib/gitea git
54 +}
55 +
56 +src_prepare() {
57 + default
58 + sed -i -e "s/\"main.Version.*$/\"main.Version=${PV}\"/"\
59 + -e "s/-ldflags '-s/-ldflags '/" src/${EGO_PN}/Makefile || die
60 +}
61 +
62 +src_compile() {
63 + GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" emake -C src/${EGO_PN} generate
64 + TAGS="bindata pam sqlite" LDFLAGS="" CGO_LDFLAGS="-fno-PIC" GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" emake -C src/${EGO_PN} build
65 +}
66 +
67 +src_install() {
68 + pushd src/${EGO_PN} || die
69 + dobin gitea
70 + insinto /var/lib/gitea/conf
71 + newins custom/conf/app.ini.sample app.ini.example
72 + popd || die
73 + newinitd "${FILESDIR}"/gitea.initd-r1 gitea
74 + newconfd "${FILESDIR}"/gitea.confd gitea
75 + keepdir /var/log/gitea /var/lib/gitea/data
76 + fowners -R git:git /var/log/gitea /var/lib/gitea/
77 + systemd_dounit "${FILESDIR}/gitea.service"
78 +}
79 +
80 +pkg_postinst() {
81 + if [[ ! -e "${EROOT}/var/lib/gitea/conf/app.ini" ]]; then
82 + elog "No app.ini found, copying initial config over"
83 + cp "${FILESDIR}"/app.ini "${EROOT}"/var/lib/gitea/conf/ || die
84 + chown git:git /var/lib/gitea/conf/app.ini
85 + else
86 + elog "app.ini found, please check example file for possible changes"
87 + ewarn "Please note that environment variables have been changed:"
88 + ewarn "GITEA_WORK_DIR is set to /var/lib/gitea (previous value: unset)"
89 + ewarn "GITEA_CUSTOM is set to '\$GITEA_WORK_DIR/custom' (previous: /var/lib/gitea)"
90 + fi
91 +}