summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b9f0925acb3e6dfceec90c4fc75c5426911ec8a9 (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
# Maintainer: Astro Benzene <universebenzene at sina dot com>
pkgname=python-sphinx-astropy
_pyname=${pkgname#python-}
pkgver=1.9.1
pkgrel=1
pkgdesc="Sphinx extensions and configuration specific to the Astropy project"
arch=('any')
url="https://github.com/astropy/sphinx-astropy"
license=('BSD')
makedepends=('python-setuptools-scm'
             'python-wheel'
             'python-build'
             'python-installer')
checkdepends=('python-pytest-doctestplus'
              'python-astropy-sphinx-theme'
              'python-matplotlib'
              'python-numpydoc'
              'python-sphinxcontrib-jquery'
              'python-sphinx-automodapi'
              'python-pydata-sphinx-theme'
              'python-sphinx-copybutton')
source=("https://files.pythonhosted.org/packages/source/${_pyname:0:1}/${_pyname}/${_pyname}-${pkgver}.tar.gz")
md5sums=('da84468f9a8395216a22f8bdf292d43b')

build() {
    cd ${srcdir}/${_pyname}-${pkgver}

    python -m build --wheel --no-isolation
}

check() {
    cd ${srcdir}/${_pyname}-${pkgver}

    # skip tests that cost times through internet
    pytest || warning "Tests failed" #\
#       --deselect=sphinx_astropy/tests/test_conf.py::test_conf #|| warning "Tests failed" # -vv --color=yes
}

package() {
    depends=('python-packaging'
             'python-sphinx>=3.0.0'
             'python-astropy-sphinx-theme'
             'python-sphinx-automodapi'
             'python-sphinx-gallery'
             'python-numpydoc'
             'python-sphinxcontrib-jquery'
             'python-pillow'
             'python-pytest-doctestplus>=0.11')
    optdepends=('python-pydata-sphinx-theme: To use the new pydata-sphinx-theme with sphinx_astropy.conf.v2'
                'python-sphinx-copybutton: To use the new pydata-sphinx-theme with sphinx_astropy.conf.v2')
    cd ${srcdir}/${_pyname}-${pkgver}

    install -D -m644 LICENSE.rst -t "${pkgdir}/usr/share/licenses/${pkgname}"
    install -D -m644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
    python -m installer --destdir="${pkgdir}" dist/*.whl
}