From f8e15596fc2acf627748ccea21a40fd78dc295c6 Mon Sep 17 00:00:00 2001 From: Erik Larsson Date: Mon, 1 Feb 2021 10:38:26 +0100 Subject: [PATCH] python-ubus: add package Python bindings for ubus. Signed-off-by: Erik Larsson --- lang/python/python-ubus/Makefile | 40 ++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 lang/python/python-ubus/Makefile diff --git a/lang/python/python-ubus/Makefile b/lang/python/python-ubus/Makefile new file mode 100644 index 0000000000..c980399fd0 --- /dev/null +++ b/lang/python/python-ubus/Makefile @@ -0,0 +1,40 @@ +# +# Copyright (C) 2018-2020 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-ubus +PKG_VERSION:=0.1.1 +PKG_RELEASE:=$(AUTORELEASE) + +PYPI_NAME:=ubus +PKG_HASH:=7e57bda989bc35b48c7075d03ec2818226e722bbf1bde138d7e7ea26d462682a + +PKG_MAINTAINER:=Erik Larsson +PKG_LICENSE:=LGPL-2.1-or-later +PKG_LICENSE_FILES:=LICENSE + +include ../pypi.mk +include $(INCLUDE_DIR)/package.mk +include ../python3-package.mk + +define Package/python3-ubus + SUBMENU:=Python + SECTION:=lang + CATEGORY:=Languages + TITLE:=Python3 ubus + URL:=https://gitlab.nic.cz/turris/python-ubus/ + DEPENDS:=+libubus +libblobmsg-json +python3-light +endef + +define Package/python3-ubus/description + Python bindings for ubus. +endef + +$(eval $(call Py3Package,python3-ubus)) +$(eval $(call BuildPackage,python3-ubus)) +$(eval $(call BuildPackage,python3-ubus-src))