blob: deaa399b8172340b17779e5683d2700da1d1a180 (
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
|
# Maintainer: Daniel Bershatsky <bepshatsky@yandex.ru>
# Build CLI and Python wrapper without GPU support.
pkgname=catboost-git
pkgver=0.12.2
pkgrel=3
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')
makedepends=('python-pip')
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
echo 'command line utility'
cd "$srcdir/catboost/catboost/app"
../../ya make -r \
-DNO_DEBUGINFO \
-DUSE_ARCADIA_PYTHON=no \
-DOS_SDK=local \
-DPYTHON_CONFIG=python-config \
-DHAVE_CUDA=no
echo 'python package'
cd "$srcdir/catboost/catboost/python-package/catboost"
../../../ya make -r \
-DNO_DEBUGINFO \
-DUSE_ARCADIA_PYTHON=no \
-DOS_SDK=local \
-DPYTHON_CONFIG=python-config \
-DHAVE_CUDA=no
cd "$srcdir/catboost/catboost/python-package"
python3 mk_wheel.py
}
package() {
cd "$srcdir/catboost/catboost/app"
mkdir -p "$pkgdir/usr/bin"
cp catboost "$pkgdir/usr/bin/catboost"
cd "$srcdir/catboost/catboost/python-package"
pip3 install \
--ignore-installed \
--no-deps \
--prefix $pkgdir/usr \
catboost-*.whl
}
|