blob: 240fca15fa9be90e64c34244cfdb58b213690aca (
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
CARGO_OPTIONAL=yes
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..12} pypy3 )
CRATES="
autocfg@1.1.0
bitflags@1.3.2
byteorder@1.4.3
cfg-if@1.0.0
convert_case@0.4.0
cssparser-macros@0.6.0
cssparser@0.27.2
derive_more@0.99.17
dtoa-short@0.3.3
dtoa@0.4.8
futf@0.1.5
fxhash@0.2.1
getrandom@0.1.16
html5ever@0.25.1
indoc@1.0.4
indoc@1.0.9
instant@0.1.12
itoa@0.4.8
kuchiki@0.8.1
lazy_static@1.4.0
libc@0.2.121
libc@0.2.147
lock_api@0.4.10
lock_api@0.4.6
log@0.4.14
mac@0.1.1
markup5ever@0.10.1
matches@0.1.9
memoffset@0.9.0
new_debug_unreachable@1.0.4
nodrop@0.1.14
once_cell@1.10.0
once_cell@1.18.0
parking_lot@0.11.2
parking_lot@0.12.1
parking_lot_core@0.8.5
parking_lot_core@0.9.8
phf@0.8.0
phf_codegen@0.8.0
phf_generator@0.8.0
phf_macros@0.8.0
phf_shared@0.10.0
phf_shared@0.8.0
ppv-lite86@0.2.16
precomputed-hash@0.1.1
proc-macro-hack@0.5.19
proc-macro2@1.0.36
proc-macro2@1.0.66
pyo3-build-config@0.19.2
pyo3-ffi@0.19.2
pyo3-macros-backend@0.19.2
pyo3-macros@0.19.2
pyo3@0.19.2
quote@1.0.16
quote@1.0.32
rand@0.7.3
rand_chacha@0.2.2
rand_core@0.5.1
rand_hc@0.2.0
rand_pcg@0.2.1
redox_syscall@0.2.11
redox_syscall@0.3.5
rustc_version@0.4.0
scopeguard@1.1.0
scopeguard@1.2.0
selectors@0.22.0
semver@1.0.6
serde@1.0.136
servo_arc@0.1.1
siphasher@0.3.10
smallvec@1.11.0
smallvec@1.8.0
stable_deref_trait@1.2.0
string_cache@0.8.3
string_cache_codegen@0.5.1
syn@1.0.109
syn@1.0.89
target-lexicon@0.12.11
target-lexicon@0.12.3
tendril@0.4.3
thin-slice@0.1.1
unicode-ident@1.0.11
unicode-xid@0.2.2
unindent@0.1.11
unindent@0.1.8
utf-8@0.7.6
wasi@0.9.0+wasi-snapshot-preview1
winapi-i686-pc-windows-gnu@0.4.0
winapi-x86_64-pc-windows-gnu@0.4.0
winapi@0.3.9
windows-targets@0.48.1
windows_aarch64_gnullvm@0.48.0
windows_aarch64_msvc@0.48.0
windows_i686_gnu@0.48.0
windows_i686_msvc@0.48.0
windows_x86_64_gnu@0.48.0
windows_x86_64_gnullvm@0.48.0
windows_x86_64_msvc@0.48.0
"
inherit distutils-r1 cargo
DESCRIPTION="A plugin for setuptools to build Rust Python extensions"
HOMEPAGE="
https://github.com/PyO3/setuptools-rust/
https://pypi.org/project/setuptools-rust/
"
SRC_URI="
https://github.com/PyO3/setuptools-rust/archive/v${PV}.tar.gz
-> ${P}.gh.tar.gz
test? ( ${CARGO_CRATE_URIS} )
"
# crates are used at test time only, update via pycargoebuild -L -i ...
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 arm arm64 ~loong ~ppc ~ppc64 ~riscv ~s390 sparc ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
virtual/rust
<dev-python/semantic-version-3[${PYTHON_USEDEP}]
>=dev-python/semantic-version-2.8.2[${PYTHON_USEDEP}]
>=dev-python/setuptools-62.4[${PYTHON_USEDEP}]
>=dev-python/typing-extensions-3.7.4.3[${PYTHON_USEDEP}]
"
BDEPEND="
>=dev-python/setuptools-62.4[${PYTHON_USEDEP}]
test? (
${RDEPEND}
dev-python/beautifulsoup4[${PYTHON_USEDEP}]
$(python_gen_cond_dep '
dev-python/cffi[${PYTHON_USEDEP}]
' 'python*')
dev-python/lxml[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)
"
src_unpack() {
cargo_src_unpack
}
python_test() {
local examples=(
html-py-ever
namespace_package
rust_with_cffi
)
for example_dir in ${examples[@]}; do
pushd examples/${example_dir} >/dev/null || die
einfo "Running ${example_dir} test"
esetup.py build --build-lib=build/lib
case ${example_dir} in
html-py-ever)
pushd tests >/dev/null || die
local -x PYTHONPATH=../build/lib
${EPYTHON} run_all.py || die "Tests failed with ${EPYTHON}"
popd >/dev/null || die
;;
*)
pushd build/lib >/dev/null || die
epytest ../../tests
popd >/dev/null || die
;;
esac
rm -rf build || die
popd >/dev/null || die
done
}
|