diff options
author | Tomas Mozes <hydrapolic@gmail.com> | 2019-03-17 17:45:42 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-04-21 23:46:47 +0200 |
commit | dc42056c42208a2f90d28dc9ca95c79a6b9dcf28 (patch) | |
tree | 9b262c5f2acaca4bebbe7485f4699b73f528aaa0 /dev-go | |
parent | www-apps/gitea: bump to 1.7.6 (diff) | |
download | gentoo-dc42056c42208a2f90d28dc9ca95c79a6b9dcf28.tar.gz gentoo-dc42056c42208a2f90d28dc9ca95c79a6b9dcf28.tar.bz2 gentoo-dc42056c42208a2f90d28dc9ca95c79a6b9dcf28.zip |
dev-go/go-bindata: bump to 1.0.0
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>
Diffstat (limited to 'dev-go')
-rw-r--r-- | dev-go/go-bindata/Manifest | 1 | ||||
-rw-r--r-- | dev-go/go-bindata/go-bindata-1.0.0.ebuild | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/dev-go/go-bindata/Manifest b/dev-go/go-bindata/Manifest index dd9b00df1178..0518ea6e8e41 100644 --- a/dev-go/go-bindata/Manifest +++ b/dev-go/go-bindata/Manifest @@ -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 index 000000000000..32457564b82b --- /dev/null +++ b/dev-go/go-bindata/go-bindata-1.0.0.ebuild @@ -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/* +} |