blob: 1ebceb08773aaa935effac61052d8d93e9d646e7 (
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 '
\@/doc/@d
'
)"
|