Commit c994d563 authored by Yegor Yefremov's avatar Yegor Yefremov Committed by Thomas Petazzoni
Browse files

python-pyroute2: new package



[Thomas:
  - fix legal info:
    * the license is GPLv2+ *or* Apache 2.0
    * the license files list separator is space, not comma
    * README.license.md has been added to the license files, since it
      contains some useful information about the licensing.
  - rewrap Config.in help text.]

Signed-off-by: default avatarYegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 7270f114
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -646,6 +646,7 @@ menu "external python modules"
	source "package/python-pypcap/Config.in"
	source "package/python-pyqt/Config.in"
	source "package/python-pyro/Config.in"
	source "package/python-pyroute2/Config.in"
	source "package/python-pysendfile/Config.in"
	source "package/python-pysnmp/Config.in"
	source "package/python-pysnmp-apps/Config.in"
+7 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_PYTHON_PYROUTE2
	bool "python-pyroute2"
	help
	  Python netlink library - Linux network / netns / wireless /
	  ipset configuration.

	  https://github.com/svinota/pyroute2
+21 −0
Original line number Diff line number Diff line
#############################################################
#
# python-pyroute2
#
#############################################################

PYTHON_PYROUTE2_VERSION = 16a8aced82c65b94eb9e15a7d773a3256763d155
PYTHON_PYROUTE2_SITE = $(call github,svinota,pyroute2,$(PYTHON_PYROUTE2_VERSION))
PYTHON_PYROUTE2_LICENSE = Apache-2.0 or GPLv2+
PYTHON_PYROUTE2_LICENSE_FILES = LICENSE.Apache.v2 LICENSE.GPL.v2 README.license.md
PYTHON_PYROUTE2_SETUP_TYPE = distutils
PYTHON_PYROUTE2_DEPENDENCIES = host-gawk

# this hook is needed to create setup.py from setup.py.in
define PYTHON_PYROUTE2_CREATE_SETUP_PY
	$(TARGET_MAKE_ENV) $(MAKE1) -C $(@D) update-version
endef

PYTHON_PYROUTE2_PRE_CONFIGURE_HOOKS += PYTHON_PYROUTE2_CREATE_SETUP_PY

$(eval $(python-package))