From c6c1dfc50b7dbf033f2cd7a90b795120da9bada6 Mon Sep 17 00:00:00 2001 From: Andy Syam Date: Sat, 23 Dec 2023 16:14:41 +0800 Subject: [PATCH] python-gevent: add python-gevent https://pypi.org/project/gevent/ https://www.gevent.org/development/installing_from_source.html source code https://github.com/gevent/gevent Signed-off-by: Andy Syam --- lang/python/python-gevent/Makefile | 49 ++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 lang/python/python-gevent/Makefile diff --git a/lang/python/python-gevent/Makefile b/lang/python/python-gevent/Makefile new file mode 100644 index 0000000000..92e2dbc26a --- /dev/null +++ b/lang/python/python-gevent/Makefile @@ -0,0 +1,49 @@ +include $(TOPDIR)/rules.mk + +PKG_NAME:=python-gevent +PKG_VERSION:=23.9.1 +PKG_RELEASE:=1 + +PYPI_NAME:=gevent +PKG_HASH:=72c002235390d46f94938a96920d8856d4ffd9ddf62a303a0d7c118894097e34 + +PKG_MAINTAINER:=Andy Syam +PKG_LICENSE:=MIT +PKG_LICENSE_FILES:=LICENSE + +PKG_BUILD_FLAGS:=no-mips16 +PKG_BUILD_DEPENDS:=python-cffi/host python-greenlet/host python-cython/host + +include ../pypi.mk +include $(INCLUDE_DIR)/package.mk +include ../python3-package.mk + +PYTHON3_PKG_SETUP_VARS:= \ + GEVENTSETUP_EMBED=0 \ + GEVENTSETUP_EMBED_LIBEV=0 \ + GEVENTSETUP_EMBED_CARES=0 + +define Package/python3-gevent + SUBMENU:=Python + SECTION:=lang + CATEGORY:=Languages + TITLE:=Coroutine-based network library + URL:=https://github.com/gevent/gevent + DEPENDS:= \ + +python3-light \ + +python3-cffi \ + +python3-greenlet \ + +python3-zope-interface \ + +libcares \ + +libev \ + +libuv +endef + +define Package/python3-gevent/description + gevent is a coroutine -based Python networking library that uses greenlet + to provide a high-level synchronous API on top of the libev or libuv event loop. +endef + +$(eval $(call Py3Package,python3-gevent)) +$(eval $(call BuildPackage,python3-gevent)) +$(eval $(call BuildPackage,python3-gevent-src))