blob: 8bc03356f7b98273d21e959fa038852356adb626 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# boostrapping python modules
# 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 '
/docs\/build\/html/d
'
)"
|