mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-24 18:11:44 +01:00
50 lines
1.2 KiB
Plaintext
50 lines
1.2 KiB
Plaintext
# Contributor: Leonardo Arena <rnalrd@alpinelinux.org>
|
|
# Maintainer:
|
|
pkgname=py-napalm
|
|
pkgver=2.3.3
|
|
pkgrel=1
|
|
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="5eb87a00da81101e8ea3d8994ebfacd2d976328dfd2b7dbc7f2d90b8a6710c97def348bddede1164534edb24e51e0de56ecc3ed92029da36be4bbb3515cfd835 py-napalm-2.3.3.tar.gz"
|