python3-pyroute2: add new package
Signed-off-by: Martin Matějek <martin.matejek@gmx.com>
This commit is contained in:
parent
17b1a3fcfe
commit
d65204093c
1 changed files with 53 additions and 0 deletions
53
lang/python/python3-pyroute2/Makefile
Normal file
53
lang/python/python3-pyroute2/Makefile
Normal file
|
@ -0,0 +1,53 @@
|
|||
#
|
||||
# Copyright (C) 2019 CZ.NIC, z. s. p. o. (https://www.nic.cz/)
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=python3-pyroute2
|
||||
PKG_VERSION:=0.5.5
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_SOURCE:=pyroute2-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=https://files.pythonhosted.org/packages/source/p/pyroute2
|
||||
PKG_HASH:=ad679a91d453fe8426c4076d0da3a67265e5ccfe641879d75c9bc7660d075dfa
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/pyroute2-$(PKG_VERSION)
|
||||
|
||||
PKG_MAINTAINER:=Martin Matějek <martin.matejek@nic.cz>
|
||||
PKG_LICENSE:=GPL-2.0-or-later Apache-2.0
|
||||
PKG_LICENSE_FILES:=LICENSE.GPL.v2 LICENSE.Apache.v2
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
include ../python3-package.mk
|
||||
|
||||
define Package/python3-pyroute2
|
||||
SUBMENU:=Python
|
||||
SECTION:=lang
|
||||
CATEGORY:=Languages
|
||||
TITLE:=Python netlink library
|
||||
URL:=http://github.com/svinota/pyroute2
|
||||
DEPENDS:= \
|
||||
+python3-light \
|
||||
+python3-distutils \
|
||||
+python3-logging \
|
||||
+python3-multiprocessing \
|
||||
+python3-sqlite3 \
|
||||
+python3-ctypes
|
||||
VARIANT:=python3
|
||||
endef
|
||||
|
||||
define Package/python3-pyroute2/description
|
||||
Pyroute2 is a pure Python netlink library.
|
||||
The library was started as an RTNL protocol implementation,
|
||||
but now it supports many netlink protocols.
|
||||
endef
|
||||
|
||||
PYTHON3_PKG_SETUP_ARGS:=
|
||||
|
||||
$(eval $(call Py3Package,$(PKG_NAME)))
|
||||
$(eval $(call BuildPackage,$(PKG_NAME)))
|
||||
$(eval $(call BuildPackage,$(PKG_NAME)-src))
|
Loading…
Reference in a new issue