python3-pyroute2: Update to 0.7.9, rename source package
authorJeffery To <jeffery.to@gmail.com>
Wed, 19 Jul 2023 17:42:57 +0000 (01:42 +0800)
committerRosen Penev <rosenp@gmail.com>
Tue, 25 Jul 2023 05:45:55 +0000 (22:45 -0700)
This renames the source package to python-pyroute2 to match other Python
packages.

This also updates/simplifies the package dependencies.

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
lang/python/python-pyroute2/Makefile [new file with mode: 0644]
lang/python/python3-pyroute2/Makefile [deleted file]

diff --git a/lang/python/python-pyroute2/Makefile b/lang/python/python-pyroute2/Makefile
new file mode 100644 (file)
index 0000000..45996ca
--- /dev/null
@@ -0,0 +1,42 @@
+#
+# Copyright (C) 2019-2021 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:=python-pyroute2
+PKG_VERSION:=0.7.9
+PKG_RELEASE:=1
+
+PYPI_NAME:=pyroute2
+PKG_HASH:=b69d82f140b0774317d7ba40f6c5fa1d755098ba3f3eb619982d16e750dc631a
+
+PKG_MAINTAINER:=Martin Matějek <martin.matejek@nic.cz>
+PKG_LICENSE:=GPL-2.0-or-later Apache-2.0
+PKG_LICENSE_FILES:=LICENSE.GPL-2.0-or-later LICENSE.Apache-2.0
+
+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
+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
+
+$(eval $(call Py3Package,python3-pyroute2))
+$(eval $(call BuildPackage,python3-pyroute2))
+$(eval $(call BuildPackage,python3-pyroute2-src))
diff --git a/lang/python/python3-pyroute2/Makefile b/lang/python/python3-pyroute2/Makefile
deleted file mode 100644 (file)
index e6edfd8..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-#
-# Copyright (C) 2019-2021 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.16
-PKG_RELEASE:=2
-
-PYPI_NAME:=pyroute2
-PKG_HASH:=fe681a2d008cac815b9f287250d69a333fbfc2b2d89c37d58798104057149989
-
-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
-
-$(eval $(call Py3Package,python3-pyroute2))
-$(eval $(call BuildPackage,python3-pyroute2))
-$(eval $(call BuildPackage,python3-pyroute2-src))