From 0.9.1 the pyroute2 core is async, the synchronous API remains available as a wrapper. Upstream changelog: https://github.com/svinota/pyroute2/blob/0.9.4/CHANGELOG.rst pyroute2 now requires the python3 ssl module at runtime. This is reflected in Config.in. Signed-off-by: Fiona Klute (WIWA) <fiona.klute@gmx.de> [Julien: - add comment in commit log about new ssl runtime dependency - add runtime comment in Config.in ] Signed-off-by: Julien Olivain <ju.o@free.fr>
15 lines
626 B
Makefile
15 lines
626 B
Makefile
################################################################################
|
|
#
|
|
# python-pyroute2
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_PYROUTE2_VERSION = 0.9.4
|
|
PYTHON_PYROUTE2_SOURCE = pyroute2-$(PYTHON_PYROUTE2_VERSION).tar.gz
|
|
PYTHON_PYROUTE2_SITE = https://files.pythonhosted.org/packages/b0/5e/fc64e211cce0078555c6db98aaf14348aed527565f3c4876913a290a5b2c
|
|
PYTHON_PYROUTE2_LICENSE = Apache-2.0 or GPL-2.0+
|
|
PYTHON_PYROUTE2_LICENSE_FILES = LICENSE.Apache-2.0 LICENSE.GPL-2.0-or-later README.license.rst
|
|
PYTHON_PYROUTE2_SETUP_TYPE = setuptools
|
|
|
|
$(eval $(python-package))
|