python-greenlet: add new package
authorJan Pavlinec <jan.pavlinec@nic.cz>
Tue, 9 Mar 2021 11:56:46 +0000 (12:56 +0100)
committerJosef Schlehofer <pepe.schlehofer@gmail.com>
Sat, 8 May 2021 08:43:52 +0000 (10:43 +0200)
Notes:
Build is disabled for arc and mips because
greenlet isn't ported for these platforms

Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
(cherry picked from commit 837f1b59248e3ee885fc142154c65eff3b4516c7)

lang/python/python-greenlet/Makefile [new file with mode: 0644]

diff --git a/lang/python/python-greenlet/Makefile b/lang/python/python-greenlet/Makefile
new file mode 100644 (file)
index 0000000..1300371
--- /dev/null
@@ -0,0 +1,44 @@
+#
+# Copyright (C) 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-greenlet
+PKG_VERSION:=1.0.0
+PKG_RELEASE:=1
+
+PYPI_NAME:=greenlet
+PKG_HASH:=719e169c79255816cdcf6dccd9ed2d089a72a9f6c42273aae12d55e8d35bdcf8
+
+PKG_MAINTAINER:=Jan Pavlinec <jan.pavlinec@nic.cz>
+PKG_LICENSE:=MIT
+PKG_LICENSE_FILES:=LICENSE
+
+include ../pypi.mk
+include $(INCLUDE_DIR)/package.mk
+include ../python3-package.mk
+
+define Package/python3-greenlet
+  SUBMENU:=Python
+  SECTION:=lang
+  CATEGORY:=Languages
+  TITLE:=Lightweight coroutines for in-process concurrent programming
+  URL:=https://github.com/python-greenlet/greenlet
+  DEPENDS:= \
+       +python3-light \
+       +libstdcpp \
+       @!(arc||mips)
+endef
+
+define Package/python3-greenlet/description
+  The greenlet package is a spin-off of Stackless
+  a version of CPython that supports micro-threads called tasklets.
+endef
+
+$(eval $(call Py3Package,python3-greenlet))
+$(eval $(call BuildPackage,python3-greenlet))
+$(eval $(call BuildPackage,python3-greenlet-src))