Diff nitrocli-0.3.5 with a nitrocli-0.4.0

/usr/portage/app-crypt/nitrocli/nitrocli-0.4.0.ebuild 2023-10-09 14:52:28.240368319 +0300
4 4
EAPI=7
5 5

  
6 6
CRATES="
7
aho-corasick-0.7.10
8
anyhow-1.0.32
7
aho-corasick-0.7.15
8
anyhow-1.0.39
9 9
arrayref-0.3.6
10
arrayvec-0.5.1
11
autocfg-1.0.0
10
arrayvec-0.5.2
11
autocfg-1.0.1
12 12
base32-0.4.0
13
base64-0.11.0
13
base64-0.13.0
14 14
bitflags-1.2.1
15
blake2b_simd-0.5.10
16
cc-1.0.50
17
cfg-if-0.1.10
18
clap-2.33.0
15
blake2b_simd-0.5.11
16
cc-1.0.67
17
cfg-if-1.0.0
18
clap-2.33.3
19 19
constant_time_eq-0.1.5
20
crossbeam-utils-0.7.2
20
crossbeam-utils-0.8.3
21 21
directories-3.0.1
22 22
dirs-sys-0.3.5
23 23
envy-0.4.2
24
getrandom-0.1.14
25
heck-0.3.1
24
getrandom-0.1.16
25
getrandom-0.2.2
26
heck-0.3.2
26 27
lazy_static-1.4.0
27
libc-0.2.69
28
memchr-2.3.3
28
libc-0.2.90
29
log-0.4.14
30
memchr-2.3.4
29 31
merge-0.1.0
30 32
merge_derive-0.1.0
31
nitrocli-0.3.5
32
nitrokey-0.7.1
33
nitrokey-sys-3.5.0
34
nitrokey-test-0.4.0
33
nitrocli-0.4.0
34
nitrokey-0.8.0
35
nitrokey-sys-3.6.0
36
nitrokey-test-0.5.0
35 37
nitrokey-test-state-0.1.0
36
num-traits-0.2.12
37
proc-macro-error-1.0.2
38
proc-macro-error-attr-1.0.2
39
proc-macro2-1.0.19
40
quote-1.0.3
38
num-traits-0.2.14
39
numtoa-0.1.0
40
ppv-lite86-0.2.10
41
proc-macro-error-1.0.4
42
proc-macro-error-attr-1.0.4
43
proc-macro2-1.0.24
44
progressing-3.0.2
45
quote-1.0.9
46
rand-0.8.3
47
rand_chacha-0.3.0
41 48
rand_core-0.5.1
49
rand_core-0.6.2
50
rand_hc-0.3.0
42 51
redox_syscall-0.1.57
43
redox_users-0.3.4
44
regex-1.3.7
45
regex-syntax-0.6.17
46
rust-argon2-0.7.0
47
serde-1.0.114
48
serde_derive-1.0.114
49
structopt-0.3.17
50
structopt-derive-0.4.10
51
syn-1.0.36
52
syn-mid-0.5.0
52
redox_syscall-0.2.5
53
redox_termios-0.1.2
54
redox_users-0.3.5
55
regex-1.4.5
56
regex-syntax-0.6.23
57
remove_dir_all-0.5.3
58
rust-argon2-0.8.3
59
serde-1.0.124
60
serde_derive-1.0.124
61
structopt-0.3.21
62
structopt-derive-0.4.14
63
syn-1.0.64
64
tempfile-3.2.0
65
termion-1.5.6
53 66
textwrap-0.11.0
54
thread_local-1.0.1
55
toml-0.5.6
56
unicode-segmentation-1.6.0
57
unicode-width-0.1.7
58
unicode-xid-0.2.0
59
version_check-0.9.1
67
toml-0.5.8
68
unicode-segmentation-1.7.1
69
unicode-width-0.1.8
70
unicode-xid-0.2.1
71
version_check-0.9.3
60 72
wasi-0.9.0+wasi-snapshot-preview1
73
wasi-0.10.2+wasi-snapshot-preview1
61 74
winapi-0.3.9
62 75
winapi-i686-pc-windows-gnu-0.4.0
63 76
winapi-x86_64-pc-windows-gnu-0.4.0
......
71 84

  
72 85
LICENSE="Apache-2.0 BSD-2 CC0-1.0 GPL-3+ LGPL-3 MIT"
73 86
SLOT="0"
74
KEYWORDS="~amd64 ~ppc64 ~x86"
87
KEYWORDS="amd64 ~ppc64 x86"
88
IUSE=""
75 89

  
76 90
DEPEND="
77 91
	dev-libs/hidapi
......
91 105
src_install() {
92 106
	cargo_src_install --bin=nitrocli
93 107

  
94
	target/release/shell-complete > nitrocli.bash || die
95
	newbashcomp nitrocli.bash ${PN}
108
	target/release/shell-complete bash > ${PN}.bash || die
109
	newbashcomp ${PN}.bash ${PN}
110

  
111
	target/release/shell-complete fish > ${PN}.fish || die
112
	insinto /usr/share/fish/vendor_conf.d/
113
	insopts -m0755
114
	newins ${PN}.fish ${PN}.fish
96 115

  
97 116
	einstalldocs
98 117
	doman "doc/nitrocli.1"
Thank you!