blob: b095e5a98665b2b14b90d52737ffc8c5f7899af4 (
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-astrodendro-git
_gitname=astrodendro
pkgname=("python-${_gitname}-git" "python-${_gitname}-doc-git")
pkgver=0.2.0.r36.g75ec031
pkgrel=1
pkgdesc="Python package for computation of astronomical dendrograms"
arch=('any')
url="https://dendrograms.readthedocs.io"
license=('MIT')
makedepends=('python-setuptools-scm'
'git'
'python-wheel'
'python-build'
'python-installer'
'python-sphinx-automodapi'
'python-numpydoc'
'python-aplpy')
checkdepends=('python-pytest'
'python-h5py') # 'python-astropy' 'python-matplotlib' by aplpy
source=("git+https://github.com/dendrograms/astrodendro")
md5sums=('SKIP')
pkgver() {
cd "${srcdir}/${_gitname}"
( set -o pipefail
git describe --long --tags 2>/dev/null | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' ||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
)
}
build() {
cd ${srcdir}/${_gitname}
python -m build --wheel --no-isolation
msg "Building Docs"
PYTHONPATH="../build/lib" make -C docs html
}
check() {
cd ${srcdir}/${_gitname}
pytest || warning "Tests failed" # -vv --color=yes
}
package_python-astrodendro-git() {
depends=('python' 'python-numpy>=1.24' 'python-astropy>4' 'python-matplotlib>3' 'python-h5py>3')
optdepends=('python-astrodendro-doc-git: Documentation for astrodendro')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
cd ${srcdir}/${_gitname}
install -D -m644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
install -D -m644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
python -m installer --destdir="${pkgdir}" dist/*.whl
}
package_python-astrodendro-doc-git() {
pkgdesc="Documentation for Python astrodendro module"
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
cd ${srcdir}/${_gitname}/docs/_build
install -D -m644 -t "${pkgdir}/usr/share/licenses/${pkgname}" ../../LICENSE
install -d -m755 "${pkgdir}/usr/share/doc/${pkgbase}"
cp -a html "${pkgdir}/usr/share/doc/${pkgbase}"
}
|