blob: 34f06579dcfaa2741c2d35c6dc2ceea8457f27a4 (
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
|
# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
CRATES="
ahash@0.8.7
anstream@0.6.11
anstyle-parse@0.2.3
anstyle-query@1.0.2
anstyle-wincon@3.0.2
anstyle@1.0.6
bitflags@2.4.2
bumpalo@3.14.0
cfg-if@1.0.0
clap@4.4.18
clap_builder@4.4.18
clap_lex@0.6.0
codemap@0.1.3
colorchoice@1.0.0
equivalent@1.0.1
errno@0.3.8
fastrand@2.0.1
getrandom@0.2.12
hashbrown@0.13.2
hashbrown@0.14.3
indexmap@2.2.2
js-sys@0.3.68
lasso@0.7.2
libc@0.2.153
linux-raw-sys@0.4.13
log@0.4.20
once_cell@1.19.0
paste@1.0.14
phf@0.11.2
phf_generator@0.11.2
phf_macros@0.11.2
phf_shared@0.11.2
ppv-lite86@0.2.17
proc-macro2@1.0.78
quote@1.0.35
rand@0.8.5
rand_chacha@0.3.1
rand_core@0.6.4
rustix@0.38.31
siphasher@0.3.11
strsim@0.10.0
syn@2.0.48
tempfile@3.10.0
unicode-ident@1.0.12
utf8parse@0.2.1
version_check@0.9.4
wasi@0.11.0+wasi-snapshot-preview1
wasm-bindgen-backend@0.2.91
wasm-bindgen-macro-support@0.2.91
wasm-bindgen-macro@0.2.91
wasm-bindgen-shared@0.2.91
wasm-bindgen@0.2.91
windows-sys@0.52.0
windows-targets@0.52.0
windows_aarch64_gnullvm@0.52.0
windows_aarch64_msvc@0.52.0
windows_i686_gnu@0.52.0
windows_i686_msvc@0.52.0
windows_x86_64_gnu@0.52.0
windows_x86_64_gnullvm@0.52.0
windows_x86_64_msvc@0.52.0
zerocopy-derive@0.7.32
zerocopy@0.7.32
"
inherit cargo
DESCRIPTION="A Sass compiler written purely in Rust"
HOMEPAGE="https://github.com/connorskees/grass"
SRC_URI="
https://github.com/connorskees/grass/archive/${PV}.tar.gz
-> ${P}.gh.tar.gz
${CARGO_CRATE_URIS}
"
S=${WORKDIR}/${P}/crates/lib
LICENSE="MIT"
# Dependent crate licenses
LICENSE+=" MIT Unicode-DFS-2016"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
QA_FLAGS_IGNORED="/usr/bin/grass"
src_install() {
cargo_src_install
dodoc ../../{CHANGELOG.md,README.md}
}
|