mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Changelog: ========== -Add support for Python 3.12 -Clean up temporary files after UnicodeTests -Add Python 3.5, 3.6 and 3.12.0-rc.1 to test matrix -Set prompt correctly for zsh -Add zsh convenience function to replwrap module -Rework async unittests to rely on unittest.IsolatedAsyncioTestCase -Make test_expect.py work on POSIX systems that are not Linux based -Add support for socket, which allows sockets to be used crossplatform -Update async to work on newer versions of python -Remove deprecated RSAAuthentication option (SSHv1) -Multiple CI fixes -Use Github Actions for CI -Remove pytest-capturelog from testing requirements -Fix usage for Solaris -Fix threading for new versions of python -Fix documentation builds for use with Sphinx 3 -Use sys.executable for tests and wrapper, allowing the calling python executable to be used instead -Update documentation about Wexpect -Added project urls to setup.py -Provide examples for how to use Pexpect and Pyte -Coerce compiled regex patterns type according to spawn encoding -Several doc updates Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
25 lines
684 B
BlitzBasic
25 lines
684 B
BlitzBasic
SUMMARY = "A Pure Python Expect like Module for Python"
|
|
HOMEPAGE = "http://pexpect.readthedocs.org/"
|
|
SECTION = "devel/python"
|
|
LICENSE = "ISC"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=1c7a725251880af8c6a148181665385b"
|
|
|
|
SRC_URI += "file://0001-FSM.py-change-shebang-from-python-to-python3.patch"
|
|
|
|
SRC_URI[sha256sum] = "ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
UPSTREAM_CHECK_URI = "https://pypi.python.org/pypi/pexpect"
|
|
|
|
RDEPENDS:${PN} = "\
|
|
${PYTHON_PN}-core \
|
|
${PYTHON_PN}-io \
|
|
${PYTHON_PN}-terminal \
|
|
${PYTHON_PN}-resource \
|
|
${PYTHON_PN}-fcntl \
|
|
${PYTHON_PN}-ptyprocess \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|