All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/python-flup: update dependency to python3
@ 2021-04-12 16:44 Matt Weber
  2021-04-12 20:39 ` Thomas Petazzoni
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Matt Weber @ 2021-04-12 16:44 UTC (permalink / raw)
  To: buildroot

From: Jared Bents <jared.bents@rockwellcollins.com>

Dependency incorrectly calls out python, should be python3

Signed-off-by: Jared Bents <jared.bents@rockwellcollins.com>
Signed-off-by: Ryan Barnett <ryan.barnett@rockwellcollins.com>
Signed-off-by: Matt Weber <matthew.weber@rockwellcollins.com>
---
 package/python-flup/Config.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/python-flup/Config.in b/package/python-flup/Config.in
index 2c21323515..f40f250163 100644
--- a/package/python-flup/Config.in
+++ b/package/python-flup/Config.in
@@ -1,6 +1,6 @@
 config BR2_PACKAGE_PYTHON_FLUP
 	bool "python-flup"
-	depends on BR2_PACKAGE_PYTHON
+	depends on BR2_PACKAGE_PYTHON3
 	help
 	  flup provides of a collection of WSGI modules for Python.
 	  It allows a webserver to use scgi-mod and fastcgi-mod
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH] package/python-flup: update dependency to python3
  2021-04-12 16:44 [Buildroot] [PATCH] package/python-flup: update dependency to python3 Matt Weber
@ 2021-04-12 20:39 ` Thomas Petazzoni
  2021-04-13 13:22   ` Matthew Weber
  2021-04-21 21:27 ` Thomas Petazzoni
  2021-04-26 14:09 ` Peter Korsgaard
  2 siblings, 1 reply; 5+ messages in thread
From: Thomas Petazzoni @ 2021-04-12 20:39 UTC (permalink / raw)
  To: buildroot

On Mon, 12 Apr 2021 11:44:05 -0500
Matt Weber <matthew.weber@rockwellcollins.com> wrote:

> From: Jared Bents <jared.bents@rockwellcollins.com>
> 
> Dependency incorrectly calls out python, should be python3
> 
> Signed-off-by: Jared Bents <jared.bents@rockwellcollins.com>
> Signed-off-by: Ryan Barnett <ryan.barnett@rockwellcollins.com>
> Signed-off-by: Matt Weber <matthew.weber@rockwellcollins.com>
> ---
>  package/python-flup/Config.in | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/package/python-flup/Config.in b/package/python-flup/Config.in
> index 2c21323515..f40f250163 100644
> --- a/package/python-flup/Config.in
> +++ b/package/python-flup/Config.in
> @@ -1,6 +1,6 @@
>  config BR2_PACKAGE_PYTHON_FLUP
>  	bool "python-flup"
> -	depends on BR2_PACKAGE_PYTHON
> +	depends on BR2_PACKAGE_PYTHON3

Do we know since when this is the case? This package was introduced in
2014 as version 1.0.3.dev-20110405, and back then the commit log said
"Tested with ARM and Python 2.7.6". Then it was bumped to
1.0.3.dev20161029 by Adam in 2017, and again to 1.0.3 in 2019. Is it
this latest update that brought the python3 requirement ?

Thanks!

Thomas
-- 
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH] package/python-flup: update dependency to python3
  2021-04-12 20:39 ` Thomas Petazzoni
@ 2021-04-13 13:22   ` Matthew Weber
  0 siblings, 0 replies; 5+ messages in thread
From: Matthew Weber @ 2021-04-13 13:22 UTC (permalink / raw)
  To: buildroot

Thomas,

On Mon, Apr 12, 2021 at 3:39 PM Thomas Petazzoni
<thomas.petazzoni@bootlin.com> wrote:
>
> On Mon, 12 Apr 2021 11:44:05 -0500
> Matt Weber <matthew.weber@rockwellcollins.com> wrote:
>
> > From: Jared Bents <jared.bents@rockwellcollins.com>
> >
> > Dependency incorrectly calls out python, should be python3
> >
> > Signed-off-by: Jared Bents <jared.bents@rockwellcollins.com>
> > Signed-off-by: Ryan Barnett <ryan.barnett@rockwellcollins.com>
> > Signed-off-by: Matt Weber <matthew.weber@rockwellcollins.com>
> > ---
> >  package/python-flup/Config.in | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/package/python-flup/Config.in b/package/python-flup/Config.in
> > index 2c21323515..f40f250163 100644
> > --- a/package/python-flup/Config.in
> > +++ b/package/python-flup/Config.in
> > @@ -1,6 +1,6 @@
> >  config BR2_PACKAGE_PYTHON_FLUP
> >       bool "python-flup"
> > -     depends on BR2_PACKAGE_PYTHON
> > +     depends on BR2_PACKAGE_PYTHON3
>
> Do we know since when this is the case? This package was introduced in
> 2014 as version 1.0.3.dev-20110405, and back then the commit log said
> "Tested with ARM and Python 2.7.6". Then it was bumped to
> 1.0.3.dev20161029 by Adam in 2017, and again to 1.0.3 in 2019. Is it
> this latest update that brought the python3 requirement ?

Looking at the release notes (https://pypi.org/pypi/flup/json), I see
the last py2 was "flup-1.0.3.dev_20110405-py2.7.egg" and then
"flup-1.0.3.dev20151210-py3-none-any.whl" onward py3.5/3.6.  So on the
Buildroot side, it looks like this was a bug back in 2017 for the
1.0.3.dev20161029 bump (it required 3.5) and then the 1.0.3 bump
required py3.6.

Regards,
Matt

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH] package/python-flup: update dependency to python3
  2021-04-12 16:44 [Buildroot] [PATCH] package/python-flup: update dependency to python3 Matt Weber
  2021-04-12 20:39 ` Thomas Petazzoni
@ 2021-04-21 21:27 ` Thomas Petazzoni
  2021-04-26 14:09 ` Peter Korsgaard
  2 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2021-04-21 21:27 UTC (permalink / raw)
  To: buildroot

On Mon, 12 Apr 2021 11:44:05 -0500
Matt Weber <matthew.weber@rockwellcollins.com> wrote:

> From: Jared Bents <jared.bents@rockwellcollins.com>
> 
> Dependency incorrectly calls out python, should be python3
> 
> Signed-off-by: Jared Bents <jared.bents@rockwellcollins.com>
> Signed-off-by: Ryan Barnett <ryan.barnett@rockwellcollins.com>
> Signed-off-by: Matt Weber <matthew.weber@rockwellcollins.com>
> ---
>  package/python-flup/Config.in | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Thanks, applied with an extended commit log, based on additional
details provided by Matt.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH] package/python-flup: update dependency to python3
  2021-04-12 16:44 [Buildroot] [PATCH] package/python-flup: update dependency to python3 Matt Weber
  2021-04-12 20:39 ` Thomas Petazzoni
  2021-04-21 21:27 ` Thomas Petazzoni
@ 2021-04-26 14:09 ` Peter Korsgaard
  2 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2021-04-26 14:09 UTC (permalink / raw)
  To: buildroot

>>>>> "Matt" == Matt Weber <matthew.weber@rockwellcollins.com> writes:

 > From: Jared Bents <jared.bents@rockwellcollins.com>
 > Dependency incorrectly calls out python, should be python3

 > Signed-off-by: Jared Bents <jared.bents@rockwellcollins.com>
 > Signed-off-by: Ryan Barnett <ryan.barnett@rockwellcollins.com>
 > Signed-off-by: Matt Weber <matthew.weber@rockwellcollins.com>

Committed to 2021.02.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-04-26 14:09 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-12 16:44 [Buildroot] [PATCH] package/python-flup: update dependency to python3 Matt Weber
2021-04-12 20:39 ` Thomas Petazzoni
2021-04-13 13:22   ` Matthew Weber
2021-04-21 21:27 ` Thomas Petazzoni
2021-04-26 14:09 ` Peter Korsgaard

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.