This commit is contained in:
TriForceX
2019-09-25 20:51:37 -03:00
commit 6203ff3e7c
11215 changed files with 428258 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
config BR2_PACKAGE_PYTHON_FALCON
bool "python-falcon"
help
An unladen web framework for building APIs and app
backends.
https://falconframework.org
+5
View File
@@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/falcon/json
md5 77c52c144dd284e6259d257c6f008072 falcon-2.0.0.tar.gz
sha256 eea593cf466b9c126ce667f6d30503624ef24459f118c75594a69353b6c3d5fc falcon-2.0.0.tar.gz
# Locally computed sha256 checksums
sha256 e9e7f1a7ba764f042e56afce6f3563c2be9c4fffbb1404b20f8050ae051f577c LICENSE
+18
View File
@@ -0,0 +1,18 @@
################################################################################
#
# python-falcon
#
################################################################################
PYTHON_FALCON_VERSION = 2.0.0
PYTHON_FALCON_SOURCE = falcon-$(PYTHON_FALCON_VERSION).tar.gz
PYTHON_FALCON_SITE = https://files.pythonhosted.org/packages/19/30/edff5a1fea7a8e9876c8391e170263e1bb207875b6a65cd619818487b27b
PYTHON_FALCON_SETUP_TYPE = setuptools
PYTHON_FALCON_LICENSE = Apache-2.0
PYTHON_FALCON_LICENSE_FILES = LICENSE
ifeq ($(BR2_PACKAGE_HOST_PYTHON_CYTHON),y)
PYTHON_FALCON_DEPENDENCIES += host-python-cython
endif
$(eval $(python-package))