blob: 041272b1c357f124d4236e68c9c1d9152124b8b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# boostrapping python modules
_bootstrap=0
# no testing no test or optional dependencies
unset check
unset checkdepends
unset optdepends
# no documentation, breaking the cycle with python-spinx
makedepends=(${makedepends[@]//python-sphinx*/})
eval "$(
declare -f build | \
sed '
/sphinx-build/d
'
declare -f package | \
sed '
\@/doc/@d
'
)"
|