forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dependency of dev-go/fuzzy
- Loading branch information
Showing
3 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST godebug-pretty-0_p20170819.tar.gz 14798 BLAKE2B 356ebacea7049675a5bfb3b84a2449afb05e21c6b8e64825caea27bccfdd2a13077e000ed0a90e0ebb826d6ff5f65d1ef225c4a322c6c1cc9665dd030358d0c2 SHA512 c978c368731a22a8ddf8384ba8fada56ef058bf2bfdeac6743edb1624dfd7b6e73f25772c55ee469c504ab37aad92bf4c9f8d1085bd518d1b62aabea5a1c05cf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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>[email protected]</email> | ||
<name>Aric Belsito</name> | ||
</maintainer> | ||
<maintainer type="project"> | ||
<email>[email protected]</email> | ||
<name>Proxy Maintainers</name> | ||
</maintainer> | ||
</pkgmetadata> |