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-sqlite3/
Date: Wed, 28 Aug 2019 18:10:40
Message-Id: 1567015803.138b19df324e41ea67f8621305c67a0dee08a5fe.zmedico@gentoo
1 commit: 138b19df324e41ea67f8621305c67a0dee08a5fe
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 28 18:10:03 2019 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 28 18:10:03 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=138b19df
7
8 dev-go/go-sqlite3: fix double prefix found by Gentoo CI
9
10 Package-Manager: Portage-2.3.73, Repoman-2.3.17
11 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
12
13 dev-go/go-sqlite3/go-sqlite3-1.1.0_p20160307.ebuild | 6 +++---
14 1 file changed, 3 insertions(+), 3 deletions(-)
15
16 diff --git a/dev-go/go-sqlite3/go-sqlite3-1.1.0_p20160307.ebuild b/dev-go/go-sqlite3/go-sqlite3-1.1.0_p20160307.ebuild
17 index 9779c6f59d3..968a518d021 100644
18 --- a/dev-go/go-sqlite3/go-sqlite3-1.1.0_p20160307.ebuild
19 +++ b/dev-go/go-sqlite3/go-sqlite3-1.1.0_p20160307.ebuild
20 @@ -1,4 +1,4 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 +# Copyright 1999-2019 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=5
26 @@ -26,9 +26,9 @@ src_install() {
27 }
28
29 golang_install_pkgs() {
30 - insinto $(dirname "${EPREFIX}$(get_golibdir)/src/${EGO_PN%/*}")
31 + insinto $(dirname "$(get_golibdir)/src/${EGO_PN%/*}")
32 rm -rf "${S}"/src/${EGO_PN%/*}/.git*
33 doins -r "${S}"/src/${EGO_PN%/*}
34 - insinto $(dirname "${EPREFIX}$(get_golibdir)/pkg/$(go env GOOS)_$(go env GOARCH)/${EGO_PN%/*}")
35 + insinto $(dirname "$(get_golibdir)/pkg/$(go env GOOS)_$(go env GOARCH)/${EGO_PN%/*}")
36 doins -r "${S}"/pkg/$(go env GOOS)_$(go env GOARCH)/${EGO_PN%/*}{,.a}
37 }