From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DC38B139694 for ; Sun, 19 Mar 2017 21:34:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9F7FE21C082; Sun, 19 Mar 2017 21:34:39 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6F50321C082 for ; Sun, 19 Mar 2017 21:34:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C7DFA340BEA for ; Sun, 19 Mar 2017 21:34:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 92E916E06 for ; Sun, 19 Mar 2017 21:34:36 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1489959252.cea04f6dcd302057b96b40b268cd5eb8f0529b63.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/gitea/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apps/gitea/gitea-1.1.0-r1.ebuild X-VCS-Directories: www-apps/gitea/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: cea04f6dcd302057b96b40b268cd5eb8f0529b63 X-VCS-Branch: master Date: Sun, 19 Mar 2017 21:34:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 8e5eeefe-4dbc-4c4d-8cc7-3fc9d7f04750 X-Archives-Hash: 8049898158ac32e06e1236e3074f3841 commit: cea04f6dcd302057b96b40b268cd5eb8f0529b63 Author: Manuel Rüger gentoo org> AuthorDate: Sun Mar 19 21:34:12 2017 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Sun Mar 19 21:34:12 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cea04f6d www-apps/gitea: Fix path in config file Gentoo-Bug: #612698 Package-Manager: Portage-2.3.5, Repoman-2.3.1 www-apps/gitea/gitea-1.1.0-r1.ebuild | 71 ++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) diff --git a/www-apps/gitea/gitea-1.1.0-r1.ebuild b/www-apps/gitea/gitea-1.1.0-r1.ebuild new file mode 100644 index 00000000000..d12fb7c5d05 --- /dev/null +++ b/www-apps/gitea/gitea-1.1.0-r1.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit user golang-build golang-vcs-snapshot + +EGO_PN="code.gitea.io/gitea/..." +GIT_COMMIT="1d65291" +ARCHIVE_URI="https://github.com/go-gitea/gitea/archive/v${PV}.tar.gz -> ${P}.tar.gz" +KEYWORDS="~amd64 ~arm" + +DESCRIPTION="A painless self-hosted Git service, written in Go" +HOMEPAGE="https://github.com/go-gitea/gitea" +SRC_URI="${ARCHIVE_URI}" + +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 + local GITEA_PREFIX=${EPREFIX}/var/lib/gitea + sed -i -e "s/git rev-parse --short HEAD/echo ${GIT_COMMIT}/"\ + -e "s/^LDFLAGS += -X \"main.Version.*$/LDFLAGS += -X \"main.Version=${PV}\"/"\ + -e "s/-ldflags '-s/-ldflags '/" src/${EGO_PN%/*}/Makefile || die + sed -i -e "s#^APP_DATA_PATH = data#APP_DATA_PATH = ${GITEA_PREFIX}/data#"\ + -e "s#^PATH = data/gitea.db#PATH = ${GITEA_PREFIX}/data/gitea.db#"\ + -e "s#^PROVIDER_CONFIG = data/sessions#PROVIDER_CONFIG = ${GITEA_PREFIX}/data/sessions#"\ + -e "s#^AVATAR_UPLOAD_PATH = data/avatars#AVATAR_UPLOAD_PATH = ${GITEA_PREFIX}/data/avatars#"\ + -e "s#^TEMP_PATH = data/tmp/uploads#TEMP_PATH = ${GITEA_PREFIX}/data/tmp/uploads#"\ + -e "s#^PATH = data/attachments#PATH = ${GITEA_PREFIX}/data/attachments#"\ + -e "s#^ROOT_PATH =#ROOT_PATH = ${EPREFIX}/var/log/gitea#"\ + -e "s#^ISSUE_INDEXER_PATH =#ISSUE_INDEXER_PATH = ${GITEA_PREFIX}/indexers/issues.bleve#"\ + src/${EGO_PN%/*}/conf/app.ini || 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 conf/app.ini app.ini.example + popd || die + insinto /etc/logrotate.d + newins "${FILESDIR}"/gitea.logrotated gitea + newinitd "${FILESDIR}"/gitea.initd gitea + newconfd "${FILESDIR}"/gitea.confd gitea + keepdir /var/log/gitea /var/lib/gitea/data + fowners -R git:git /var/log/gitea /var/lib/gitea/ +} + +pkg_postinst() { + if [[ ! -e ${EROOT}/var/lib/gitea/conf/app.ini ]]; then + elog "No app.ini found, copying the example over" + cp "${EROOT}"/var/lib/gitea/conf/app.ini{.example,} || die + else + elog "app.ini found, please check example file for possible changes" + fi +}