diff options
author | 2016-10-24 02:25:47 -0700 | |
---|---|---|
committer | 2016-10-24 02:26:36 -0700 | |
commit | d2f7dda83f3b1426fe83256b8da898447c91bbdd (patch) | |
tree | e59b9e4138c60f2b746a7f0b359d289765ab1c3c /dev-db/etcd/etcd-3.0.12.ebuild | |
parent | dev-libs/nspr: Removed old. (diff) | |
download | gentoo-d2f7dda83f3b1426fe83256b8da898447c91bbdd.tar.gz gentoo-d2f7dda83f3b1426fe83256b8da898447c91bbdd.tar.bz2 gentoo-d2f7dda83f3b1426fe83256b8da898447c91bbdd.zip |
dev-db/etcd: version bump to 3.0.12
Package-Manager: portage-2.3.2
Diffstat (limited to 'dev-db/etcd/etcd-3.0.12.ebuild')
-rw-r--r-- | dev-db/etcd/etcd-3.0.12.ebuild | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/dev-db/etcd/etcd-3.0.12.ebuild b/dev-db/etcd/etcd-3.0.12.ebuild new file mode 100644 index 000000000000..90b6f8416380 --- /dev/null +++ b/dev-db/etcd/etcd-3.0.12.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit user systemd golang-vcs-snapshot + +KEYWORDS="~amd64" +EGO_PN=github.com/coreos/etcd/... +DESCRIPTION="A highly-available key value store for shared configuration and service discovery" +HOMEPAGE="https://${EGO_PN%/*}/" +SRC_URI="https://${EGO_PN%/*}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +LICENSE="Apache-2.0" +SLOT="0" +IUSE="doc" +DEPEND=">=dev-lang/go-1.6:=" +RDEPEND="!dev-db/etcdctl" + + +src_prepare() { + eapply_user + sed -e 's|GIT_SHA=.*|GIT_SHA=v${PV}|'\ + -i "${S}"/src/${EGO_PN%/*}/build || die +} + +pkg_setup() { + enewgroup ${PN} + enewuser ${PN} -1 -1 /var/lib/${PN} ${PN} +} + +src_compile() { + export GOPATH=${S} + cd "${S}"/src/${EGO_PN%/*} || die + ./build || die +} + +src_install() { + cd "${S}"/src/${EGO_PN%/*} || die + insinto /etc/${PN} + doins "${FILESDIR}/${PN}.conf" + dobin bin/* + dodoc README.md + use doc && dodoc -r Documentation + systemd_dounit "${FILESDIR}/${PN}.service" + systemd_newtmpfilesd "${FILESDIR}/${PN}.tmpfiles.d.conf" ${PN}.conf + newinitd "${FILESDIR}"/${PN}.initd ${PN} + newconfd "${FILESDIR}"/${PN}.confd ${PN} + insinto /etc/logrotate.d + newins "${FILESDIR}/${PN}.logrotated" "${PN}" + dodir /var/lib/${PN} + fowners ${PN}:${PN} /var/lib/${PN} + fperms 755 /var/lib/${PN} + dodir /var/log/${PN} + fowners ${PN}:${PN} /var/log/${PN} + fperms 755 /var/log/${PN} +} + +src_test() { + cd "${S}"/src/${EGO_PN%/*} || die + ./test || die +} |