Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-go/go-tools/
Date: Fri, 29 Jan 2016 23:16:25
Message-Id: 1454109270.92c2722eb39e1efb28da17e262e892380da93292.zmedico@gentoo
1 commit: 92c2722eb39e1efb28da17e262e892380da93292
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 29 23:14:30 2016 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 29 23:14:30 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92c2722e
7
8 dev-go/go-tools: fix tipgodoc
9
10 Package-Manager: portage-2.2.27
11
12 dev-go/go-tools/go-tools-0_pre20160121.ebuild | 9 ---------
13 1 file changed, 9 deletions(-)
14
15 diff --git a/dev-go/go-tools/go-tools-0_pre20160121.ebuild b/dev-go/go-tools/go-tools-0_pre20160121.ebuild
16 index 381504a..3926e88 100644
17 --- a/dev-go/go-tools/go-tools-0_pre20160121.ebuild
18 +++ b/dev-go/go-tools/go-tools-0_pre20160121.ebuild
19 @@ -99,15 +99,6 @@ src_install() {
20 # bug 558818: install binaries in $GOROOT/bin to avoid file collisions
21 exeinto "$(go env GOROOT)/bin"
22 doexe bin/* "${T}/goroot/bin/godoc"
23 - # Since tipgodoc has been known to be installed in either
24 - # GOROOT or GOPATH, handle either case (bug 572650). It likely
25 - # depends on what is currently installed, as is often the case
26 - # for weird issues like this with go.
27 - if [[ -e ${T}/gopath/bin/tipgodoc ]]; then
28 - doexe "${T}/gopath/bin/tipgodoc"
29 - else
30 - doexe "${T}/goroot/bin/tipgodoc"
31 - fi
32 dodir /usr/bin
33 ln "${ED}$(go env GOROOT)/bin/godoc" "${ED}usr/bin/godoc" || die