dev-util/envman: new ebuild, version 1.2.0
authorKarol Wrótniak <karol.wrotniak@droidsonroids.pl>
Sun, 15 Jul 2018 15:30:30 +0000 (17:30 +0200)
committerTony Vroon <chainsaw@gentoo.org>
Tue, 17 Jul 2018 16:24:45 +0000 (17:24 +0100)
Closes: https://github.com/gentoo/gentoo/pull/9236
Closes: https://bugs.gentoo.org/661248
Closes: https://bugs.gentoo.org/657710

dev-util/envman/Manifest [new file with mode: 0644]
dev-util/envman/envman-1.2.0.ebuild [new file with mode: 0644]
dev-util/envman/metadata.xml [new file with mode: 0644]

diff --git a/dev-util/envman/Manifest b/dev-util/envman/Manifest
new file mode 100644 (file)
index 0000000..e4ecaa9
--- /dev/null
@@ -0,0 +1 @@
+DIST envman-1.2.0.tar.gz 2997860 BLAKE2B e49d3b421fb1ab226de4430e90d8c684bc3a2554205c6383a140c0832134eaba338797dca44668fc2473d248940b5499395ab3a6d3359382305fd8a719772257 SHA512 5245aea8c280a6d6022e8132216891f09abee707c0ed736bfe6b4882aa23880a771dce5371b8ba5fcdd41fa951606727e7582442d897058b25985cf9dd5a9d18
diff --git a/dev-util/envman/envman-1.2.0.ebuild b/dev-util/envman/envman-1.2.0.ebuild
new file mode 100644 (file)
index 0000000..6713bc5
--- /dev/null
@@ -0,0 +1,38 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit golang-build
+
+EGO_ON="github.com/bitrise-io"
+EGO_PN="${EGO_ON}/${PN}"
+
+DESCRIPTION="Environment variable manager for Bitrise CLI."
+HOMEPAGE="https://www.bitrise.io/cli"
+SRC_URI="https://${EGO_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+S="${WORKDIR}/src/${EGO_ON}/${PN}"
+
+src_unpack() {
+       unpack ${A}
+       mkdir -p "${WORKDIR}/src/${EGO_ON}" || die "Couldn't create project dir in GOPATH"
+       mv "${WORKDIR}/${P}" "${WORKDIR}/src/${EGO_ON}/envman" || die "Couldn't move sources to GOPATH"
+}
+
+src_compile() {
+       GOPATH="${WORKDIR}" go build -v -o bin/envman || die "Couldn't compile envman"
+}
+
+src_test() {
+       GOPATH="${WORKDIR}" go test ./... || die "Tests failed"
+}
+
+src_install() {
+       dobin bin/envman
+       dodoc README.md
+}
diff --git a/dev-util/envman/metadata.xml b/dev-util/envman/metadata.xml
new file mode 100644 (file)
index 0000000..c93a133
--- /dev/null
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+       <maintainer type="person">
+               <email>karol.wrotniak@droidsonroids.pl</email>
+               <name>Karol Wrótniak</name>
+       </maintainer>
+       <maintainer type="project">
+               <email>proxy-maint@gentoo.org</email>
+               <name>Proxy Maintainers</name>
+       </maintainer>
+       <longdescription>Environment variable manager for Bitrise CLI. Part of the Bitrise Continuous Integration, Delivery and Automations Stack, with stepman and bitrise. For a nice &amp; quick intro you should check: https://www.bitrise.io/cli</longdescription>
+       <upstream>
+               <bugs-to>https://github.com/bitrise-io/envman/issues</bugs-to>
+               <changelog>https://github.com/bitrise-io/envman/blob/master/CHANGELOG.md</changelog>
+               <doc>https://github.com/bitrise-io/envman/blob/master/README.md</doc>
+               <remote-id type="github">bitriseio/envman</remote-id>
+       </upstream>
+</pkgmetadata>