williamh    15/07/07 23:56:33

  Modified:             ChangeLog
  Added:                etcd-2.0.10-r1.ebuild
  Log:
  Rev bump for slot dependency on Go
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0x30C46538)

Revision  Changes    Path
1.5                  dev-db/etcd/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/etcd/ChangeLog?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/etcd/ChangeLog?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/etcd/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/etcd/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   6 Jun 2015 09:50:35 -0000       1.4
+++ ChangeLog   7 Jul 2015 23:56:33 -0000       1.5
@@ -1,6 +1,11 @@
 # ChangeLog for dev-db/etcd
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/etcd/ChangeLog,v 1.4 2015/06/06 
09:50:35 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/etcd/ChangeLog,v 1.5 2015/07/07 
23:56:33 williamh Exp $
+
+*etcd-2.0.10-r1 (07 Jul 2015)
+
+  07 Jul 2015; William Hubbs <willi...@gentoo.org> +etcd-2.0.10-r1.ebuild:
+  Rev bump for slot dependency on Go
 
   06 Jun 2015; Justin Lecher <j...@gentoo.org> metadata.xml:
   Add github to remote-id in metadata.xml



1.1                  dev-db/etcd/etcd-2.0.10-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/etcd/etcd-2.0.10-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/etcd/etcd-2.0.10-r1.ebuild?rev=1.1&content-type=text/plain

Index: etcd-2.0.10-r1.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/etcd/etcd-2.0.10-r1.ebuild,v 1.1 
2015/07/07 23:56:33 williamh Exp $

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
}




Reply via email to