Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/go-etcd: go-etcd-0_p20141013.ebuild ChangeLog
Date: Tue, 24 Feb 2015 23:37:56
Message-Id: 20150224233752.696EE127AE@oystercatcher.gentoo.org
1 zmedico 15/02/24 23:37:52
2
3 Modified: go-etcd-0_p20141013.ebuild ChangeLog
4 Log:
5 Install in src instead of src/pkg for go-1.4. Thanks to William Hubbs <williamh@g.o> for the fix (bug 541284).
6
7 (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 0xAE5719A3)
8
9 Revision Changes Path
10 1.2 dev-db/go-etcd/go-etcd-0_p20141013.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/go-etcd/go-etcd-0_p20141013.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/go-etcd/go-etcd-0_p20141013.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/go-etcd/go-etcd-0_p20141013.ebuild?r1=1.1&r2=1.2
15
16 Index: go-etcd-0_p20141013.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-db/go-etcd/go-etcd-0_p20141013.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- go-etcd-0_p20141013.ebuild 16 Oct 2014 00:13:51 -0000 1.1
23 +++ go-etcd-0_p20141013.ebuild 24 Feb 2015 23:37:52 -0000 1.2
24 @@ -1,6 +1,6 @@
25 -# Copyright 1999-2014 Gentoo Foundation
26 +# Copyright 1999-2015 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-db/go-etcd/go-etcd-0_p20141013.ebuild,v 1.1 2014/10/16 00:13:51 zmedico Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-db/go-etcd/go-etcd-0_p20141013.ebuild,v 1.2 2015/02/24 23:37:52 zmedico Exp $
30
31 EAPI=5
32
33 @@ -9,11 +9,11 @@
34 GO_PN=github.com/coreos/${PN}
35 HOMEPAGE="https://${GO_PN}"
36 EGIT_COMMIT="25e2c63be8e8ab405014a78879e0992ae5ff55e8"
37 -SRC_URI="https://${GO_PN}/archive/${EGIT_COMMIT}.zip -> ${P}.zip"
38 +SRC_URI="https://${GO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
39 LICENSE="Apache-2.0"
40 SLOT="0"
41 IUSE=""
42 -DEPEND=">=dev-lang/go-1.3"
43 +DEPEND=">=dev-lang/go-1.4"
44 RDEPEND=""
45 S=${WORKDIR}
46
47 @@ -27,7 +27,7 @@
48 # Create a filtered GOROOT tree out of symlinks,
49 # excluding go-etcd, for bug #503324.
50 cp -sR /usr/lib/go goroot || die
51 - rm -rf goroot/src/pkg/${GO_PN} || die
52 + rm -rf goroot/src/${GO_PN} || die
53 rm -rf goroot/pkg/linux_${ARCH}/${GO_PN} || die
54 GOROOT=${WORKDIR}/goroot GOPATH=${WORKDIR} \
55 go install -x ${GO_PN}/etcd || die
56 @@ -36,7 +36,7 @@
57 src_install() {
58 insinto /usr/lib/go
59 doins -r pkg
60 - insinto /usr/lib/go/src/pkg
61 + insinto /usr/lib/go/src
62 find src/${GO_PN} -name .gitignore -delete
63 doins -r src/*
64 }
65
66
67
68 1.2 dev-db/go-etcd/ChangeLog
69
70 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/go-etcd/ChangeLog?rev=1.2&view=markup
71 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/go-etcd/ChangeLog?rev=1.2&content-type=text/plain
72 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/go-etcd/ChangeLog?r1=1.1&r2=1.2
73
74 Index: ChangeLog
75 ===================================================================
76 RCS file: /var/cvsroot/gentoo-x86/dev-db/go-etcd/ChangeLog,v
77 retrieving revision 1.1
78 retrieving revision 1.2
79 diff -u -r1.1 -r1.2
80 --- ChangeLog 16 Oct 2014 00:13:51 -0000 1.1
81 +++ ChangeLog 24 Feb 2015 23:37:52 -0000 1.2
82 @@ -1,6 +1,10 @@
83 # ChangeLog for dev-db/go-etcd
84 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
85 -# $Header: /var/cvsroot/gentoo-x86/dev-db/go-etcd/ChangeLog,v 1.1 2014/10/16 00:13:51 zmedico Exp $
86 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
87 +# $Header: /var/cvsroot/gentoo-x86/dev-db/go-etcd/ChangeLog,v 1.2 2015/02/24 23:37:52 zmedico Exp $
88 +
89 + 24 Feb 2015; Zac Medico <zmedico@g.o> go-etcd-0_p20141013.ebuild:
90 + Install in src instead of src/pkg for go-1.4. Thanks to William Hubbs
91 + <williamh@g.o> for the fix (bug 541284).
92
93 *go-etcd-0_p20141013 (16 Oct 2014)