This removes: * Python 3 variants (VARIANT:=python3) * "for Python3" from package titles * Package selection condition from package dependencies, e.g. +PACKAGE_python3-six:python3-light replaced with +python3-light * "Default" package information sections, e.g. Package/python-six/Default removed and package details merged into Package/python3-six * "(Variant for Python3)" from package descriptions Signed-off-by: Jeffery To <jeffery.to@gmail.com>
50 lines
1.3 KiB
Makefile
50 lines
1.3 KiB
Makefile
#
|
|
# 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.7
|
|
PKG_RELEASE:=2
|
|
|
|
PYPI_NAME:=pyroute2
|
|
PKG_HASH:=963fce07da2841456d39e3b932b071f6de28d23dadfae014022d67a752916f98
|
|
|
|
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 ../pypi.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../python3-package.mk
|
|
|
|
define Package/python3-pyroute2
|
|
SUBMENU:=Python
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
TITLE:=Python netlink library
|
|
URL:=https://github.com/svinota/pyroute2
|
|
DEPENDS:= \
|
|
+python3-light \
|
|
+python3-distutils \
|
|
+python3-logging \
|
|
+python3-multiprocessing \
|
|
+python3-sqlite3 \
|
|
+python3-ctypes
|
|
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,python3-pyroute2))
|
|
$(eval $(call BuildPackage,python3-pyroute2))
|
|
$(eval $(call BuildPackage,python3-pyroute2-src))
|