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
+9
View File
@@ -0,0 +1,9 @@
config BR2_PACKAGE_PYTHON_SIX
bool "python-six"
help
Six is a Python 2 and 3 compatibility library. It provides
utility functions for smoothing over the differences between
the Python versions with the goal of writing Python code that
is compatible on both Python versions.
http://pythonhosted.org/six
+9
View File
@@ -0,0 +1,9 @@
config BR2_PACKAGE_HOST_PYTHON_SIX
bool "host python-six"
help
Six is a Python 2 and 3 compatibility library. It provides
utility functions for smoothing over the differences between
the Python versions with the goal of writing Python code that
is compatible on both Python versions.
http://pythonhosted.org/six
+5
View File
@@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/six/json
md5 9ae5d1feed8c0215f4ae4adcd9207fcb six-1.12.0.tar.gz
sha256 d16a0141ec1a18405cd4ce8b4613101da75da0e9a7aec5bdd4fa804d0e0eba73 six-1.12.0.tar.gz
# Locally computed sha256 checksums
sha256 e732f54da58f3e9cf0c48e8b512948936fcf7361bd58afa63a9a3c392bf794ad LICENSE
+15
View File
@@ -0,0 +1,15 @@
################################################################################
#
# python-six
#
################################################################################
PYTHON_SIX_VERSION = 1.12.0
PYTHON_SIX_SOURCE = six-$(PYTHON_SIX_VERSION).tar.gz
PYTHON_SIX_SITE = https://files.pythonhosted.org/packages/dd/bf/4138e7bfb757de47d1f4b6994648ec67a51efe58fa907c1e11e350cddfca
PYTHON_SIX_SETUP_TYPE = setuptools
PYTHON_SIX_LICENSE = MIT
PYTHON_SIX_LICENSE_FILES = LICENSE
$(eval $(python-package))
$(eval $(host-python-package))