diff options
author | Zac Medico <zmedico@gentoo.org> | 2016-03-09 00:13:30 -0800 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2016-03-09 00:15:26 -0800 |
commit | 7469bbd44a5da4663b0c65cddc5ce4211c0169ad (patch) | |
tree | 13e85c1230c5c9778bb70968d39df61300047ba8 /dev-go/go-sqlite3/go-sqlite3-1.1.0_p20160307.ebuild | |
parent | net-analyzer/traceroute: Removed old. (diff) | |
download | gentoo-7469bbd44a5da4663b0c65cddc5ce4211c0169ad.tar.gz gentoo-7469bbd44a5da4663b0c65cddc5ce4211c0169ad.tar.bz2 gentoo-7469bbd44a5da4663b0c65cddc5ce4211c0169ad.zip |
dev-go/go-sqlite3: version bump to 1.1.0_p20160307
Package-Manager: portage-2.2.27
Diffstat (limited to 'dev-go/go-sqlite3/go-sqlite3-1.1.0_p20160307.ebuild')
-rw-r--r-- | dev-go/go-sqlite3/go-sqlite3-1.1.0_p20160307.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
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 new file mode 100644 index 000000000000..ce8b8f812162 --- /dev/null +++ b/dev-go/go-sqlite3/go-sqlite3-1.1.0_p20160307.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit golang-build golang-vcs-snapshot + +EGO_PN="github.com/mattn/go-sqlite3/..." +EGIT_COMMIT="10876d7dac65f02064c03d7372a2f1dfb90043fe" +ARCHIVE_URI="https://${EGO_PN%/*}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" +KEYWORDS="~amd64" + +DESCRIPTION="Go sqlite3 driver using database/sql" +HOMEPAGE="https://${EGO_PN%/*}" +SRC_URI="${ARCHIVE_URI}" +LICENSE="MIT" +SLOT="0/${PVR}" +IUSE="" + +src_compile() { + GOPATH="${S}" \ + go install -v -work -x ${EGO_BUILD_FLAGS} "${EGO_PN}" || die +} + +src_install() { + golang_install_pkgs +} + +golang_install_pkgs() { + insinto $(dirname "${EPREFIX}$(get_golibdir)/src/${EGO_PN%/*}") + rm -rf "${S}"/src/${EGO_PN%/*}/.git* + doins -r "${S}"/src/${EGO_PN%/*} + insinto $(dirname "${EPREFIX}$(get_golibdir)/pkg/$(go env GOOS)_$(go env GOARCH)/${EGO_PN%/*}") + doins -r "${S}"/pkg/$(go env GOOS)_$(go env GOARCH)/${EGO_PN%/*}{,.a} +} |