blob: 8232cf8fe1afc1342dc68294d47da8a2b968598e (
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
|
# Maintainer: a821
# Contributor: xantares
# Contributor: dalraf
pkgname=python-orange
pkgver=3.31.1
pkgrel=2
pkgdesc="Open source machine learning and data visualization"
arch=('x86_64')
url="https://orangedatamining.com/"
license=('GPL3')
makedepends=('python-setuptools' 'cython')
depends=('python-chardet' 'python-pyqtgraph' 'python-xlrd' 'python-matplotlib'
'python-scikit-learn' 'python-joblib' 'python-keyrings-alt' 'python-bottleneck'
'python-pip' 'python-xlsxwriter' 'python-networkx' 'python-requests' 'python-pandas'
'python-openpyxl' 'python-httpx' 'python-numpy' 'python-scipy' 'python-yaml'
'python-pygments' 'python-qtconsole' 'python-pyqt5-webengine'
# AUR deps
'python-anyqt' 'python-serverfiles' 'python-louvain' 'python-opentsne'
'python-orange-widget-base' 'python-orange-canvas-core' 'python-baycomp')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/biolab/orange3/archive/${pkgver}.tar.gz")
optdepends=('python-psycopg2: PostgreSQL database support'
'python-pymssql: Microsoft SQL Server support')
sha256sums=('0c194ba4da51a8109fe6be94535cd366b07e62e2f6bfa5fed1a85e39eaee566d')
prepare() {
cd "${srcdir}/orange3-$pkgver"
# remove hard dependency on httpx
sed -i 's/,<0.20//' requirements-core.txt
}
build() {
cd "${srcdir}/orange3-$pkgver"
python setup.py build
}
package() {
cd "${srcdir}/orange3-$pkgver"
python setup.py install --root="${pkgdir}" --optimize=1
install -Dm644 distribute/orange-canvas.desktop "${pkgdir}"/usr/share/applications/orange-canvas.desktop
install -Dm644 distribute/icon-256.png "${pkgdir}"/usr/share/icons/hicolor/256x256/apps/orange-canvas.png
}
|