blob: d95ca9193ddf49c48fad2262c64c132c6f7c49b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# temporary to build python-build with python-bootstrap (breaking cycles)
makedepends=(${makedepends[@]//python-build/})
makedepends=(${makedepends[@]//python-installer/})
makedepends=(${makedepends[@]//python-wheel/})
makedepends+=('python-bootstrap')
unset checkdepends
unset check
eval "$(
declare -f build | \
sed '
s/python -m build --wheel --no-isolation/python -m build --wheel --no-isolation -x/g
'
)"
|