[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,12 @@
config BR2_PACKAGE_PYTHON_PEXPECT
bool "python-pexpect"
select BR2_PACKAGE_PYTHON_PTYPROCESS # runtime
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'
Expect. Pexpect allows your script to spawn a child
application and control it as if a human were typing
commands.
https://pexpect.readthedocs.org

View File

@ -0,0 +1,5 @@
# 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

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-pexpect
#
################################################################################
PYTHON_PEXPECT_VERSION = 4.8.0
PYTHON_PEXPECT_SOURCE = pexpect-$(PYTHON_PEXPECT_VERSION).tar.gz
PYTHON_PEXPECT_SITE = https://files.pythonhosted.org/packages/e5/9b/ff402e0e930e70467a7178abb7c128709a30dfb22d8777c043e501bc1b10
PYTHON_PEXPECT_LICENSE = ISC
PYTHON_PEXPECT_LICENSE_FILES = LICENSE
PYTHON_PEXPECT_SETUP_TYPE = distutils
$(eval $(python-package))