diff options
| author | Rosen Penev | 2026-02-07 00:37:14 +0000 |
|---|---|---|
| committer | Hannu Nyman | 2026-02-14 12:58:44 +0000 |
| commit | 126562da3048501bb2c5f6219fa09261f087da01 (patch) | |
| tree | b94f8105c743fe2b990b7ffa44a438f96710d8d7 | |
| parent | 1d3b5f7791d1d33289a0a0a74b17dc117bb0e58f (diff) | |
| download | packages-126562da3048501bb2c5f6219fa09261f087da01.tar.gz | |
python-gevent: use LF for Makefile
Done with all other Makefiles.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
| -rw-r--r-- | lang/python/python-gevent/Makefile | 98 |
1 files changed, 49 insertions, 49 deletions
diff --git a/lang/python/python-gevent/Makefile b/lang/python/python-gevent/Makefile index e1f1403611..37007fb07d 100644 --- a/lang/python/python-gevent/Makefile +++ b/lang/python/python-gevent/Makefile @@ -1,49 +1,49 @@ -include $(TOPDIR)/rules.mk
-
-PKG_NAME:=python-gevent
-PKG_VERSION:=25.9.1
-PKG_RELEASE:=1
-
-PYPI_NAME:=gevent
-PKG_HASH:=adf9cd552de44a4e6754c51ff2e78d9193b7fa6eab123db9578a210e657235dd
-
-PKG_MAINTAINER:=Andy Syam <privasisource@gmail.com>
-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))
+include $(TOPDIR)/rules.mk + +PKG_NAME:=python-gevent +PKG_VERSION:=25.9.1 +PKG_RELEASE:=1 + +PYPI_NAME:=gevent +PKG_HASH:=adf9cd552de44a4e6754c51ff2e78d9193b7fa6eab123db9578a210e657235dd + +PKG_MAINTAINER:=Andy Syam <privasisource@gmail.com> +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)) |