blob: 783e6080a8f5e74acd00239b3c494f4046ec393c (
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
34
35
36
37
38
39
40
41
42
43
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit bash-completion-r1 go-module
DESCRIPTION="Command-line wrapper for git that makes you better at GitHub"
HOMEPAGE="https://github.com/github/hub"
SRC_URI="https://github.com/github/hub/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
BDEPEND="sys-apps/groff"
RDEPEND=">=dev-vcs/git-1.7.3"
src_compile() {
# The eclass setting GOFLAGS at all overrides this default
# in the upstream Makefile. It'll *FALL BACK* to bundled/vendored
# modules but without this, it'll try fetching. On platforms
# without network-sandbox (or relying on it), this is not okay.
export GOFLAGS="${GOFLAGS} -mod=vendor"
emake bin/hub man-pages
}
src_test() {
emake test
}
src_install() {
dobin bin/${PN}
dodoc README.md
doman share/man/man1/*.1
newbashcomp etc/${PN}.bash_completion.sh ${PN}
insinto /usr/share/vim/vimfiles
doins -r share/vim/vimfiles/*
insinto /usr/share/zsh/site-functions
newins etc/hub.zsh_completion _${PN}
}
|