blob: bf7a1afb597b48d86795f82277f8c07f85fec4b5 (
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: Michał Wojdyła < micwoj9292 at gmail dot com >
# Contributor: Albert Mikaelyan <tahvok at gmail dot com>
# Contributor: Mikkel Oscar Lyderik <mikkeloscar at gmail dot com>
_gituser=pycontribs
_pkgname=jenkinsapi
pkgbase=python-${_pkgname}-git
pkgname=("python-${_pkgname}-git")
pkgver=0.3.11.r30.g4494278
pkgrel=3
pkgdesc="A Python API for accessing resources on a Jenkins continuous-integration server."
arch=('any')
url="https://github.com/${_gituser}/${_pkgname}"
license=('MIT')
makedepends=("git" "python-build" "python-flit-core" "python-installer")
source=("${_pkgname}::git+https://github.com/pycontribs/jenkinsapi.git")
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/$_pkgname"
git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "${srcdir}/${_pkgname}"
python -m build --no-isolation --wheel
}
package() {
depends=("python" "python-urllib3" "python-setuptools" "python-requests" "python-pytz")
optdepends=("python-requests-kerberos: for Kerberos support")
conflicts=("python-${_pkgname}")
provides=("python-${_pkgname}")
cd "${srcdir}/${_pkgname}"
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}/
}
|