aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py-napalm/APKBUILD
blob: 3cd40675090a3edddd13002e49a68c343c58cde3 (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
# Contributor: Leonardo Arena <rnalrd@alpinelinux.org>
# Maintainer:
pkgname=py-napalm
pkgver=2.2.0
pkgrel=0
pkgdesc="Network Automation and Programmability Abstraction Layer with Multivendor support"
url="https://github.com/napalm-automation/napalm"
arch="noarch"
license="Apache-2.0"
depends=""
makedepends="python2-dev python3-dev py-setuptools py2-pip"
options="!check" #no testsuite
subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
source="$pkgname-$pkgver.tar.gz::https://github.com/napalm-automation/napalm/archive/$pkgver.tar.gz"
builddir="$srcdir"/napalm-$pkgver

build() {
	cd "$builddir"
	python2 setup.py --quiet build
	python3 setup.py --quiet build
}

package() {
	cd "$builddir"
	mkdir -p "$pkgdir"/usr/bin
}

_py2() {
	depends="${depends//py-/py2-}"
	_py python2
}

_py3() {
	depends="${depends//py-/py3-}"
	_py python3
}

_py() {
	local python="$1"
	local pyver="${1:6:1}"
	pkgdesc="$pkgdesc (for $python)"
	depends="$depends $python"
	install_if="$pkgname=$pkgver-r$pkgrel $python"

	cd "$builddir"
	$python setup.py --quiet install --prefix=/usr --root="$subpkgdir"
}

sha512sums="b1a993fb7c2b873db5e63b2ad65e932749403999c1f23dff97d3b67eb4c3fb725bbfd4ddf7a58ce3c7effc5b3c2056a5b8c1d09ab76ca73e83aadb061db8832e  py-napalm-2.2.0.tar.gz"