blob: 4dffa86446a02c4b2c8bfea7dbdfc4f54b7bdb5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# Maintainer: Astro Benzene <universebenzene at sina dot com>
pkgbase=python-sphinx-togglebutton
_pname=${pkgbase#python-}
_pyname=${_pname//-/_}
pkgname=("python-${_pname}")
#"python-${_pyname}-doc")
pkgver=0.4.5
pkgrel=1
pkgdesc="Toggle page content and collapse admonitions in Sphinx"
arch=('any')
url="https://sphinx-togglebutton.readthedocs.io"
license=('MIT')
makedepends=('python-setuptools')
# 'python-build'
# 'python-installer')
#checkdepends=('python-sphinx' 'python-wheel')
#checkdepends=('python-pytest-import-check'
# 'python-sphinx'
# )
checkdepends=('python-nose'
'python-sphinx')
source=("https://files.pythonhosted.org/packages/source/${_pyname:0:1}/${_pyname}/${_pyname}-${pkgver}.tar.gz")
md5sums=('9f2ebd99cc8c2d71f5cc7918ddb75b20')
build() {
cd ${srcdir}/${_pyname}-${pkgver}
python setup.py build
# python -m build --wheel --no-isolation
# msg "Building Docs"
# python setup.py build_sphinx
}
check() {
cd ${srcdir}/${_pyname}-${pkgver}
# python setup.py test
# pytest #|| warning "Tests failed"
# pytest build/lib --import-check -vv -l -ra --color=yes -o console_output_style=count
nosetests
}
package_python-sphinx-togglebutton() {
depends=('python-sphinx' 'python-setuptools' 'python-wheel')
optdepends=('python-sphinx-book-theme: sphinx'
'python-sphinx-examples: sphinx'
'python-myst-nb: sphinx'
'python-sphinx_design: sphinx'
'python-numpy: sphinx'
'python-matplotlib: sphinx')
cd ${srcdir}/${_pyname}-${pkgver}
install -D -m644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
install -D -m644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
python setup.py install --root=${pkgdir} --prefix=/usr --optimize=1
# python -m installer --destdir="${pkgdir}" dist/*.whl
}
#package_python-sphinx-togglebutton-doc() {
# pkgdesc="Documentation for Sphinx-Gallery extension"
# cd ${srcdir}/${_pyname}-${pkgver}/doc/_build
#
# install -d -m755 "${pkgdir}/usr/share/doc/${pkgbase}"
# cp -a html "${pkgdir}/usr/share/doc/${pkgbase}"
#}
|