All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v3 1/2] dependencies.sh: Check for a host python version >= 2.7
@ 2018-12-16 23:27 aduskett at gmail.com
  2018-12-16 23:27 ` [Buildroot] [PATCH v3 2/2] prerequisite.txt: Bump python dependency to 2.7 aduskett at gmail.com
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: aduskett at gmail.com @ 2018-12-16 23:27 UTC (permalink / raw)
  To: buildroot

From: Adam Duskett <Aduskett@gmail.com>

Older distributions such as CentOS6 come with python2.6, which causes build
failures in packages such as host-libglib2 because they require python2.7 and
above.

host-libglib2 will produce the error message:
/bin/sh: python2.7: command not found

Python2.7 is a hard-coded value in configure.ac. If one changes the value to
just "python," the following stack trace is produced:

Traceback (most recent call last):
  File "./gdbus-2.0/codegen/gdbus-codegen.in", line 55, in <module>
    self.outfile.write(LICENSE_STR.format(config.VERSION))
ValueError    : sys.exit(codegen_main.codegen_main())
zero length field name in format

Instead of supporting an ancient version of Python that had its support ended
in October os 2013, it would be more pragmatic only to support Python2.7 and
above.

Luckily; CentOS6 has the centos-release-scl repository, which allows users to
install python2.7, and Debian 8 comes with Python2.7 already, making this patch
relatively low impact.

Signed-off-by: Adam Duskett <Aduskett@gmail.com>
---
Changes v1 -> v2:
  - Updated version requirement in prerequisite.txt

Changes v2 -> v3:
  - Added more precise language to the commit message.
  - Added an example stack trace and error caused by python2.6 and
    host-libglib2.

 support/dependencies/dependencies.sh | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/support/dependencies/dependencies.sh b/support/dependencies/dependencies.sh
index 58c34d880f..d0b6bdc23a 100755
--- a/support/dependencies/dependencies.sh
+++ b/support/dependencies/dependencies.sh
@@ -181,6 +181,14 @@ if test "${missing_progs}" = "yes" ; then
 	exit 1
 fi
 
+# Check that the python version is at least 2.7
+PYTHON_VERSION=$(python -V 2>&1 |awk '{print $2}')
+if [ $(echo $PYTHON_VERSION |sed -e 's/\.//g') -lt 2700 ]; then
+	echo
+	echo "You have python '$PYTHON_VERSION' installed.  Python >= 2.7 is required"
+	exit 1;
+fi
+
 if grep ^BR2_NEEDS_HOST_UTF8_LOCALE=y $BR2_CONFIG > /dev/null; then
 	if ! which locale > /dev/null ; then
 		echo
-- 
2.19.2

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

* [Buildroot] [PATCH v3 2/2] prerequisite.txt: Bump python dependency to 2.7
  2018-12-16 23:27 [Buildroot] [PATCH v3 1/2] dependencies.sh: Check for a host python version >= 2.7 aduskett at gmail.com
@ 2018-12-16 23:27 ` aduskett at gmail.com
  2019-02-04 12:24   ` Peter Korsgaard
  2018-12-17  7:28 ` [Buildroot] [PATCH v3 1/2] dependencies.sh: Check for a host python version >= 2.7 Peter Seiderer
  2019-02-04 12:19 ` Peter Korsgaard
  2 siblings, 1 reply; 9+ messages in thread
From: aduskett at gmail.com @ 2018-12-16 23:27 UTC (permalink / raw)
  To: buildroot

From: Adam Duskett <Aduskett@gmail.com>

Signed-off-by: Adam Duskett <Aduskett@gmail.com>
---
Changes v1 -> v2:
  - Added this patch to the patch series.

Changes v2 -> v3:
  - None.

 docs/manual/prerequisite.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/manual/prerequisite.txt b/docs/manual/prerequisite.txt
index 66e1b88f16..dcd3fd255e 100644
--- a/docs/manual/prerequisite.txt
+++ b/docs/manual/prerequisite.txt
@@ -32,7 +32,7 @@ between distributions).
 ** +perl+ (version 5.8.7 or any later)
 ** +tar+
 ** +cpio+
-** +python+ (version 2.6 or any later)
+** +python+ (version 2.7 or any later)
 ** +unzip+
 ** +rsync+
 ** +file+ (must be in +/usr/bin/file+)
-- 
2.19.2

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

* [Buildroot] [PATCH v3 1/2] dependencies.sh: Check for a host python version >= 2.7
  2018-12-16 23:27 [Buildroot] [PATCH v3 1/2] dependencies.sh: Check for a host python version >= 2.7 aduskett at gmail.com
  2018-12-16 23:27 ` [Buildroot] [PATCH v3 2/2] prerequisite.txt: Bump python dependency to 2.7 aduskett at gmail.com
@ 2018-12-17  7:28 ` Peter Seiderer
  2018-12-17 13:10   ` ratbert90
  2019-02-04 12:19 ` Peter Korsgaard
  2 siblings, 1 reply; 9+ messages in thread
From: Peter Seiderer @ 2018-12-17  7:28 UTC (permalink / raw)
  To: buildroot

Hello Adam,

On Sun, 16 Dec 2018 18:27:33 -0500, aduskett at gmail.com wrote:

> From: Adam Duskett <Aduskett@gmail.com>
> 
> Older distributions such as CentOS6 come with python2.6, which causes build
> failures in packages such as host-libglib2 because they require python2.7 and
> above.
> 
> host-libglib2 will produce the error message:
> /bin/sh: python2.7: command not found
> 
> Python2.7 is a hard-coded value in configure.ac. If one changes the value to
> just "python," the following stack trace is produced:
> 
> Traceback (most recent call last):
>   File "./gdbus-2.0/codegen/gdbus-codegen.in", line 55, in <module>
>     self.outfile.write(LICENSE_STR.format(config.VERSION))
> ValueError    : sys.exit(codegen_main.codegen_main())
> zero length field name in format
> 

Or avoid the python call (used only for re-generation of already delivered files)
by patching libglib2 (fixes the libglib2 build in case of python2.7 without
proper xml.parsers.expat installation):

diff --git a/gio/Makefile.am b/gio/Makefile.am
index 3039e00..b7ba228 100644
--- a/gio/Makefile.am
+++ b/gio/Makefile.am
@@ -101,7 +101,7 @@ GDBUS_PYTHON_DEPS = 					\
 	$(builddir)/gdbus-2.0/codegen/config.py 	\
 	$(srcdir)/gdbus-2.0/codegen/utils.py
 
-gdbus-daemon-generated.h gdbus-daemon-generated.c: $(srcdir)/dbus-daemon.xml $(GDBUS_PYTHON_DEPS)
+gdbus-daemon-generated.h gdbus-daemon-generated.c: $(srcdir)/dbus-daemon.xml
 	$(AM_V_GEN) UNINSTALLED_GLIB_SRCDIR=$(top_srcdir) \
 		UNINSTALLED_GLIB_BUILDDIR=$(top_builddir) \
 		$(PYTHON) $(srcdir)/gdbus-2.0/codegen/gdbus-codegen.in \

Regards,
Peter

> Instead of supporting an ancient version of Python that had its support ended
> in October os 2013, it would be more pragmatic only to support Python2.7 and
> above.
> 
> Luckily; CentOS6 has the centos-release-scl repository, which allows users to
> install python2.7, and Debian 8 comes with Python2.7 already, making this patch
> relatively low impact.
> 
> Signed-off-by: Adam Duskett <Aduskett@gmail.com>
> ---
> Changes v1 -> v2:
>   - Updated version requirement in prerequisite.txt
> 
> Changes v2 -> v3:
>   - Added more precise language to the commit message.
>   - Added an example stack trace and error caused by python2.6 and
>     host-libglib2.
> 
>  support/dependencies/dependencies.sh | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff --git a/support/dependencies/dependencies.sh b/support/dependencies/dependencies.sh
> index 58c34d880f..d0b6bdc23a 100755
> --- a/support/dependencies/dependencies.sh
> +++ b/support/dependencies/dependencies.sh
> @@ -181,6 +181,14 @@ if test "${missing_progs}" = "yes" ; then
>  	exit 1
>  fi
>  
> +# Check that the python version is at least 2.7
> +PYTHON_VERSION=$(python -V 2>&1 |awk '{print $2}')
> +if [ $(echo $PYTHON_VERSION |sed -e 's/\.//g') -lt 2700 ]; then
> +	echo
> +	echo "You have python '$PYTHON_VERSION' installed.  Python >= 2.7 is required"
> +	exit 1;
> +fi
> +
>  if grep ^BR2_NEEDS_HOST_UTF8_LOCALE=y $BR2_CONFIG > /dev/null; then
>  	if ! which locale > /dev/null ; then
>  		echo

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

* [Buildroot] [PATCH v3 1/2] dependencies.sh: Check for a host python version >= 2.7
  2018-12-17  7:28 ` [Buildroot] [PATCH v3 1/2] dependencies.sh: Check for a host python version >= 2.7 Peter Seiderer
@ 2018-12-17 13:10   ` ratbert90
  2018-12-17 23:25     ` Arnout Vandecappelle
  0 siblings, 1 reply; 9+ messages in thread
From: ratbert90 @ 2018-12-17 13:10 UTC (permalink / raw)
  To: buildroot

Hello Peter;

I would question as to why we would do anything to support such an old version of Python that was EOLed over 5 years ago.  Heck, even 2.7 will be EOLed in 2020.

Looking around, the only distribution that has 2.6 that still has any kind of support is CentOS6, and even that is in maintenance mode. 

2.7 is a safe bet in my opinion. 

Adam

> On Dec 17, 2018, at 2:28 AM, Peter Seiderer <ps.report@gmx.net> wrote:
> 
> Hello Adam,
> 
>> On Sun, 16 Dec 2018 18:27:33 -0500, aduskett at gmail.com wrote:
>> 
>> From: Adam Duskett <Aduskett@gmail.com>
>> 
>> Older distributions such as CentOS6 come with python2.6, which causes build
>> failures in packages such as host-libglib2 because they require python2.7 and
>> above.
>> 
>> host-libglib2 will produce the error message:
>> /bin/sh: python2.7: command not found
>> 
>> Python2.7 is a hard-coded value in configure.ac. If one changes the value to
>> just "python," the following stack trace is produced:
>> 
>> Traceback (most recent call last):
>>  File "./gdbus-2.0/codegen/gdbus-codegen.in", line 55, in <module>
>>    self.outfile.write(LICENSE_STR.format(config.VERSION))
>> ValueError    : sys.exit(codegen_main.codegen_main())
>> zero length field name in format
>> 
> 
> Or avoid the python call (used only for re-generation of already delivered files)
> by patching libglib2 (fixes the libglib2 build in case of python2.7 without
> proper xml.parsers.expat installation):
> 
> diff --git a/gio/Makefile.am b/gio/Makefile.am
> index 3039e00..b7ba228 100644
> --- a/gio/Makefile.am
> +++ b/gio/Makefile.am
> @@ -101,7 +101,7 @@ GDBUS_PYTHON_DEPS =                    \
>    $(builddir)/gdbus-2.0/codegen/config.py    \
>    $(srcdir)/gdbus-2.0/codegen/utils.py
> 
> -gdbus-daemon-generated.h gdbus-daemon-generated.c: $(srcdir)/dbus-daemon.xml $(GDBUS_PYTHON_DEPS)
> +gdbus-daemon-generated.h gdbus-daemon-generated.c: $(srcdir)/dbus-daemon.xml
>    $(AM_V_GEN) UNINSTALLED_GLIB_SRCDIR=$(top_srcdir) \
>        UNINSTALLED_GLIB_BUILDDIR=$(top_builddir) \
>        $(PYTHON) $(srcdir)/gdbus-2.0/codegen/gdbus-codegen.in \
> 
> Regards,
> Peter
> 
>> Instead of supporting an ancient version of Python that had its support ended
>> in October os 2013, it would be more pragmatic only to support Python2.7 and
>> above.
>> 
>> Luckily; CentOS6 has the centos-release-scl repository, which allows users to
>> install python2.7, and Debian 8 comes with Python2.7 already, making this patch
>> relatively low impact.
>> 
>> Signed-off-by: Adam Duskett <Aduskett@gmail.com>
>> ---
>> Changes v1 -> v2:
>>  - Updated version requirement in prerequisite.txt
>> 
>> Changes v2 -> v3:
>>  - Added more precise language to the commit message.
>>  - Added an example stack trace and error caused by python2.6 and
>>    host-libglib2.
>> 
>> support/dependencies/dependencies.sh | 8 ++++++++
>> 1 file changed, 8 insertions(+)
>> 
>> diff --git a/support/dependencies/dependencies.sh b/support/dependencies/dependencies.sh
>> index 58c34d880f..d0b6bdc23a 100755
>> --- a/support/dependencies/dependencies.sh
>> +++ b/support/dependencies/dependencies.sh
>> @@ -181,6 +181,14 @@ if test "${missing_progs}" = "yes" ; then
>>    exit 1
>> fi
>> 
>> +# Check that the python version is at least 2.7
>> +PYTHON_VERSION=$(python -V 2>&1 |awk '{print $2}')
>> +if [ $(echo $PYTHON_VERSION |sed -e 's/\.//g') -lt 2700 ]; then
>> +    echo
>> +    echo "You have python '$PYTHON_VERSION' installed.  Python >= 2.7 is required"
>> +    exit 1;
>> +fi
>> +
>> if grep ^BR2_NEEDS_HOST_UTF8_LOCALE=y $BR2_CONFIG > /dev/null; then
>>    if ! which locale > /dev/null ; then
>>        echo
> 

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

* [Buildroot] [PATCH v3 1/2] dependencies.sh: Check for a host python version >= 2.7
  2018-12-17 13:10   ` ratbert90
@ 2018-12-17 23:25     ` Arnout Vandecappelle
  2018-12-18 16:13       ` Adam Duskett
  0 siblings, 1 reply; 9+ messages in thread
From: Arnout Vandecappelle @ 2018-12-17 23:25 UTC (permalink / raw)
  To: buildroot



On 17/12/2018 14:10, ratbert90 wrote:
> Hello Peter;
> 
> I would question as to why we would do anything to support such an old version of Python that was EOLed over 5 years ago.  Heck, even 2.7 will be EOLed in 2020.
> 
> Looking around, the only distribution that has 2.6 that still has any kind of support is CentOS6, and even that is in maintenance mode. 

 RHEL6 will be retired November 30, 2020. SLES11 also hase Python 2.6 and will
be retired 31 Mar 2022.

> 2.7 is a safe bet in my opinion. 

 Indeed, because it can be installed both on RHEL6 and on SLES11.

 However, IIUC, it is *not* possible to install python 2.7 as the *default*
python on these distros, because some scripts that are used in normal operation
don't work with python 2.7. So, the test that you added to dependencies.sh is
probably too strict, because it checks that python -V gives at least 2.7...

 Regards,
 Arnout

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

* [Buildroot] [PATCH v3 1/2] dependencies.sh: Check for a host python version >= 2.7
  2018-12-17 23:25     ` Arnout Vandecappelle
@ 2018-12-18 16:13       ` Adam Duskett
  2018-12-31 14:27         ` Yann E. MORIN
  0 siblings, 1 reply; 9+ messages in thread
From: Adam Duskett @ 2018-12-18 16:13 UTC (permalink / raw)
  To: buildroot

Hello;

On Mon, Dec 17, 2018 at 6:25 PM Arnout Vandecappelle <arnout@mind.be> wrote:
>
>
>
> On 17/12/2018 14:10, ratbert90 wrote:
> > Hello Peter;
> >
> > I would question as to why we would do anything to support such an old version of
>> Python that was EOLed over 5 years ago.  Heck, even 2.7 will be EOLed in 2020.
> >
> > Looking around, the only distribution that has 2.6 that still has any kind of support
>> is CentOS6, and even that is in maintenance mode.
>
>  RHEL6 will be retired November 30, 2020. SLES11 also hase Python 2.6 and will
> be retired 31 Mar 2022.
>
> > 2.7 is a safe bet in my opinion.
>
>  Indeed, because it can be installed both on RHEL6 and on SLES11.
>
>  However, IIUC, it is *not* possible to install python 2.7 as the *default*
> python on these distros, because some scripts that are used in normal operation
> don't work with python 2.7.
In the case of RHEL; one can run: `source /opt/rh/python27/enable` which will
add the appropriate paths for Python2.7 to be the default.

As far as SLES11 goes, I don't know how many people use it, but it has to be
microscopic at this point.

> So, the test that you added to dependencies.sh is
> probably too strict, because it checks that python -V gives at least 2.7...
If one runs `source /opt/rh/python27/enable` in CentOS6, then running
`python -V`
will give 2.7.13.

>
>  Regards,
>  Arnout

Thanks!
Adam

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

* [Buildroot] [PATCH v3 1/2] dependencies.sh: Check for a host python version >= 2.7
  2018-12-18 16:13       ` Adam Duskett
@ 2018-12-31 14:27         ` Yann E. MORIN
  0 siblings, 0 replies; 9+ messages in thread
From: Yann E. MORIN @ 2018-12-31 14:27 UTC (permalink / raw)
  To: buildroot

On 2018-12-18 11:13 -0500, Adam Duskett spake thusly:
> Hello;
> 
> On Mon, Dec 17, 2018 at 6:25 PM Arnout Vandecappelle <arnout@mind.be> wrote:
> >
> >
> >
> > On 17/12/2018 14:10, ratbert90 wrote:
> > > Hello Peter;
> > >
> > > I would question as to why we would do anything to support such an old version of
> >> Python that was EOLed over 5 years ago.  Heck, even 2.7 will be EOLed in 2020.
> > >
> > > Looking around, the only distribution that has 2.6 that still has any kind of support
> >> is CentOS6, and even that is in maintenance mode.
> >
> >  RHEL6 will be retired November 30, 2020. SLES11 also hase Python 2.6 and will
> > be retired 31 Mar 2022.

RHEL5 gets extended support until end of 2020, while RHEL6 gets extended
support until mid-2024.

You would be amazed how old stuff tend to stick around in entrerpise-y
context. ;-]

> >
> > > 2.7 is a safe bet in my opinion.
> >
> >  Indeed, because it can be installed both on RHEL6 and on SLES11.
> >
> >  However, IIUC, it is *not* possible to install python 2.7 as the *default*
> > python on these distros, because some scripts that are used in normal operation
> > don't work with python 2.7.
> In the case of RHEL; one can run: `source /opt/rh/python27/enable` which will
> add the appropriate paths for Python2.7 to be the default.
> 
> As far as SLES11 goes, I don't know how many people use it, but it has to be
> microscopic at this point.
> 
> > So, the test that you added to dependencies.sh is
> > probably too strict, because it checks that python -V gives at least 2.7...
> If one runs `source /opt/rh/python27/enable` in CentOS6, then running
> `python -V`
> will give 2.7.13.

Since there are practical workarounds for affected users, I'm fine that
we require pythhon-2.7 now.

Note that, if libglib2 does require a host pytrhon-2.7 and we are not
willing to change our own requirements, then we can always add
host-python to libglib2's dependencies. But, meh...

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH v3 1/2] dependencies.sh: Check for a host python version >= 2.7
  2018-12-16 23:27 [Buildroot] [PATCH v3 1/2] dependencies.sh: Check for a host python version >= 2.7 aduskett at gmail.com
  2018-12-16 23:27 ` [Buildroot] [PATCH v3 2/2] prerequisite.txt: Bump python dependency to 2.7 aduskett at gmail.com
  2018-12-17  7:28 ` [Buildroot] [PATCH v3 1/2] dependencies.sh: Check for a host python version >= 2.7 Peter Seiderer
@ 2019-02-04 12:19 ` Peter Korsgaard
  2 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2019-02-04 12:19 UTC (permalink / raw)
  To: buildroot

>>>>> "aduskett" == aduskett  <aduskett@gmail.com> writes:

 > From: Adam Duskett <Aduskett@gmail.com>
 > Older distributions such as CentOS6 come with python2.6, which causes build
 > failures in packages such as host-libglib2 because they require python2.7 and
 > above.

 > host-libglib2 will produce the error message:
 > /bin/sh: python2.7: command not found

 > Python2.7 is a hard-coded value in configure.ac. If one changes the value to
 > just "python," the following stack trace is produced:

 > Traceback (most recent call last):
 >   File "./gdbus-2.0/codegen/gdbus-codegen.in", line 55, in <module>
 >     self.outfile.write(LICENSE_STR.format(config.VERSION))
 > ValueError    : sys.exit(codegen_main.codegen_main())
 > zero length field name in format

 > Instead of supporting an ancient version of Python that had its support ended
 > in October os 2013, it would be more pragmatic only to support Python2.7 and
 > above.

 > Luckily; CentOS6 has the centos-release-scl repository, which allows users to
 > install python2.7, and Debian 8 comes with Python2.7 already, making this patch
 > relatively low impact.

 > Signed-off-by: Adam Duskett <Aduskett@gmail.com>
 > ---
 > Changes v1 -> v2:
 >   - Updated version requirement in prerequisite.txt

 > Changes v2 -> v3:
 >   - Added more precise language to the commit message.
 >   - Added an example stack trace and error caused by python2.6 and
 >     host-libglib2.

 >  support/dependencies/dependencies.sh | 8 ++++++++
 >  1 file changed, 8 insertions(+)

 > diff --git a/support/dependencies/dependencies.sh b/support/dependencies/dependencies.sh
 > index 58c34d880f..d0b6bdc23a 100755
 > --- a/support/dependencies/dependencies.sh
 > +++ b/support/dependencies/dependencies.sh
 > @@ -181,6 +181,14 @@ if test "${missing_progs}" = "yes" ; then
 >  	exit 1
 >  fi
 
 > +# Check that the python version is at least 2.7
 > +PYTHON_VERSION=$(python -V 2>&1 |awk '{print $2}')
 > +if [ $(echo $PYTHON_VERSION |sed -e 's/\.//g') -lt 2700 ]; then

This fails on the (fairly unlikely case) of 2.7.x where x < 10, so I
have changed it to:

PYTHON_VERSION=$(python -V 2>&1 |awk '{ split($2, v, "."); print v[1] v[2] }')

To only look at the major.minor part and committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH v3 2/2] prerequisite.txt: Bump python dependency to 2.7
  2018-12-16 23:27 ` [Buildroot] [PATCH v3 2/2] prerequisite.txt: Bump python dependency to 2.7 aduskett at gmail.com
@ 2019-02-04 12:24   ` Peter Korsgaard
  0 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2019-02-04 12:24 UTC (permalink / raw)
  To: buildroot

>>>>> "aduskett" == aduskett  <aduskett@gmail.com> writes:

 > From: Adam Duskett <Aduskett@gmail.com>
 > Signed-off-by: Adam Duskett <Aduskett@gmail.com>
 > ---
 > Changes v1 -> v2:
 >   - Added this patch to the patch series.

 > Changes v2 -> v3:
 >   - None.

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2019-02-04 12:24 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-16 23:27 [Buildroot] [PATCH v3 1/2] dependencies.sh: Check for a host python version >= 2.7 aduskett at gmail.com
2018-12-16 23:27 ` [Buildroot] [PATCH v3 2/2] prerequisite.txt: Bump python dependency to 2.7 aduskett at gmail.com
2019-02-04 12:24   ` Peter Korsgaard
2018-12-17  7:28 ` [Buildroot] [PATCH v3 1/2] dependencies.sh: Check for a host python version >= 2.7 Peter Seiderer
2018-12-17 13:10   ` ratbert90
2018-12-17 23:25     ` Arnout Vandecappelle
2018-12-18 16:13       ` Adam Duskett
2018-12-31 14:27         ` Yann E. MORIN
2019-02-04 12:19 ` 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.