blob: 0225cbb7eace1f40f85654e56aa6081c4349ac19 (
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
|
# Copyright 2017-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
RUST_MIN_VER="1.88"
CRATES="
aho-corasick@1.1.3
anstream@0.6.17
anstyle-parse@0.2.6
anstyle-query@1.1.2
anstyle-wincon@3.0.6
anstyle@1.0.9
anyhow@1.0.91
assert_cmd@2.1.2
autocfg@1.4.0
bitflags@2.6.0
bstr@1.10.0
clap@4.5.20
clap_builder@4.5.20
clap_complete@4.5.55
clap_derive@4.5.18
clap_lex@0.7.2
colorchoice@1.0.3
const_format@0.2.33
const_format_proc_macros@0.2.33
diff@0.1.13
difflib@0.4.0
errno@0.3.9
float-cmp@0.9.0
heck@0.5.0
is_ci@1.2.0
is_terminal_polyfill@1.70.1
libc@0.2.161
linux-raw-sys@0.4.14
memchr@2.7.4
normalize-line-endings@0.3.0
num-traits@0.2.19
owo-colors@4.1.0
predicates-core@1.0.8
predicates-tree@1.0.11
predicates@3.1.2
pretty_assertions@1.4.1
proc-macro2@1.0.89
quote@1.0.37
regex-automata@0.4.8
regex-syntax@0.8.5
regex@1.11.1
rustix@0.38.38
serde@1.0.214
serde_derive@1.0.214
strsim@0.11.1
supports-color@3.0.1
syn@2.0.85
terminal_size@0.4.0
termtree@0.4.1
thiserror-impl@1.0.65
thiserror@1.0.65
unicode-ident@1.0.13
unicode-xid@0.2.6
utf8parse@0.2.2
wait-timeout@0.2.0
windows-sys@0.52.0
windows-sys@0.59.0
windows-targets@0.52.6
windows_aarch64_gnullvm@0.52.6
windows_aarch64_msvc@0.52.6
windows_i686_gnu@0.52.6
windows_i686_gnullvm@0.52.6
windows_i686_msvc@0.52.6
windows_x86_64_gnu@0.52.6
windows_x86_64_gnullvm@0.52.6
windows_x86_64_msvc@0.52.6
yansi@1.0.1
"
inherit cargo shell-completion
DESCRIPTION="A command-line hex viewer"
HOMEPAGE="https://github.com/sharkdp/hexyl"
SRC_URI="
https://github.com/sharkdp/hexyl/archive/v${PV}.tar.gz -> ${P}.tar.gz
${CARGO_CRATE_URIS}
"
LICENSE="|| ( Apache-2.0 MIT )"
# Dependent crate licenses
LICENSE+=" Apache-2.0 ISC MIT Unicode-DFS-2016 ZLIB"
SLOT="0"
KEYWORDS="~amd64"
QA_FLAGS_IGNORED="usr/bin/hexyl"
RESTRICT="mirror"
BDEPEND="
virtual/pandoc
"
src_compile() {
cargo_src_compile
pandoc -s -f markdown -t man -o "doc/${PN}.1" "doc/${PN}.1.md"
}
src_install() {
cargo_src_install
einstalldocs
doman "doc/${PN}.1"
"target/release/${PN}" --completion bash > "${PN}"
dobashcomp "${PN}"
"target/release/${PN}" --completion zsh > "_${PN}"
dozshcomp "_${PN}"
"target/release/${PN}" --completion fish > "${PN}.fish"
dofishcomp "${PN}.fish"
}
|