diff options
author | Alejandro Hernandez <alejandro.hernandez@linux.intel.com> | 2015-03-18 16:25:54 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-03-22 08:50:03 +0000 |
commit | 44c8637e2f8a654fda7aa4d06f4ddb27eb06e055 (patch) | |
tree | 929f5dff5ef47e13fae9a81f3cb1fc7135ffe6fe /meta/recipes-devtools/python | |
parent | d70c981b83bbfdda9a16e1e237c2f9b4088f4491 (diff) | |
download | poky-44c8637e2f8a654fda7aa4d06f4ddb27eb06e055.tar.gz |
python-pexpect: Creates a recipe for the pexpect python module
Based on the recipe contained in http://layers.openembedded.org/layerindex/branch/master/layer/meta-python
[YOCTO #7279]
(From OE-Core rev: e353c9a94d82eba6e2d9bce303e9be891cc2aec2)
Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python')
-rw-r--r-- | meta/recipes-devtools/python/python-pexpect_3.3.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python-pexpect_3.3.bb b/meta/recipes-devtools/python/python-pexpect_3.3.bb new file mode 100644 index 0000000000..cd80aeb2f1 --- /dev/null +++ b/meta/recipes-devtools/python/python-pexpect_3.3.bb | |||
@@ -0,0 +1,23 @@ | |||
1 | SUMMARY = "A Pure Python Expect like Module for Python" | ||
2 | HOMEPAGE = "http://pexpect.readthedocs.org/" | ||
3 | SECTION = "devel/python" | ||
4 | LICENSE = "ISC" | ||
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=c25d9a0770ba69a9965acc894e9f3644" | ||
6 | |||
7 | SRC_URI = "https://pypi.python.org/packages/source/p/pexpect/pexpect-${PV}.tar.gz" | ||
8 | SRC_URI[md5sum] = "0de72541d3f1374b795472fed841dce8" | ||
9 | SRC_URI[sha256sum] = "dfea618d43e83cfff21504f18f98019ba520f330e4142e5185ef7c73527de5ba" | ||
10 | |||
11 | S = "${WORKDIR}/pexpect-${PV}" | ||
12 | |||
13 | inherit distutils | ||
14 | |||
15 | RDEPENDS_${PN} = "\ | ||
16 | python-core \ | ||
17 | python-io \ | ||
18 | python-terminal \ | ||
19 | python-resource \ | ||
20 | python-fcntl \ | ||
21 | " | ||
22 | |||
23 | BBCLASSEXTEND = "nativesdk" | ||