From 9bb9351976c4a0aac526ac43c8729e2da2deebc9 Mon Sep 17 00:00:00 2001 From: Jeffery To Date: Mon, 20 Feb 2023 00:45:10 +0800 Subject: [PATCH] python-tomli: Add new host-only package From the README: Tomli is a Python library for parsing TOML. Tomli is fully compatible with TOML v1.0.0. Signed-off-by: Jeffery To (cherry picked from commit 7d171049fde47161c67b2c2e905b833bc66613f0) --- lang/python/python-tomli/Makefile | 50 +++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 lang/python/python-tomli/Makefile diff --git a/lang/python/python-tomli/Makefile b/lang/python/python-tomli/Makefile new file mode 100644 index 0000000000..db615e39ba --- /dev/null +++ b/lang/python/python-tomli/Makefile @@ -0,0 +1,50 @@ +# +# Copyright (C) 2023 Jeffery To +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=python-tomli +PKG_VERSION:=2.0.1 +PKG_RELEASE:=1 + +PYPI_NAME:=tomli +PKG_HASH:=de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f + +PKG_LICENSE:=MIT +PKG_LICENSE_FILES:=LICENSE +PKG_MAINTAINER:=Jeffery To + +PKG_HOST_ONLY:=1 +HOST_BUILD_DEPENDS:=python3/host python-flit-core/host python-installer/host + +include ../pypi.mk +include $(INCLUDE_DIR)/package.mk +include $(INCLUDE_DIR)/host-build.mk +include ../python3-package.mk +include ../python3-host-build.mk + +define Package/python3-tomli + SECTION:=lang + CATEGORY:=Languages + SUBMENU:=Python + TITLE:=A lil' TOML parser + URL:=https://github.com/hukkin/tomli + DEPENDS:=+python3-light + BUILDONLY:=1 +endef + +define Package/python3-tomli/description +Tomli is a Python library for parsing TOML. Tomli is fully compatible +with TOML v1.0.0. +endef + +Host/Compile=$(Py3Host/Compile/Bootstrap) + +$(eval $(call Py3Package,python3-tomli)) +$(eval $(call BuildPackage,python3-tomli)) +$(eval $(call BuildPackage,python3-tomli-src)) +$(eval $(call HostBuild)) -- 2.30.2