blob: ff2c36cdd1665f2f76f82ecbedbeaf7ca289dad7 (
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
|
# Copyright 2017-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
CRATES="
Inflector-0.11.4
ahash-0.4.7
aho-corasick-0.7.18
autocfg-1.0.1
bitflags-1.2.1
block-0.1.6
cassowary-0.3.0
cc-1.0.68
cfg-if-1.0.0
chrono-0.4.19
dashmap-4.0.2
dlv-list-0.2.3
find-crate-0.6.3
fluent-0.15.0
fluent-bundle-0.15.1
fluent-langneg-0.13.0
fluent-syntax-0.11.0
getopts-0.2.21
getrandom-0.2.3
greetd_ipc-0.6.0
hashbrown-0.9.1
hermit-abi-0.1.19
i18n-config-0.4.2
i18n-embed-0.12.1
i18n-embed-fl-0.5.0
i18n-embed-impl-0.7.0
instant-0.1.9
intl-memoizer-0.5.1
intl_pluralrules-7.0.1
itoa-0.4.7
lazy_static-1.4.0
libc-0.2.97
locale_config-0.3.0
lock_api-0.4.4
log-0.4.14
malloc_buf-0.0.6
memchr-2.4.0
memoffset-0.6.4
nix-0.21.0
num-integer-0.1.44
num-traits-0.2.14
num_cpus-1.13.0
numtoa-0.1.0
objc-0.2.7
objc-foundation-0.1.1
objc_id-0.1.1
ordered-multimap-0.3.1
ouroboros-0.9.5
ouroboros_macro-0.9.5
parking_lot-0.11.1
parking_lot_core-0.8.3
ppv-lite86-0.2.10
proc-macro-error-1.0.4
proc-macro-error-attr-1.0.4
proc-macro2-1.0.27
pure-rust-locales-0.5.6
quote-1.0.9
rand-0.8.4
rand_chacha-0.3.1
rand_core-0.6.3
rand_hc-0.3.1
redox_syscall-0.2.9
redox_termios-0.1.2
regex-1.5.4
regex-syntax-0.6.25
rust-embed-5.9.0
rust-embed-impl-5.9.0
rust-embed-utils-5.1.0
rust-ini-0.17.0
rustc-hash-1.1.0
ryu-1.0.5
same-file-1.0.6
scopeguard-1.1.0
serde-1.0.126
serde_derive-1.0.126
serde_json-1.0.64
smallvec-1.6.1
smart-default-0.6.0
smawk-0.3.1
stable_deref_trait-1.2.0
strsim-0.10.0
syn-1.0.73
system_shutdown-3.0.0
termion-1.5.6
textwrap-0.14.2
thiserror-1.0.25
thiserror-impl-1.0.25
time-0.1.44
tinystr-0.3.4
toml-0.5.8
tui-0.15.0
type-map-0.4.0
unic-langid-0.9.0
unic-langid-impl-0.9.0
unicode-linebreak-0.1.1
unicode-segmentation-1.7.1
unicode-width-0.1.8
unicode-xid-0.2.2
version_check-0.9.3
walkdir-2.3.2
wasi-0.10.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
zeroize-1.3.0
"
inherit cargo
DESCRIPTION="TUI greeter for greetd login manager"
HOMEPAGE="https://github.com/apognu/tuigreet"
SRC_URI="https://github.com/apognu/tuigreet/archive/${PV}.tar.gz -> ${P}.tar.gz
$(cargo_crate_uris ${CRATES})"
QA_FLAGS_IGNORED="usr/bin/tuigreet"
LICENSE="Apache-2.0 Boost-1.0 GPL-3 MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc64 ~riscv"
RDEPEND="gui-libs/greetd"
|