update buildroot to 2017.02.11
This commit is contained in:
12
bsp/buildroot-2017.02.11/package/python-pexpect/Config.in
Normal file
12
bsp/buildroot-2017.02.11/package/python-pexpect/Config.in
Normal 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
|
||||
@@ -0,0 +1,3 @@
|
||||
# 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
|
||||
@@ -0,0 +1,24 @@
|
||||
################################################################################
|
||||
#
|
||||
# python-pexpect
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PYTHON_PEXPECT_VERSION = 4.2.1
|
||||
PYTHON_PEXPECT_SOURCE = pexpect-$(PYTHON_PEXPECT_VERSION).tar.gz
|
||||
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))
|
||||
Reference in New Issue
Block a user