blob: 4510b0544a4a2ff23d02cc43974c180c207179ff (
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
|
# Maintainer: Luis Martinez <luis dot martinez at disroot dot org>
# Contributor: Aetf <aetf at unlimitedcodeworks dot xyz>
pkgname=globus-cli
pkgver=3.11.0
pkgrel=1
pkgdesc='CLI for Globus'
arch=('any')
url='https://github.com/globus/globus-cli'
license=('Apache')
depends=('python-click' 'python-cryptography' 'python-globus-sdk=3.16.0' 'python-jmespath' 'python-requests')
makedepends=('git' 'python-build' 'python-installer' 'python-setuptools' 'python-wheel')
replaces=('python-globus-cli')
changelog=changelog.adoc
source=("$pkgname::git+$url#tag=$pkgver?signed")
sha256sums=('SKIP')
validpgpkeys=('FC694E40DC03A8B702D96372CF7E843C41E814C9')
prepare() {
cd "$pkgname"
sed -i '/jmespath/s/==/>=/' setup.py
}
build() {
cd "$pkgname"
python -m build --wheel --no-isolation
}
package() {
cd "$pkgname"
python -m installer --destdir "$pkgdir" dist/*.whl
}
|