aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--testing/py3-pyroute2/APKBUILD29
1 files changed, 29 insertions, 0 deletions
diff --git a/testing/py3-pyroute2/APKBUILD b/testing/py3-pyroute2/APKBUILD
new file mode 100644
index 0000000000..84f7bbfba1
--- /dev/null
+++ b/testing/py3-pyroute2/APKBUILD
@@ -0,0 +1,29 @@
+# Maintainer: Thomas Liske <thomas@fiasko-nw.net>
+pkgname=py3-pyroute2
+_pkgname=pyroute2
+pkgver=0.5.11
+pkgrel=0
+pkgdesc="Python Netlink library"
+url="https://github.com/svinota/pyroute2"
+arch="noarch"
+license="GPL-2.0-or-later OR Apache-2.0"
+makedepends="py3-setuptools py3-pytest"
+source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
+builddir="$srcdir/$_pkgname-$pkgver"
+
+check() {
+ pytest
+}
+
+build() {
+ python3 setup.py build
+}
+
+package() {
+ python3 setup.py install --prefix=/usr --root="$pkgdir"
+
+ # do not ship cli scripts for now
+ rm -rf "${pkgdir:?}/usr/bin"
+}
+
+sha512sums="38159cb3467711a73742c75154828563681df79dedba040a49fadc11afda5bbae756f724d89905fb24c7ce0d4fa0a6107aac9750586286a15eeffaaa8fa3d6bc pyroute2-0.5.11.tar.gz"