diff options
author | Mark Asselstine <mark.asselstine@windriver.com> | 2018-04-02 11:03:43 -0400 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2018-04-08 17:00:06 -0700 |
commit | 3aa3c374ca7cd0850bdede6a404936737abb4068 (patch) | |
tree | 4a2297b1eb31917c1fb747185aece9f511ef665d /meta-python/recipes-devtools/python/python-jsonpatch_1.21.bb | |
parent | 3ab6741f949b7f256ee4145415d5055afa0e3064 (diff) | |
download | meta-openembedded-3aa3c374ca7cd0850bdede6a404936737abb4068.tar.gz |
python-jsonpatch: fix do_install failure with py2 build
The following error is seen when do_install is run
| UnicodeEncodeError: 'ascii' codec can't encode character u'\xf6' in
| position 16: ordinal not in range(128) ERROR: python setup.py
| install execution failed.
This is reported in the upstream project as part of pull request #81
https://github.com/stefankoegl/python-json-patch/pull/81
Since a release is not yet available with the required fix we must
apply the fix as a patch.
Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python-jsonpatch_1.21.bb')
-rw-r--r-- | meta-python/recipes-devtools/python/python-jsonpatch_1.21.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python-jsonpatch_1.21.bb b/meta-python/recipes-devtools/python/python-jsonpatch_1.21.bb index 90cd318026..2b253b50ea 100644 --- a/meta-python/recipes-devtools/python/python-jsonpatch_1.21.bb +++ b/meta-python/recipes-devtools/python/python-jsonpatch_1.21.bb | |||
@@ -2,3 +2,7 @@ inherit setuptools | |||
2 | require python-jsonpatch.inc | 2 | require python-jsonpatch.inc |
3 | 3 | ||
4 | RDEPENDS_${PN} += "${PYTHON_PN}-re" | 4 | RDEPENDS_${PN} += "${PYTHON_PN}-re" |
5 | |||
6 | SRC_URI += " \ | ||
7 | file://Drop-support-for-EOL-Python-3.3.patch \ | ||
8 | " | ||