summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 08d6267bbdd0e03b226dca008fecde591b2330bc (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
# Maintainer: Astro Benzene <universebenzene at sina dot com>

pkgbase=python-repoze.sphinx.autointerface
_pyname=${pkgbase#python-}
pkgname=("python-${_pyname}")
pkgver=1.0.0
pkgrel=1
pkgdesc="Auto-generate Sphinx API docs from Zope interfaces"
arch=('any')
url="https://github.com/repoze/repoze.sphinx.autointerface"
license=('BSD')
makedepends=('python-setuptools'
             'python-wheel'
             'python-build'
             'python-installer')
checkdepends=('python-pytest'
              'python-sphinx'
              'python-zope-interface')
source=("https://files.pythonhosted.org/packages/source/${_pyname:0:1}/${_pyname}/${_pyname}-${pkgver}.tar.gz")
md5sums=('63471c93810215ac7ad02b966ad16c39')

get_pyver() {
    python -c "import sys; print('$1'.join(map(str, sys.version_info[:2])))"
}

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

    python setup.py build
#   python -m build --wheel --no-isolation
}

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

    pytest || warning "Tests failed" # -vv --color=yes
}

package_python-repoze.sphinx.autointerface() {
    depends=('python-setuptools' 'python-sphinx>=4.0' 'python-zope-interface')
    cd ${srcdir}/${_pyname}-${pkgver}

    install -D -m644 -t "${pkgdir}/usr/share/licenses/${pkgname}" LICENSE.txt
    install -D -m644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
    python setup.py install --root=${pkgdir} --prefix=/usr --optimize=1
#   python -m installer --destdir="${pkgdir}" dist/*.whl
}