create rootf's & SDK from 2018.02.9 buildroot (#10)

---------

Co-authored-by: tiopex <tiopxyz@gmail.com>
Co-authored-by: tiopex <67048640+tiopex@users.noreply.github.com>
This commit is contained in:
Apaczer
2023-03-11 21:06:02 +01:00
committed by GitHub
parent 534f7aea40
commit dcf31c6a1e
12528 changed files with 149032 additions and 303063 deletions
+3 -2
View File
@@ -1,12 +1,13 @@
config BR2_PACKAGE_PYTHON_CHEETAH
bool "python-cheetah"
depends on BR2_PACKAGE_PYTHON
help
Cheetah is an open source template engine and code
generation tool.
It can be used standalone or combined with other tools and
frameworks. Web development is its principle use, but
frameworks. Web development is its principle use, but
Cheetah is very flexible and is also being used to generate
C++ game code, Java, sql, form emails and even Python code.
https://pypi.org/project/Cheetah3/
https://pypi.python.org/pypi/Cheetah/
+4 -5
View File
@@ -1,5 +1,4 @@
# From https://pypi.org/pypi/Cheetah3/json
md5 42bb9da785974c7e4089aa754ff99a73 Cheetah3-3.2.6.post2.tar.gz
sha256 63157d7a00a273b59676b5be5aa817c75c37efc88478231f1a160f4cfb7f7878 Cheetah3-3.2.6.post2.tar.gz
# Locally computed sha256 checksums
sha256 635349ae512fafc2e60eb74a50d0a5276fa06c00b5ecb20da53546449ddc45ea LICENSE
# From https://pypi.python.org/pypi/Cheetah/2.4.4
md5 853917116e731afbc8c8a43c37e6ddba Cheetah-2.4.4.tar.gz
# Calculated based on the hash above
sha256 be308229f0c1e5e5af4f27d7ee06d90bb19e6af3059794e5fd536a6f29a9b550 Cheetah-2.4.4.tar.gz
+9 -4
View File
@@ -4,12 +4,17 @@
#
################################################################################
PYTHON_CHEETAH_VERSION = 3.2.6.post2
PYTHON_CHEETAH_SOURCE = Cheetah3-$(PYTHON_CHEETAH_VERSION).tar.gz
PYTHON_CHEETAH_SITE = https://files.pythonhosted.org/packages/c0/97/c3fa47e223207e6ca6b501a954c5c959ed3e99f2a1ceec9918238ce38418
PYTHON_CHEETAH_VERSION = 2.4.4
PYTHON_CHEETAH_SOURCE = Cheetah-$(PYTHON_CHEETAH_VERSION).tar.gz
PYTHON_CHEETAH_SITE = https://pypi.python.org/packages/source/C/Cheetah
PYTHON_CHEETAH_LICENSE = MIT
PYTHON_CHEETAH_LICENSE_FILES = LICENSE
PYTHON_CHEETAH_SETUP_TYPE = setuptools
HOST_PYTHON_CHEETAH_NEEDS_HOST_PYTHON = python2
# The dependency on host-python-markdown is needed to prevent
# setuptools from downloading markdown if it is not installed yet.
HOST_PYTHON_CHEETAH_DEPENDENCIES = host-python-markdown
$(eval $(python-package))
$(eval $(host-python-package))