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: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Yegor Yefremov 2015-08-11 17:35:26 +02:00 committed by Thomas Petazzoni
parent 7270f114b0
commit c994d56383
3 changed files with 29 additions and 0 deletions

View File

@ -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"

View File

@ -0,0 +1,7 @@
config BR2_PACKAGE_PYTHON_PYROUTE2
bool "python-pyroute2"
help
Python netlink library - Linux network / netns / wireless /
ipset configuration.
https://github.com/svinota/pyroute2

View File

@ -0,0 +1,21 @@
#############################################################
#
# 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))