diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2016-06-02 12:25:56 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-03 13:13:27 +0100 |
commit | 5cd554fbe255bd460c81226fb61e3c87fc75304d (patch) | |
tree | 09fe65c6042002891abe3e820328560a7ed4d882 /meta/recipes-devtools/python | |
parent | 991a7130c59d559d332cb45a0ec34d0818237cc4 (diff) | |
download | poky-5cd554fbe255bd460c81226fb61e3c87fc75304d.tar.gz |
python-pyrex: remove unused recipe
(From OE-Core rev: 976097f72af02ae4009ab81158927fca54ea78ff)
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python')
3 files changed, 0 insertions, 42 deletions
diff --git a/meta/recipes-devtools/python/python-pyrex-native_0.9.9.bb b/meta/recipes-devtools/python/python-pyrex-native_0.9.9.bb deleted file mode 100644 index e8ef1aa12b..0000000000 --- a/meta/recipes-devtools/python/python-pyrex-native_0.9.9.bb +++ /dev/null | |||
@@ -1,5 +0,0 @@ | |||
1 | require python-pyrex_${PV}.bb | ||
2 | inherit native pythonnative | ||
3 | DEPENDS = "python-native" | ||
4 | RDEPENDS_${PN} = "" | ||
5 | PR = "r3" | ||
diff --git a/meta/recipes-devtools/python/python-pyrex/pyrex-fix-optimized-mode.patch b/meta/recipes-devtools/python/python-pyrex/pyrex-fix-optimized-mode.patch deleted file mode 100644 index c58c3280e2..0000000000 --- a/meta/recipes-devtools/python/python-pyrex/pyrex-fix-optimized-mode.patch +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | Upstream-Status: Pending | ||
2 | |||
3 | Index: Pyrex-0.9.8.4/Pyrex/Distutils/extension.py | ||
4 | =================================================================== | ||
5 | --- Pyrex-0.9.8.4.orig/Pyrex/Distutils/extension.py | ||
6 | +++ Pyrex-0.9.8.4/Pyrex/Distutils/extension.py | ||
7 | @@ -15,7 +15,7 @@ except ImportError: | ||
8 | warnings = None | ||
9 | |||
10 | class Extension(_Extension.Extension): | ||
11 | - _Extension.Extension.__doc__ + \ | ||
12 | + _Extension.Extension.__doc__ or "" + \ | ||
13 | """pyrex_include_dirs : [string] | ||
14 | list of directories to search for Pyrex header files (.pxd) (in | ||
15 | Unix form for portability) | ||
diff --git a/meta/recipes-devtools/python/python-pyrex_0.9.9.bb b/meta/recipes-devtools/python/python-pyrex_0.9.9.bb deleted file mode 100644 index c4dd2e69b0..0000000000 --- a/meta/recipes-devtools/python/python-pyrex_0.9.9.bb +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | SUMMARY = "Language for writing Python extension modules" | ||
2 | DESCRIPTION = "Pyrex is a language specially designed for writing Python extension modules. \ | ||
3 | It's designed to bridge the gap between the nice, high-level, easy-to-use world of Python \ | ||
4 | and the messy, low-level world of C." | ||
5 | SECTION = "devel/python" | ||
6 | LICENSE = "Apache-2.0" | ||
7 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=771d472f53f933033f57eeee7808e5bd" | ||
8 | SRCNAME = "Pyrex" | ||
9 | PR = "r4" | ||
10 | |||
11 | SRC_URI = "\ | ||
12 | http://www.cosc.canterbury.ac.nz/greg.ewing/python/${SRCNAME}/${SRCNAME}-${PV}.tar.gz \ | ||
13 | file://pyrex-fix-optimized-mode.patch \ | ||
14 | " | ||
15 | |||
16 | SRC_URI[md5sum] = "515dee67d15d4393841e2d60e8341947" | ||
17 | SRC_URI[sha256sum] = "5f87df06831d0b3412eb4bc9d3fc2ee7bfae1b913d7da8c23ab2bf5699fb6b50" | ||
18 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
19 | |||
20 | inherit distutils | ||
21 | |||
22 | FILES_${PN} += "${datadir}${base_libdir}/${PYTHON_DIR}/site-packages/Pyrex/Compiler/Lexicon.pickle" | ||