blob: 35bef26a99523e6e66f7b117ab4f92b144ca5a87 (
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: Kirill Pshenichnyi <pshcyrill@mail.ru>
# Contributor: the NICOS contributors, MLZ
pkgname=nicos-git
_pkgname=nicos
pkgver=v3.9.0.r104.g0b5f4f99f
pkgrel=1
pkgdesc="The Networked Instrument Control System of the MLZ"
arch=('x86_64')
url="https://nicos-controls.org/"
license=('GPL3')
groups=('nicos')
depends=(
'git'
'python-setuptools'
'python-pytango'
'python-nicos-pyctl>=1.0'
'python-scipy>=0.9'
'python-numpy>=1.10.0'
'python-pyzmq>=13.1.0'
'python-rsa>=3.1.2'
'python-ldap3>=2.0.0'
'python-psutil>=2.0'
'python-html2text'
'python-lttb'
'python-toml'
'python-gr-framework'
# Dev
'python-coverage>=3.4'
'python-isort'
'python-pylint>=2.1.0'
'python-pytest>=4.6'
'python-pytest-cov'
'python-pytest-timeout>=1.3.1'
'python-mock>=1.0'
'python-yaml>=3.0'
'python-sphinx'
'rst2pdf'
'yapf'
'python-sphinx_rtd_theme'
'python-pytest-randomly'
'python-pyftpdlib'
'python-sphinxcontrib-seqdiag'
# Opt
'python-pyserial>=2.5'
'python-astropy'
'python-nicos-quickyaml>=1.1.0'
'python-docutils'
'python-redbaron'
'python-keyring'
'python-keyrings-alt'
'python-pycryptodome'
'python-sshtunnel'
'python-requests'
'python-pillow'
'python-markdown'
'python-h5py'
# Gui
'python-pyqt5'
'python-pyqt5-webengine'
'python-qscintilla-qt5'
)
provides=('nicos')
conflicts=('nicos')
source=('git+https://forge.frm2.tum.de/review/frm2/nicos/nicos')
sha256sums=('SKIP')
pkgver() {
cd "$_pkgname"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "$srcdir/$_pkgname"
python setup.py build
}
check() {
cd "$srcdir/$_pkgname"
python setup.py check -mr
}
package() {
cd "$srcdir/$_pkgname"
python setup.py install --root=$pkgdir/
}
|