blob: b2815a1a91bec3d1261ac6c8de9254c2c43d644f (
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
75
76
77
78
79
80
81
82
83
84
85
86
|
# Maintainer: Blair Bonnett <blair dot bonnett at gmail dot com>
pkgname=python-findpeaks
pkgver=2.6.5
pkgrel=1
pkgdesc="Detection of peaks and valleys in vectors and images"
url='https://erdogant.github.io/findpeaks/'
arch=('any')
license=('MIT')
depends=(
'python-caerus'
'python-joblib'
'python-matplotlib'
'python-numpy'
'python-pandas'
'python-requests'
'python-scipy'
'python-tqdm'
'python-xarray'
)
optdepends=(
'python-opencv: for working with images and loading examples'
'python-tabulate: to run example scripts'
)
makedepends=(
'python-build'
'python-installer'
'python-setuptools'
'python-wheel'
)
checkdepends=(
'python-opencv'
'python-pytest'
)
_pypi=findpeaks
source=(
"https://files.pythonhosted.org/packages/source/${_pypi::1}/$_pypi/$_pypi-$pkgver.tar.gz"
'https://erdogant.github.io/datasets/2dpeaks.zip'
'https://erdogant.github.io/datasets/2dpeaks_image.png'
'change_opencv_message.patch'
'include_example_datasets.patch'
)
sha256sums=(
'2a83a7b9753c59347c2290474f977684abd4df82f465917de12ef053d82b3e54'
'cde41d4a434c2c8d0f7273283796e9d5ed621f6877556cc2504b271e6fe6b329'
'ea0f10f39f73363fe5e41b6bac51b33b13213fc1770d510ac29d3dbac661e474'
'a1a2c8894ce3d4246c37f6582278d5fe9bacc621e862795e8e171b5c40cc2d55'
'be8c49d4c8336151694c7ef03b33341d7754d6d43dd9d57f5f6b9b3fa6a48fe5'
)
prepare() {
cd "$_pypi-$pkgver"
# Don't tell the user to install with pip, just raise the original exception
# and let them handle it.
patch -p0 -i "$srcdir/change_opencv_message.patch"
# Move the example datasets into the library source and modify the setup.py
# to include them in the built package.
cp "$srcdir/2dpeaks_image.png" findpeaks/data
cp "$srcdir/2dpeaks.zip" findpeaks/data
patch -p0 -i "$srcdir/include_example_datasets.patch"
}
build() {
cd "$_pypi-$pkgver"
python -m build --no-isolation --wheel
}
check() {
cd "$_pypi-$pkgver"
pytest -v -k "not test_fit"
}
package() {
cd "$_pypi-$pkgver"
python -m installer --destdir="$pkgdir" dist/"findpeaks-$pkgver"*.whl
install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" "LICENSE"
# Move the example script to /usr/share
install -Dm644 -t "$pkgdir/usr/share/$pkgname" findpeaks/examples.py
find "$pkgdir/usr/lib" -type f -name "examples.py" -exec rm '{}' \;
find "$pkgdir/usr/lib" -type f -name "examples.*pyc" -exec rm '{}' \;
}
|