blob: ffb615c4bcfdc3a1ebd03c49e06a44d0e8145f3f (
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
67
68
69
|
# Maintainer: Astro Benzene <universebenzene at sina dot com>
pkgbase=python-astroscrappy
_pyname=${pkgbase#python-}
pkgname=("python-${_pyname}" "python-${_pyname}-doc")
pkgver=1.2.0
pkgrel=1
pkgdesc="Speedy Cosmic Ray Annihilation Package in Python"
arch=('i686' 'x86_64')
url="https://astroscrappy.readthedocs.io"
license=('BSD-3-Clause')
makedepends=('python-setuptools-scm>=6.2'
'cython'
'python-wheel'
'python-build'
'python-installer'
'python-extension-helpers>=1'
'python-numpy'
'python-sphinx-astropy')
checkdepends=('python-pytest-doctestplus'
'python-astropy'
'python-scipy')
source=("https://files.pythonhosted.org/packages/source/a/astroscrappy/astroscrappy-${pkgver}.tar.gz"
'setup.cfg')
md5sums=('1242aa6f352cb23a9a94cc494ab02447'
'60e14b6062e639028bf12059193ae884')
get_pyver() {
python -c "import sys; print('$1'.join(map(str, sys.version_info[:2])))"
}
prepare() {
cd ${srcdir}/${_pyname}-${pkgver}
cat ${srcdir}/setup.cfg >> setup.cfg
}
build() {
cd ${srcdir}/${_pyname}-${pkgver}
python -m build --wheel --no-isolation --skip-dependency-check
msg "Building Docs"
PYTHONPATH="../build/lib.linux-${CARCH}-cpython-$(get_pyver)" make -C docs html
}
check() {
cd ${srcdir}/${_pyname}-${pkgver}
pytest "build/lib.linux-${CARCH}-cpython-$(get_pyver)" || warning "Tests failed" # -vv -l -ra --color=yes -o console_output_style=count
}
package_python-astroscrappy() {
depends=('python' 'python-astropy')
optdepends=('python-astroscrappy-doc: Documentation for Astro-SCRAPPY')
cd ${srcdir}/${_pyname}-${pkgver}
install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" licenses/*
install -Dm644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
python -m installer --destdir="${pkgdir}" dist/*.whl
}
package_python-astroscrappy-doc() {
pkgdesc="Documentation for Astro-SCRAPPY"
arch=('any')
cd ${srcdir}/${_pyname}-${pkgver}/docs/_build
install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}" ../../licenses/*
install -dm755 "${pkgdir}/usr/share/doc/${pkgbase}"
cp -a html "${pkgdir}/usr/share/doc/${pkgbase}"
}
|