summaryrefslogtreecommitdiff
path: root/dev-util/git-delta/git-delta-0.8.3.ebuild
blob: 022dc85362146270148611d6d43c54d342c11701 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

CRATES="
adler-0.2.3
aho-corasick-0.7.15
ansi_colours-1.0.4
ansi_term-0.11.0
ansi_term-0.12.1
arrayvec-0.5.2
atty-0.2.14
autocfg-1.0.1
base64-0.13.0
bincode-1.3.1
bitflags-1.2.1
box_drawing-0.1.2
bstr-0.2.15
bytelines-2.2.2
byteorder-1.3.4
cc-1.0.66
cfg-if-0.1.10
cfg-if-1.0.0
chrono-0.4.19
clap-2.33.3
console-0.14.1
crc32fast-1.2.1
dirs-next-2.0.0
dirs-sys-next-0.1.1
either-1.6.1
encode_unicode-0.3.6
error-chain-0.12.4
flate2-1.0.19
fnv-1.0.7
form_urlencoded-1.0.0
getrandom-0.1.16
git2-0.13.20
globset-0.4.8
grep-cli-0.1.6
hashbrown-0.8.2
heck-0.3.2
hermit-abi-0.1.17
idna-0.2.0
indexmap-1.5.2
itertools-0.10.1
itoa-0.4.7
jobserver-0.1.21
lazycell-1.3.0
lazy_static-1.4.0
libc-0.2.81
libgit2-sys-0.12.21+1.1.0
libz-sys-1.1.2
line-wrap-0.1.1
linked-hash-map-0.5.3
log-0.4.11
matches-0.1.8
memchr-2.3.4
miniz_oxide-0.4.3
num-integer-0.1.44
num-traits-0.2.14
onig-6.1.1
onig_sys-69.6.0
pathdiff-0.2.0
percent-encoding-2.1.0
pkg-config-0.3.19
plist-1.0.1
proc-macro2-1.0.24
proc-macro-error-1.0.4
proc-macro-error-attr-1.0.4
quote-1.0.8
redox_syscall-0.1.57
redox_users-0.3.5
regex-1.4.6
regex-automata-0.1.10
regex-syntax-0.6.22
ryu-1.0.5
safemem-0.3.3
same-file-1.0.6
serde-1.0.118
serde_derive-1.0.118
serde_json-1.0.61
shell-words-1.0.0
strsim-0.8.0
structopt-0.3.22
structopt-derive-0.4.15
syn-1.0.57
syntect-4.5.0
termcolor-1.1.2
terminal_size-0.1.15
textwrap-0.11.0
tinyvec-1.1.0
tinyvec_macros-0.1.0
unicode-bidi-0.3.4
unicode-normalization-0.1.16
unicode-segmentation-1.8.0
unicode-width-0.1.8
unicode-xid-0.2.1
url-2.2.0
utf8parse-0.2.0
vcpkg-0.2.11
vec_map-0.8.2
version_check-0.9.2
vte-0.10.1
vte_generate_state_changes-0.1.1
walkdir-2.3.1
wasi-0.9.0+wasi-snapshot-preview1
winapi-0.3.9
winapi-i686-pc-windows-gnu-0.4.0
winapi-util-0.1.5
winapi-x86_64-pc-windows-gnu-0.4.0
xdg-2.2.0
xml-rs-0.8.3
yaml-rust-0.4.5
"

inherit bash-completion-r1 cargo

DESCRIPTION="A syntax-highlighting pager for git"
HOMEPAGE="https://github.com/dandavison/delta"
SRC_URI="https://github.com/dandavison/delta/archive/${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" $(cargo_crate_uris ${CRATES})"
S="${WORKDIR}/${P/git-/}"

LICENSE="0BSD Apache-2.0 Apache-2.0-with-LLVM-exceptions Boost-1.0 LGPL-3+ MIT Unlicense ZLIB"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64"

BDEPEND="virtual/pkgconfig"
DEPEND="
	dev-libs/libgit2:=
	dev-libs/oniguruma:=
"
RDEPEND="
	${DEPEND}
	!app-text/delta
"

QA_FLAGS_IGNORED="/usr/bin/delta"

src_configure() {
	# Some crates will auto-build and statically link C libraries(!)
	# Tracker bug #709568
	export RUSTONIG_SYSTEM_LIBONIG=1
	export LIBGIT2_SYS_USE_PKG_CONFIG=1
	export PKG_CONFIG_ALLOW_CROSS=1
}

src_install() {
	cargo_src_install

	# No man page (yet?)

	# Completions
	newbashcomp "${S}/etc/completion/completion.bash" delta

	insinto /usr/share/zsh/site-functions
	newins "${S}/etc/completion/completion.zsh" _delta
}