blob: 62889b73388843dfdc4ada2561691699a70245fe (
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
|
# Maintainer: Erich Eckner <arch at eckner dot net>
# Contributor: Leonid B <leonid dot bloch at esrf dot fr>
# Upstream contact: silx at esrf dot fr
pkgname=python-silx
_pkgname=silx
pkgver=1.0.0
pkgrel=3
pkgdesc="A collection of Python packages for data analysis at synchrotron radiation facilities."
arch=('i686' 'pentium4' 'x86_64')
url="http://www.silx.org"
license=('MIT' 'LGPL')
_pinned_dependencies=(
'gcc-libs=12.1.0'
'glibc>=2.31'
)
depends=(
"${_pinned_dependencies[@]}"
'cython>=0.21.1'
'python>=3.10'
'python<3.11'
'python-dateutil'
'python-fabio>=0.9'
'python-h5py'
'python-mako'
'python-matplotlib>=1.2.0'
'python-numpy'
'python-numpy>=1.12'
'python-pillow'
'python-pyopencl'
# 'python-pyopengl'
'python-pyqt5'
'python-qtconsole'
'python-scipy'
'python-setuptools')
checkdepends=(
'python-pytest'
'python-pytest-xvfb')
makedepends=(
'python-setuptools')
optdepends=('python-h5py: for HDF5 input/output'
'ipython: for interactive console'
'python-qtconsole: for GUI console'
'python-pyopencl: for sift - OpenCL implementation'
'opencl-driver: for sift - OpenCL implementation')
source=("${_pkgname}-${pkgver}.tar.gz::https://github.com/silx-kit/${_pkgname}/archive/v${pkgver}.tar.gz")
sha512sums=('608eb0c1b3dd22514038cbdc82841e8b25fab75c4401582d47fea7c6fe87c6970ff1b98381479c75f8567a7b1150b6cecc0b5a0745b23265ad0e7215fa5449d7')
build() {
cd "${srcdir}/${_pkgname}-${pkgver}"
python setup.py build
}
package_python-silx() {
cd "${srcdir}/${_pkgname}-${pkgver}"
python setup.py install --root="${pkgdir}/" --optimize=1
install -D copyright "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
|