blob: 29e02c8a4990167ee7da89fa3841e1f12ee20f50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# 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')
depends=(${depends[@]//python-jaraco.functools/})
depends=(${depends[@]//python-jaraco.context/})
depends=(${depends[@]//python-jaraco.context/})
depends=(${depends[@]//python-autocommand/})
depends=(${depends[@]//python-inflect/})
unset checkdepends
unset check
eval "$(
declare -f build | \
sed '
s/python -m build --wheel --no-isolation/python -m build --wheel --no-isolation -x/g
'
)"
|