blob: ef36d324d3044a09a48932634ddd08ce8ae9b239 (
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
70
71
72
73
74
|
# Maintainer: Blair Bonnett <blair dot bonnett at gmail dot com>
# Contributor: Luis Martinez <luis dot martinez at disroot dot org>
# Contributor: Kuan-Yen Chou <kuanyenchou at gmail dot com>
pkgname=python-laspy
pkgdesc="Pythonic interface for .LAS LIDAR files"
url="https://github.com/laspy/laspy"
pkgver=2.5.4
pkgrel=1
arch=('any')
license=('BSD-2-Clause')
changelog='CHANGELOG.md'
depends=('python-numpy' 'python-rich' 'python-typer')
optdepends=(
'python-lazrs: LAZ and COPC support'
'python-laszip: LAZ support'
'python-pyproj: CRS support'
'python-requests: COPC support over HTTPS'
)
makedepends=(
'git'
'python-myst-parser'
'python-setuptools'
'python-build'
'python-installer'
'python-wheel'
'python-sphinx'
)
checkdepends=('python-pytest')
_pyname=laspy
_commit=a32c7aa40
source=(
"git+$url#commit=$_commit?signed"
'modify_doc_conf.patch'
)
sha256sums=(
'SKIP'
'b93fabcad532b5b7062ff8e659ded69167f27872f093023734a2cfca8b8d0d19'
)
validpgpkeys=('44B238524D21C5064D7081BD5022EF94BE848C51')
prepare() {
cd "$_pyname"
# Use myst_parser instead of m2r2 and disable the custom HTML theme.
patch -p0 -i "$srcdir/modify_doc_conf.patch"
# Replace the RST (which used an m2r2 directive) with a copy of the markdown.
cd docs
rm changelog.rst
ln -sf ../CHANGELOG.md changelog.md
}
build() {
cd "$_pyname"
python -m build --wheel --no-isolation
PYTHONPATH="$PWD" make -C docs man
}
check() {
cd "$_pyname"
python -m venv --system-site-packages test-env
test-env/bin/python -m installer "dist/$_pyname-$pkgver"-*.whl
test-env/bin/python -m pytest
}
package() {
cd "$_pyname"
PYTHONHASHSEED=0 python -m installer --destdir="$pkgdir/" "dist/$_pyname-$pkgver"-*.whl
install -Dm644 docs/_build/man/laspy.1 -t "$pkgdir/usr/share/man/man1/"
install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|