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
+1 -1
View File
@@ -4,7 +4,7 @@ config BR2_PACKAGE_PYTHON_PEXPECT
help
Pexpect is a pure Python module for spawning child
applications; controlling them; and responding to expected
patterns in their output. Pexpect works like Don Libes'
patterns in their output. Pexpect works like Don Libes
Expect. Pexpect allows your script to spawn a child
application and control it as if a human were typing
commands.
+3 -5
View File
@@ -1,5 +1,3 @@
# md5, sha256 from https://pypi.org/pypi/pexpect/json
md5 153eb25184249d6a85fde9acf4804085 pexpect-4.8.0.tar.gz
sha256 fc65a43959d153d0114afe13997d439c22823a27cefceb5ff35c2178c6784c0c pexpect-4.8.0.tar.gz
# Locally computed sha256 checksums
sha256 4a483ae1c4dc738a6c8b73feb49074e1835da02ab5aa686f2675029906fa364d LICENSE
# md5 from https://pypi.python.org/pypi/pexpect/json, sha256 locally computed
md5 3694410001a99dff83f0b500a1ca1c95 pexpect-4.2.1.tar.gz
sha256 3d132465a75b57aa818341c6521392a06cc660feb3988d7f1074f39bd23c9a92 pexpect-4.2.1.tar.gz
+12 -2
View File
@@ -4,11 +4,21 @@
#
################################################################################
PYTHON_PEXPECT_VERSION = 4.8.0
PYTHON_PEXPECT_VERSION = 4.2.1
PYTHON_PEXPECT_SOURCE = pexpect-$(PYTHON_PEXPECT_VERSION).tar.gz
PYTHON_PEXPECT_SITE = https://files.pythonhosted.org/packages/e5/9b/ff402e0e930e70467a7178abb7c128709a30dfb22d8777c043e501bc1b10
PYTHON_PEXPECT_SITE = https://pypi.python.org/packages/e8/13/d0b0599099d6cd23663043a2a0bb7c61e58c6ba359b2656e6fb000ef5b98
PYTHON_PEXPECT_LICENSE = ISC
PYTHON_PEXPECT_LICENSE_FILES = LICENSE
PYTHON_PEXPECT_SETUP_TYPE = distutils
# async.py is not usable with Python 2, and removing is the solution
# recommended by upstream:
# https://github.com/pexpect/pexpect/issues/290
ifeq ($(BR2_PACKAGE_PYTHON),y)
define PYTHON_PEXPECT_REMOVE_ASYNC_PY
$(RM) $(@D)/pexpect/async.py
endef
PYTHON_PEXPECT_POST_PATCH_HOOKS += PYTHON_PEXPECT_REMOVE_ASYNC_PY
endif
$(eval $(python-package))