blob: baa792dd34c46280419751ca4f07469ec5d7a1e8 (
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
|
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
# Contributor: Lex Black <autumn-wind@web.de>
# Contributor: Mr. Outis <mroutis@protonmail.com>
pkgname=dvc
pkgver=2.8.3
pkgrel=1
pkgdesc="Open-source version control system for data science projects"
arch=('any')
license=('Apache')
url="https://github.com/iterative/${pkgname}"
depends=('python' 'python-appdirs' 'python-colorama' 'python-configobj'
'python-distro' 'python-flufl-lock' 'python-funcy' 'python-gitdb'
'python-gitpython' 'python-humanize' 'python-inflect'
'python-packaging' 'python-pathspec' 'python-ply' 'python-pyasn1'
'python-yaml' 'python-requests' 'python-ruamel-yaml'
'python-setuptools' 'python-shortuuid' 'python-tqdm'
'python-treelib' 'python-voluptuous' 'python-zc.lockfile'
'python-nanotime' 'python-grandalf' 'python-ntfs' 'python-shtab'
'python-pygtrie'
)
optdepends=('python-google-cloud-storage: support for Google Cloud'
'python-google-api-python-client: support for GDrive'
'python-pydrive: support for GDrive'
'python-boto3: support for AWS S3 remote'
'python-paramiko: support for SSH remote'
'python-azure-storage: support for Azure remote'
'python-oss2: support for Aliyun Object Storage Service (OSS)'
'python-pyarrow: support for HDFS remote'
)
makedepends=('git')
source=("git+${url}/#commit=4175f9ffa4948157436283bef11153a7233e90ca")
sha256sums=('SKIP')
package() {
cd ${pkgname}
python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
}
|