blob: 5a861533dcc303b333c5aaa7d009743f6a4edc61 (
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
|
# SPDX-License-Identifier: AGPL-3.0
#
# Maintainer: Pellegrino Prevete (dvorak) <pellegrinoprevete@gmail.com>
# Maintainer: Truocolo <truocolo@aol.com>
# Contributor: Felix Yan <felixonmars@archlinux.org>
# Contributor: codedust
# Contributor: Dario Ostuni <dario.ostuni@gmail.com>
# Contributor: Clayton Craft <clayton at craftyguy dot net>
_py="python"
_pkg="setuptools-rust"
_Pkg="setuptools_rust"
_pkgbase="${_py}-${_pkg}"
pkgbase="${_pkgbase}-git"
pkgname=(
"${pkgbase}"
)
pkgver=1.8.1
pkgrel=1
_pkgdesc=(
"Compile and distribute Python extensions written"
"in rust as easily as if they were written in C.")
pkgdesc="${_pkgdesc[*]}"
arch=(
'any'
)
license=(
'MIT'
)
url="https://github.com/PyO3/${_pkg}"
depends=(
'rust'
"${_py}-setuptools"
"${_py}-semantic-version"
)
makedepends=(
'git'
"${_py}-build"
"${_py}-installer"
"${_py}-wheel"
"${_py}-setuptools-scm"
)
checkdepends=(
"${_py}-pytest"
"${_py}-pytest-benchmark"
"${_py}-beautifulsoup4"
"${_py}-lxml"
"${_py}-cffi"
)
provides=(
"${_pkg}=${pkgver}"
"${_pkg}-git=${pkgver}"
"${_pkgbase}=${pkgver}"
)
conflicts=(
"${_pkg}"
"${_pkg}-git"
"${_pkgbase}"
)
source=(
"git+${url}.git"
)
sha512sums=(
'SKIP'
)
_parse_ver() {
local \
_pkgver="${1}" \
_out="" \
_ver \
_rev \
_commit
_ver="$( \
echo \
"${_pkgver}" | \
awk \
-F '+' \
'{print $1}')"
_rev="$( \
echo \
"${_pkgver}" | \
awk \
-F '+' \
'{print $2}')"
_commit="$( \
echo \
"${_pkgver}" | \
awk \
-F '+' \
'{print $3}')"
_out=${_ver}
if [[ "${_rev}" != "" ]]; then
_out+=".r${_rev}"
fi
if [[ "${_commit}" != "" ]]; then
_out+=".${_commit}"
fi
echo \
"${_out}"
}
pkgver() {
local \
_pkgver
cd \
"${_pkg}" || \
exit
_pkgver="$( \
git \
describe \
--tags | \
sed \
's/_/./g;s/-/+/g')"
_parse_ver \
"${_pkgver}"
}
build() {
cd \
"${_pkg}"
"${_py}" \
-m \
build \
-nw
}
check() {
cd \
"${_pkg}"
for _dir \
in examples/*; do
pushd \
"${_dir}"
PYTHONPATH="${PWD}/../.." \
"${_py}" \
-m build \
-nw
"${_py}" \
-m \
installer \
-d \
tmp_install \
dist/*.whl
[[ -d tests || -d test ]] && \
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.11/site-packages" \
pytest \
tests
popd
done
pytest \
--doctest-modules \
"${_Pkg}"
}
package() {
cd "${_pkg}"
"${_py}" \
-m \
installer \
--destdir="${pkgdir}" \
dist/*.whl
install \
-Dm644 LICENSE \
-t \
"${pkgdir}/usr/share/licenses/${pkgname}"
}
# vim:set sw=2 sts=-1 et:
|