All of lore.kernel.org
 help / color / mirror / Atom feed
From: Martin Jansa <martin.jansa@gmail.com>
To: Tim Orling <ticotimo@gmail.com>
Cc: Mark Asselstine <mark.asselstine@windriver.com>,
	openembedded-devel <openembedded-devel@lists.openembedded.org>
Subject: Re: [meta-python][PATCH] python-jsonpatch: fix do_install
Date: Fri, 30 Mar 2018 10:22:28 +0200	[thread overview]
Message-ID: <CA+chaQfskAgYTHg76LXDYvHSdyDdeZFd47atA0yafVw14aVTWg@mail.gmail.com> (raw)
In-Reply-To: <CANx9H-DrUQ4fs-8t=4F=a-WhSE56wF+nQ9J67VZSJ+VJVvDg0A@mail.gmail.com>

Or it doesn't need to be applied for python3-jsonpatch at all and the
SRC_URI change should be moved to python-jsonpatch_1.21.bb.

At least in my world builds I haven't seen this issue with python3-jsonpatch,
only with python-jsonpatch.



On Fri, Mar 30, 2018 at 8:06 AM, Tim Orling <ticotimo@gmail.com> wrote:

> Something like:
> FILESEXTRAPATHS_prepend := "${THISDIR}/python-jsonpatch:"
>
> Will fix this. It can be in python-jsonpatch.inc (harmless for python2-,
> required for python3-). DRY and KISS.
>
>
> On Thu, Mar 29, 2018 at 3:03 PM Martin Jansa <martin.jansa@gmail.com>
> wrote:
>
>> This seems to break python3-jsonpatch which won't find this .patch file,
>> because it's in different directory.
>>
>> On Wed, Mar 28, 2018 at 10:10 PM, Mark Asselstine <
>> mark.asselstine@windriver.com> wrote:
>>
>> > 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>
>> > ---
>> >  .../recipes-devtools/python/python-jsonpatch.inc   |  4 +++
>> >  .../Drop-support-for-EOL-Python-3.3.patch          | 35
>> > ++++++++++++++++++++++
>> >  2 files changed, 39 insertions(+)
>> >  create mode 100644 meta-python/recipes-devtools/
>> > python/python-jsonpatch/Drop-support-for-EOL-Python-3.3.patch
>> >
>> > diff --git a/meta-python/recipes-devtools/python/python-jsonpatch.inc
>> > b/meta-python/recipes-devtools/python/python-jsonpatch.inc
>> > index e559fb1..85483df 100644
>> > --- a/meta-python/recipes-devtools/python/python-jsonpatch.inc
>> > +++ b/meta-python/recipes-devtools/python/python-jsonpatch.inc
>> > @@ -8,5 +8,9 @@ inherit pypi
>> >  SRC_URI[md5sum] = "0b20d819daf120ed3fef3be608f2ce18"
>> >  SRC_URI[sha256sum] = "11f5ffdf543a83047a2f54ac28f8ca
>> > ad7f34724cb1ea26b27547fd974f1a2153"
>> >
>> > +SRC_URI += " \
>> > +    file://Drop-support-for-EOL-Python-3.3.patch \
>> > +"
>> > +
>> >  RDEPENDS_${PN} += "${PYTHON_PN}-json ${PYTHON_PN}-jsonpointer
>> > ${PYTHON_PN}-netclient ${PYTHON_PN}-stringold"
>> >
>> > diff --git a/meta-python/recipes-devtools/python/python-
>> > jsonpatch/Drop-support-for-EOL-Python-3.3.patch b/meta-python/recipes-
>> > devtools/python/python-jsonpatch/Drop-support-for-EOL-Python-3.3.patch
>> > new file mode 100644
>> > index 0000000..ccd8e12
>> > --- /dev/null
>> > +++ b/meta-python/recipes-devtools/python/python-
>> > jsonpatch/Drop-support-for-EOL-Python-3.3.patch
>> > @@ -0,0 +1,35 @@
>> > +From 71bdeed8b49390ff14fe8f0434fc8a1038d89128 Mon Sep 17 00:00:00 2001
>> > +From: Hugo <hugovk@users.noreply.github.com>
>> > +Date: Tue, 16 Jan 2018 14:22:33 +0200
>> > +Subject: [PATCH 1/4] Drop support for EOL Python 3.3
>> > +
>> > +Upstream-Status: Backport
>> > +
>> > +[MA: remove dev only files from patch]
>> > +Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
>> > +
>> > +---
>> > + setup.py      | 2 +-
>> > +
>> > +diff --git a/setup.py b/setup.py
>> > +index 0776c41..471c433 100644
>> > +--- a/setup.py
>> > ++++ b/setup.py
>> > +@@ -58,7 +58,6 @@ CLASSIFIERS = [
>> > +     'Programming Language :: Python :: 2',
>> > +     'Programming Language :: Python :: 2.7',
>> > +     'Programming Language :: Python :: 3',
>> > +-    'Programming Language :: Python :: 3.3',
>> > +     'Programming Language :: Python :: 3.4',
>> > +     'Programming Language :: Python :: 3.5',
>> > +     'Programming Language :: Python :: 3.6',
>> > +@@ -81,5 +80,6 @@ setup(name=PACKAGE,
>> > +       package_data={'': ['requirements.txt']},
>> > +       scripts=['bin/jsondiff', 'bin/jsonpatch'],
>> > +       classifiers=CLASSIFIERS,
>> > ++      python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
>> > +       **OPTIONS
>> > + )
>> > +--
>> > +2.7.4
>> > +
>> > --
>> > 2.7.4
>> >
>> > --
>> > _______________________________________________
>> > Openembedded-devel mailing list
>> > Openembedded-devel@lists.openembedded.org
>> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>> >
>> --
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>>
>


  reply	other threads:[~2018-03-30  8:22 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-28 20:10 [meta-python][PATCH] python-jsonpatch: fix do_install Mark Asselstine
2018-03-29 22:03 ` Martin Jansa
2018-03-30  6:06   ` Tim Orling
2018-03-30  8:22     ` Martin Jansa [this message]
2018-04-02 14:48       ` Mark Asselstine

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CA+chaQfskAgYTHg76LXDYvHSdyDdeZFd47atA0yafVw14aVTWg@mail.gmail.com \
    --to=martin.jansa@gmail.com \
    --cc=mark.asselstine@windriver.com \
    --cc=openembedded-devel@lists.openembedded.org \
    --cc=ticotimo@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.