diff options
author | Aric Belsito <lluixhi@gmail.com> | 2018-03-28 14:47:42 -0700 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-03-30 20:08:10 +0200 |
commit | e223e4b86ea91c0bc29790315d77ed99dbeb4b4e (patch) | |
tree | 6a7f907ac0a6703599ee768b0ad1093fd506b674 /dev-go | |
parent | app-pda/p3nfs: Remove last-rited package (diff) | |
download | gentoo-e223e4b86ea91c0bc29790315d77ed99dbeb4b4e.tar.gz gentoo-e223e4b86ea91c0bc29790315d77ed99dbeb4b4e.tar.bz2 gentoo-e223e4b86ea91c0bc29790315d77ed99dbeb4b4e.zip |
dev-go/godebug-pretty: new package
dependency of dev-go/fuzzy
Diffstat (limited to 'dev-go')
-rw-r--r-- | dev-go/godebug-pretty/Manifest | 1 | ||||
-rw-r--r-- | dev-go/godebug-pretty/godebug-pretty-0_p20170819.ebuild | 33 | ||||
-rw-r--r-- | dev-go/godebug-pretty/metadata.xml | 12 |
3 files changed, 46 insertions, 0 deletions
diff --git a/dev-go/godebug-pretty/Manifest b/dev-go/godebug-pretty/Manifest new file mode 100644 index 000000000000..e20c2b4c2928 --- /dev/null +++ b/dev-go/godebug-pretty/Manifest @@ -0,0 +1 @@ +DIST godebug-pretty-0_p20170819.tar.gz 14798 BLAKE2B 356ebacea7049675a5bfb3b84a2449afb05e21c6b8e64825caea27bccfdd2a13077e000ed0a90e0ebb826d6ff5f65d1ef225c4a322c6c1cc9665dd030358d0c2 SHA512 c978c368731a22a8ddf8384ba8fada56ef058bf2bfdeac6743edb1624dfd7b6e73f25772c55ee469c504ab37aad92bf4c9f8d1085bd518d1b62aabea5a1c05cf diff --git a/dev-go/godebug-pretty/godebug-pretty-0_p20170819.ebuild b/dev-go/godebug-pretty/godebug-pretty-0_p20170819.ebuild new file mode 100644 index 000000000000..1efc9fa46f2f --- /dev/null +++ b/dev-go/godebug-pretty/godebug-pretty-0_p20170819.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +EGO_PN=github.com/kylelemons/godebug/pretty + +if [[ ${PV} = *9999* ]]; then + inherit golang-vcs +else + KEYWORDS="~amd64" + EGIT_COMMIT=d65d576e9348f5982d7f6d83682b694e731a45c6 + SRC_URI="https://github.com/kylelemons/godebug/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" + inherit golang-vcs-snapshot +fi +inherit golang-build + +DESCRIPTION="Pretty printing for Go" +HOMEPAGE="https://github.com/kylelemons/godebug" +LICENSE="Apache-2.0" +SLOT="0/${PVR}" +RDEPEND="" + +src_unpack() { + EGO_PN="github.com/kylelemons/godebug" golang-vcs-snapshot_src_unpack +} + +src_install() { + golang-build_src_install + + pushd "src/${EGO_PN}" >/dev/null || die + einstalldocs + popd >/dev/null || die +} diff --git a/dev-go/godebug-pretty/metadata.xml b/dev-go/godebug-pretty/metadata.xml new file mode 100644 index 000000000000..004ae50f4a5f --- /dev/null +++ b/dev-go/godebug-pretty/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person" > + <email>lluixhi@gmail.com</email> + <name>Aric Belsito</name> + </maintainer> + <maintainer type="project"> + <email>proxy-maint@gentoo.org</email> + <name>Proxy Maintainers</name> + </maintainer> +</pkgmetadata> |