diff options
Diffstat (limited to 'dev-db/etcd/etcd-2.0.10.ebuild')
-rw-r--r-- | dev-db/etcd/etcd-2.0.10.ebuild | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/dev-db/etcd/etcd-2.0.10.ebuild b/dev-db/etcd/etcd-2.0.10.ebuild deleted file mode 100644 index a805bdf41ac6..000000000000 --- a/dev-db/etcd/etcd-2.0.10.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit user systemd - -KEYWORDS="~amd64" -DESCRIPTION="A highly-available key value store for shared configuration and service discovery" -HOMEPAGE="https://github.com/coreos/etcd/" -SRC_URI="https://github.com/coreos/etcd/archive/v${PV}.tar.gz -> ${P}.tar.gz" -LICENSE="Apache-2.0" -SLOT="0" -IUSE="doc" -DEPEND=">=dev-lang/go-1.2" -RDEPEND="!dev-db/etcdctl" - -pkg_setup() { - enewgroup ${PN} - enewuser ${PN} -1 -1 /var/lib/${PN} ${PN} -} - -src_prepare() { - sed -e "s|-ldflags '-s'|-x|" \ - -i build || die -} - -src_compile() { - ./build || die -} - -src_install() { - 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} - 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() { - local x - for x in bin/*; do - ebegin "running ${x##*/} --help" - ${x} --help >/dev/null || die "${x##*/} --help failed" - eend - done -} |