blob: 7df8d3a0e8f15604e4a2a580632185d336912fc1 (
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
|
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
CRATES="
aho-corasick-0.7.20
ansi_term-0.12.1
atty-0.2.14
bitflags-1.3.2
block-buffer-0.10.3
bstr-0.2.17
camino-1.1.2
cc-1.0.78
cfg-if-1.0.0
clap-2.34.0
cpufeatures-0.2.5
cradle-0.2.2
crypto-common-0.1.6
ctor-0.1.26
ctrlc-3.2.4
derivative-2.2.0
diff-0.1.13
digest-0.10.6
doc-comment-0.3.3
dotenvy-0.15.6
edit-distance-2.1.0
either-1.8.0
env_logger-0.10.0
errno-0.2.8
errno-dragonfly-0.1.2
executable-path-1.0.0
fastrand-1.8.0
generic-array-0.14.6
getopts-0.2.21
getrandom-0.2.8
heck-0.3.3
heck-0.4.0
hermit-abi-0.1.19
hermit-abi-0.2.6
humantime-2.1.0
instant-0.1.12
io-lifetimes-1.0.4
is-terminal-0.4.2
itoa-1.0.5
lazy_static-1.4.0
lexiclean-0.0.1
libc-0.2.139
linked-hash-map-0.5.6
linux-raw-sys-0.1.4
log-0.4.17
memchr-2.5.0
nix-0.26.1
once_cell-1.17.0
output_vt100-0.1.3
pretty_assertions-1.3.0
proc-macro-error-1.0.4
proc-macro-error-attr-1.0.4
proc-macro2-1.0.49
pulldown-cmark-0.9.2
pulldown-cmark-to-cmark-10.0.4
quote-1.0.23
redox_syscall-0.2.16
regex-1.7.1
regex-automata-0.1.10
regex-syntax-0.6.28
remove_dir_all-0.5.3
rustix-0.36.6
rustversion-1.0.11
ryu-1.0.12
serde-1.0.152
serde_derive-1.0.152
serde_json-1.0.91
sha2-0.10.6
similar-2.2.1
snafu-0.7.4
snafu-derive-0.7.4
static_assertions-1.1.0
strsim-0.8.0
structopt-0.3.26
structopt-derive-0.4.18
strum-0.24.1
strum_macros-0.24.3
syn-1.0.107
target-2.0.0
tempfile-3.3.0
temptree-0.2.0
term_size-0.3.2
termcolor-1.1.3
textwrap-0.11.0
typed-arena-2.0.2
typenum-1.16.0
unicase-2.6.0
unicode-ident-1.0.6
unicode-segmentation-1.10.0
unicode-width-0.1.10
uuid-1.2.2
vec_map-0.8.2
version_check-0.9.4
wasi-0.11.0+wasi-snapshot-preview1
which-4.3.0
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
windows-sys-0.42.0
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
yaml-rust-0.4.5
yansi-0.5.1
${P}
"
inherit bash-completion-r1 cargo
DESCRIPTION="Just a command runner (with syntax inspired by 'make')"
HOMEPAGE="
https://just.systems/
https://crates.io/crates/just
https://github.com/casey/just
"
SRC_URI="$(cargo_crate_uris ${CRATES})"
LICENSE="Apache-2.0 CC0-1.0 MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86"
RESTRICT="mirror"
src_install() {
local DOCS=( README.md )
dobin "target/release/${PN}"
doman man/*
einstalldocs
# bash-completion
newbashcomp "completions/${PN}.bash" "${PN}"
# zsh-completion
insinto /usr/share/zsh/site-functions
newins "completions/${PN}.zsh" "_${PN}"
# fish-completion
insinto /usr/share/fish/vendor_completions.d
doins "completions/${PN}.fish"
}
|