blob: 00b18387f2c15a52553a6b9d2c50934ee8a6060d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# pytest is broken currently
unset check
unset checkdepends
# breaking the cycle with python-spinx
makedepends=(${makedepends[@]/python-wcag-contrast-ratio})
makedepends=(${makedepends[@]/python-sphinx})
eval "$(
declare -f build | \
sed '
/make.*html/d
'
)"
eval "$(
declare -f package | \
sed '
/cp.*_build\/html/d
'
)"
|