mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-10-09 22:41:09 +02:00
48 lines
1.2 KiB
Plaintext
48 lines
1.2 KiB
Plaintext
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py-netdisco
|
|
_pkgname=netdisco
|
|
pkgver=0.9.2
|
|
pkgrel=0
|
|
pkgdesc="Python library to scan local network for services and devices"
|
|
url="https://github.com/home-assistant/netdisco/"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="py-zeroconf py-requests py-netifaces"
|
|
makedepends="python2-dev py-setuptools python3-dev"
|
|
subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
python2 setup.py build || return 1
|
|
python3 setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir"
|
|
}
|
|
|
|
_py2() {
|
|
replaces="$pkgname"
|
|
depends="${depends//py-/py2-}"
|
|
_py python2
|
|
}
|
|
|
|
_py3() {
|
|
depends="${depends//py-/py3-}"
|
|
_py python3
|
|
}
|
|
|
|
_py() {
|
|
local python="$1"
|
|
pkgdesc="$pkgdesc (for $python)"
|
|
depends="$depends $python"
|
|
install_if="$pkgname=$pkgver-r$pkgrel $python"
|
|
|
|
cd "$builddir"
|
|
$python setup.py install --prefix=/usr --root="$subpkgdir"
|
|
}
|
|
|
|
sha512sums="7b3023c51a7bd10db4aa35daccf411cbb4363f73a285092b3eaad8f1474cf681eac1b434af9cd1addbe5eeac48498da0c3aa2c19caf36f818ee0ae3aa2ff099f netdisco-0.9.2.tar.gz"
|