diff options
author | Zac Medico <zmedico@gentoo.org> | 2016-02-11 01:22:55 -0800 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2016-02-11 01:25:02 -0800 |
commit | cc180f4e8a629f1a0ee47e95a5d2c1c87c821028 (patch) | |
tree | b22cfc8f78c073385e15fb232122340491e65df8 /dev-go | |
parent | ros-meta/mavros: Bump to 0.17.0. (diff) | |
download | gentoo-cc180f4e8a629f1a0ee47e95a5d2c1c87c821028.tar.gz gentoo-cc180f4e8a629f1a0ee47e95a5d2c1c87c821028.tar.bz2 gentoo-cc180f4e8a629f1a0ee47e95a5d2c1c87c821028.zip |
dev-go/go-tour: new package
Package-Manager: portage-2.2.27
Diffstat (limited to 'dev-go')
-rw-r--r-- | dev-go/go-tour/Manifest | 1 | ||||
-rw-r--r-- | dev-go/go-tour/go-tour-0_p20160209.ebuild | 36 | ||||
-rw-r--r-- | dev-go/go-tour/metadata.xml | 10 |
3 files changed, 47 insertions, 0 deletions
diff --git a/dev-go/go-tour/Manifest b/dev-go/go-tour/Manifest new file mode 100644 index 000000000000..1b11d3fc9e7b --- /dev/null +++ b/dev-go/go-tour/Manifest @@ -0,0 +1 @@ +DIST go-tour-0_p20160209.tar.gz 275272 SHA256 f50ce5a75f1dd9d625830c0907a5b611455b052ed1e287f5d2f9428759e14223 SHA512 bc9131e6173f72ea01c3062454a47a90301ad01bc1ea356ef09b81ad2d887759671ee9700f2c6b47821fc02c49297b8797d732ae0e9b414205e483d30579d2e9 WHIRLPOOL a2e117e2f50c83013604e85fb03919a25eacc1494dce9c53929d6bcbb22367d88f7b073d292261909767c91fda8f5a10380f452938ac3bba78c5939634206e9c diff --git a/dev-go/go-tour/go-tour-0_p20160209.ebuild b/dev-go/go-tour/go-tour-0_p20160209.ebuild new file mode 100644 index 000000000000..10593aa2de16 --- /dev/null +++ b/dev-go/go-tour/go-tour-0_p20160209.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +EGO_PN="golang.org/x/tour/..." + +EGIT_COMMIT="6b2e5b35ce8ed092eaedc3d2a2294373a639f122" +ARCHIVE_URI="https://github.com/golang/tour/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" +KEYWORDS="~amd64" +inherit golang-vcs-snapshot golang-build + +DESCRIPTION="A Tour of Go" +HOMEPAGE="https://tour.golang.org" +SRC_URI="${ARCHIVE_URI}" +LICENSE="BSD" +SLOT="0" +IUSE="" + +src_compile() { + # Create a writable GOROOT in order to avoid sandbox violations. + cp -sR "$(go env GOROOT)" "${T}/goroot" || die + rm -rf "${T}/goroot/src/${EGO_PN%/*}" || die + GOROOT="${T}/goroot" GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" \ + go build -v -work -x ${EGO_BUILD_FLAGS} "${EGO_PN}" + [[ -x $(find "${T}" -name a.out) ]] || die "a.out not found" +} + +src_install() { + GOROOT="${T}/goroot" GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" \ + go install -v -work -x ${EGO_BUILD_FLAGS} "${EGO_PN}" + exeinto "$(go env GOTOOLDIR)" + newexe bin/gotour tour + insinto "$(go env GOROOT)" + doins -r src +} diff --git a/dev-go/go-tour/metadata.xml b/dev-go/go-tour/metadata.xml new file mode 100644 index 000000000000..46777271d39c --- /dev/null +++ b/dev-go/go-tour/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>zmedico@gentoo.org</email> + </maintainer> + <upstream> + <remote-id type="github">golang/tour</remote-id> + </upstream> +</pkgmetadata> |