diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2020-04-25 19:28:09 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-04-29 15:02:18 +0100 |
commit | 182c1af2e632a34decfbef437b3b7995db898126 (patch) | |
tree | 77c6b4d4ee4641d3ee87dfd5d0489ef84b8815e9 /meta | |
parent | 4a971a2ed065523a96694ccc5f7f6bf567c7f007 (diff) | |
download | poky-182c1af2e632a34decfbef437b3b7995db898126.tar.gz |
python3-pyparsing: add from meta-oe
This is needed for python3-cython, which is needed by new python3-numpy.
(From OE-Core rev: 85c025a7072558e49e4cf77ce03b3d156b9377a0)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/python/python-pyparsing.inc | 22 | ||||
-rw-r--r-- | meta/recipes-devtools/python/python3-pyparsing_2.4.6.bb | 2 |
2 files changed, 24 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python-pyparsing.inc b/meta/recipes-devtools/python/python-pyparsing.inc new file mode 100644 index 0000000000..a768c97fce --- /dev/null +++ b/meta/recipes-devtools/python/python-pyparsing.inc | |||
@@ -0,0 +1,22 @@ | |||
1 | SUMMARY = "Python parsing module" | ||
2 | HOMEPAGE = "http://pyparsing.wikispaces.com/" | ||
3 | LICENSE = "MIT" | ||
4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=657a566233888513e1f07ba13e2f47f1" | ||
5 | |||
6 | SRC_URI[md5sum] = "29733ea8cbee0291aad121c69c6e51a1" | ||
7 | SRC_URI[sha256sum] = "4c830582a84fb022400b85429791bc551f1f4871c33f23e44f353119e92f969f" | ||
8 | UPSTREAM_CHECK_REGEX = "pyparsing-(?P<pver>.*)\.tar" | ||
9 | |||
10 | inherit pypi | ||
11 | |||
12 | RDEPENDS_${PN} += " \ | ||
13 | ${PYTHON_PN}-datetime \ | ||
14 | ${PYTHON_PN}-debugger \ | ||
15 | ${PYTHON_PN}-json \ | ||
16 | ${PYTHON_PN}-netclient \ | ||
17 | ${PYTHON_PN}-pprint \ | ||
18 | ${PYTHON_PN}-stringold \ | ||
19 | ${PYTHON_PN}-threading \ | ||
20 | " | ||
21 | |||
22 | BBCLASSEXTEND = "native nativesdk" | ||
diff --git a/meta/recipes-devtools/python/python3-pyparsing_2.4.6.bb b/meta/recipes-devtools/python/python3-pyparsing_2.4.6.bb new file mode 100644 index 0000000000..0805fee3e2 --- /dev/null +++ b/meta/recipes-devtools/python/python3-pyparsing_2.4.6.bb | |||
@@ -0,0 +1,2 @@ | |||
1 | inherit setuptools3 | ||
2 | require python-pyparsing.inc | ||