blob: 0fd92e6bef06dfc88cd3bfef7e458ed57aec650b (
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
|
# Copyright 2019-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
CRATES="
aho-corasick@0.7.20
anyhow@1.0.69
atty@0.2.14
bitflags@1.3.2
bstr@0.2.17
cc@1.0.79
cfg-if@1.0.0
clap@4.1.4
clap_derive@4.1.0
clap_lex@0.3.1
cpp_demangle@0.4.0
csv@1.1.6
csv-core@0.1.10
dirs-next@2.0.0
dirs-sys-next@0.1.2
encode_unicode@1.0.0
env_logger@0.10.0
errno@0.2.8
errno-dragonfly@0.1.2
getrandom@0.2.8
goblin@0.6.0
heck@0.4.1
hermit-abi@0.1.19
hermit-abi@0.3.0
hexplay@0.2.1
humantime@2.1.0
io-lifetimes@1.0.5
is-terminal@0.4.3
itoa@0.4.8
lazy_static@1.4.0
libc@0.2.139
linux-raw-sys@0.1.4
log@0.4.17
memchr@2.5.0
metagoblin@0.8.0
once_cell@1.17.0
os_str_bytes@6.4.1
plain@0.2.3
prettytable-rs@0.10.0
proc-macro-error@1.0.4
proc-macro-error-attr@1.0.4
proc-macro2@1.0.51
quote@1.0.23
redox_syscall@0.2.16
redox_users@0.4.3
regex@1.7.1
regex-automata@0.1.10
regex-syntax@0.6.28
rustc-demangle@0.1.21
rustix@0.36.8
rustversion@1.0.11
ryu@1.0.12
scroll@0.11.0
scroll_derive@0.11.0
serde@1.0.152
strsim@0.10.0
syn@1.0.107
term@0.7.0
termcolor@0.3.6
termcolor@1.2.0
terminal_size@0.2.3
thiserror@1.0.38
thiserror-impl@1.0.38
unicode-ident@1.0.6
unicode-width@0.1.10
version_check@0.9.4
wasi@0.11.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
wincolor@0.1.6
windows-sys@0.42.0
windows-sys@0.45.0
windows-targets@0.42.1
windows_aarch64_gnullvm@0.42.1
windows_aarch64_msvc@0.42.1
windows_i686_gnu@0.42.1
windows_i686_msvc@0.42.1
windows_x86_64_gnu@0.42.1
windows_x86_64_gnullvm@0.42.1
windows_x86_64_msvc@0.42.1
"
# https://github.com/rust-lang/rust/issues/113152#issuecomment-1612578376
RUST_MAX_VER="1.71.1"
inherit cargo
DESCRIPTION="Binary file analysis tool"
HOMEPAGE="https://github.com/m4b/bingrep"
SRC_URI="https://github.com/m4b/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
${CARGO_CRATE_URIS}"
LICENSE="Apache-2.0 BSD Boost-1.0 MIT Unicode-DFS-2016"
SLOT="0"
KEYWORDS="~amd64 ~ppc64 ~x86"
QA_FLAGS_IGNORED="usr/bin/bingrep"
pkg_setup() {
rust_pkg_setup
# Requires nightly feature proc-macro2
export RUSTC_BOOTSTRAP=1
}
src_install() {
cargo_src_install
einstalldocs
}
|