[Mod] First commit

This commit is contained in:
2022-10-31 22:18:58 +08:00
commit 1c8a3d9709
13090 changed files with 526733 additions and 0 deletions

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

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

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/six/json
md5 a7c927740e4964dd29b72cebfc1429bb six-1.16.0.tar.gz
sha256 1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926 six-1.16.0.tar.gz
# Locally computed sha256 checksums
sha256 8bb850c565aa389fdc16f3a46965ad23d82adff60f2393fc2762b63185e8e6c9 LICENSE

View File

@ -0,0 +1,15 @@
################################################################################
#
# python-six
#
################################################################################
PYTHON_SIX_VERSION = 1.16.0
PYTHON_SIX_SOURCE = six-$(PYTHON_SIX_VERSION).tar.gz
PYTHON_SIX_SITE = https://files.pythonhosted.org/packages/71/39/171f1c67cd00715f190ba0b100d606d440a28c93c7714febeca8b79af85e
PYTHON_SIX_SETUP_TYPE = setuptools
PYTHON_SIX_LICENSE = MIT
PYTHON_SIX_LICENSE_FILES = LICENSE
$(eval $(python-package))
$(eval $(host-python-package))