summaryrefslogtreecommitdiff
blob: 1efc9fa46f2f9246d5a716d582e95f11af4c0d9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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
}