dev-go/go-bindata: bump to 1.0.0
authorTomas Mozes <hydrapolic@gmail.com>
Sun, 17 Mar 2019 17:45:42 +0000 (17:45 +0000)
committerMichał Górny <mgorny@gentoo.org>
Sun, 21 Apr 2019 21:46:47 +0000 (23:46 +0200)
Closes: https://bugs.gentoo.org/676102
Closes: https://bugs.gentoo.org/680734
Signed-off-by: Tomáš Mózes <hydrapolic@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11394
Signed-off-by: Michał Górny <mgorny@gentoo.org>
dev-go/go-bindata/Manifest
dev-go/go-bindata/go-bindata-1.0.0.ebuild [new file with mode: 0644]

index dd9b00df1178b93b5b3cb4ef82eaeca47c175d01..0518ea6e8e41f8933d03390de38262eb5493d791 100644 (file)
@@ -1 +1,2 @@
 DIST go-bindata-0_pre20151023.tar.gz 17860 BLAKE2B 281a4ccbac82af31017728dd309cc32852a959cbe4e468bb2cf7e05266de748a22d062d8863350caaa713a28efb3c0dc7543abcf1fd1812543364ed6ff166c65 SHA512 ed1d2fd1c5a833b6efdc731eb43f72fc072a701c447a926ad6c1f9be3c0f1ed92c689639d02a288230a49d53795f41092deab132389871a5b9f79abdc525fc43
+DIST go-bindata-1.0.0.tar.gz 17871 BLAKE2B d461d863f099c705dbee5d32b188f1fde369c6e7497dfb8a1434d54f1c7bbf462357956960671f85813ce63fe1a3744578fa7a474362149aa115ac7c36a22fc8 SHA512 e6b46f80e39ad5463d67289fcae102eb7c18e8390daee99e495a94c97ed35df390dbfa6a36e11f43663ce38f05cafafdb5b3dd2896885fab7fd1f33e865d82a4
diff --git a/dev-go/go-bindata/go-bindata-1.0.0.ebuild b/dev-go/go-bindata/go-bindata-1.0.0.ebuild
new file mode 100644 (file)
index 0000000..3245756
--- /dev/null
@@ -0,0 +1,20 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit golang-build golang-vcs-snapshot
+
+EGO_PN="github.com/go-bindata/go-bindata/..."
+KEYWORDS="~amd64 ~arm"
+
+DESCRIPTION="A small utility which generates Go code from any file"
+HOMEPAGE="https://github.com/go-bindata/go-bindata"
+SRC_URI="https://github.com/go-bindata/go-bindata/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+LICENSE="CC-PD"
+SLOT="0/${PVR}"
+
+src_install() {
+       GOBIN=${S}/bin \
+               golang-build_src_install
+       dobin bin/*
+}