blob: 837ca256e95fc4e9c6ab70561039245d3b0bf914 (
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
|
# Maintainer: Daniel Bershatsky <bepshatsky@yandex.ru>
pkgname=python-catboost-gpu-git
pkgver=0.13
pkgrel=1
epoch=0
pkgdesc="CatBoost is an open-source gradient boosting on decision trees library with categorical features support out of the box."
arch=('i686' 'x86_64')
url="https://catboost.yandex"
license=('Apache-2.0')
depends=('python-six' 'python-numpy' 'cuda')
makedepends=()
checkdepends=()
optdepends=('python-pandas' 'python-ipywidgets')
provides=()
conflicts=()
replaces=()
backup=()
options=()
source=('catboost::git+https://github.com/catboost/catboost.git')
md5sums=('SKIP')
validpgpkeys=()
pkgver() {
cd "$srcdir/catboost"
printf "$(git describe | sed -E 's/^v([0-9]+\.[0-9]+(\.[0-9]+)?).*$/\1/')"
}
build() {
export YA_CACHE_DIR=/tmp/.ya
cd "$srcdir/catboost/catboost/python-package/catboost"
../../../ya make -r \
-DNO_DEBUGINFO \
-DUSE_ARCADIA_PYTHON=no \
-DOS_SDK=local \
-DPYTHON_CONFIG=python3-config \
-DHAVE_CUDA=yes \
-DCUDA_ROOT=/opt/cuda
cd "$srcdir/catboost/catboost/python-package"
python3 mk_wheel.py -DCUDA_ROOT=/opt/cuda
}
package() {
cd "$srcdir/catboost/catboost/python-package"
pip3 install -I --no-deps --prefix $pkgdir/usr catboost-*.whl
}
|