This commit is contained in:
TriForceX
2021-03-13 22:13:38 -03:00
parent c77595adbd
commit b3ecc6e32d
7043 changed files with 119373 additions and 73690 deletions
+19
View File
@@ -0,0 +1,19 @@
config BR2_PACKAGE_PYTHON_GREENLET_ARCH_SUPPORTS
bool
default y if BR2_arm || BR2_armeb
default y if BR2_aarch64
default y if BR2_csky
default y if BR2_m68k
default y if BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el
default y if BR2_powerpc || BR2_powerpc64 || BR2_powerpc64le
default y if BR2_riscv
default y if BR2_sparc || BR2_sparc64
default y if BR2_i386 || BR2_x86_64
config BR2_PACKAGE_PYTHON_GREENLET
bool "python-greenlet"
depends on BR2_PACKAGE_PYTHON_GREENLET_ARCH_SUPPORTS
help
Lightweight in-process concurrent programming.
https://github.com/python-greenlet/greenlet
@@ -0,0 +1,6 @@
# md5, sha256 from https://pypi.org/pypi/greenlet/json
md5 9aebea08f7beb6b87143d0588578c984 greenlet-0.4.16.tar.gz
sha256 6e06eac722676797e8fce4adb8ad3dc57a1bb3adfb0dd3fdf8306c055a38456c greenlet-0.4.16.tar.gz
# Locally computed sha256 checksums
sha256 bbde55d5456a1e912633ed3f66d1dbd9504e3e3dce4f4c2015043cdcbc56e697 LICENSE
sha256 e5ff3c23c110e494cd7d736c10fd96d462457bafeca310840db6527298c7d46b LICENSE.PSF
@@ -0,0 +1,14 @@
################################################################################
#
# python-greenlet
#
################################################################################
PYTHON_GREENLET_VERSION = 0.4.16
PYTHON_GREENLET_SOURCE = greenlet-$(PYTHON_GREENLET_VERSION).tar.gz
PYTHON_GREENLET_SITE = https://files.pythonhosted.org/packages/20/5e/b989a19f4597b825f44125345cd8a8574216fae7fafe69e2cb1238ebd18a
PYTHON_GREENLET_SETUP_TYPE = distutils
PYTHON_GREENLET_LICENSE = MIT, PSF-2.0
PYTHON_GREENLET_LICENSE_FILES = LICENSE LICENSE.PSF
$(eval $(python-package))