blob: aa0b6613ba3ddc25471cbefb6b89f7263075cf0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# cycle breaking for python-sphinx
eval "$(
declare -f build | \
sed '
/.*sphinx-build.*/d
'
declare -f package | \
sed '
/.*\/share\/doc.*/d
'
)"
# disable documentation (needs spinx, furo)
# python-sphinx_furo neds npm, which is broken on archlinux32
# most likely since years..
makedepends=(${makedepends[@]//python-sphinx-furo/})
makedepends=(${makedepends[@]//python-sphinx-argparse-cli/})
makedepends=(${makedepends[@]//python-sphinx-autodoc-typehints/})
makedepends=(${makedepends[@]//python-sphinx/})
|