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

View File

@@ -0,0 +1,8 @@
config BR2_PACKAGE_PYTHON_TYPING
bool "python-typing"
depends on BR2_PACKAGE_PYTHON
help
Type Hints for Python. This is a backport of the standard
library typing module to Python versions older than 3.5.
https://docs.python.org/3/library/typing.html

View File

@@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/typing/json
md5 64614206b4bdc0864fc0e0bccd69efc9 typing-3.6.6.tar.gz
sha256 4027c5f6127a6267a435201981ba156de91ad0d1d98e9ddc2aa173453453492d typing-3.6.6.tar.gz
# Locally computed sha256 checksums
sha256 ff17ce94e102024deb68773eb1cc74ca76da4e658f373531f0ac22d68a6bb1ad LICENSE

View File

@@ -0,0 +1,15 @@
################################################################################
#
# python-typing
#
################################################################################
PYTHON_TYPING_VERSION = 3.6.6
PYTHON_TYPING_SOURCE = typing-$(PYTHON_TYPING_VERSION).tar.gz
PYTHON_TYPING_SITE = https://files.pythonhosted.org/packages/bf/9b/2bf84e841575b633d8d91ad923e198a415e3901f228715524689495b4317
PYTHON_TYPING_SETUP_TYPE = setuptools
PYTHON_TYPING_LICENSE = Python-2.0, others
PYTHON_TYPING_LICENSE_FILES = LICENSE
$(eval $(python-package))
$(eval $(host-python-package))