Re: [PATCH] tools/xenpvboot: remove as unable to convert to Python 3

2023-11-22 Thread Andrew Cooper
On 22/11/2023 9:27 pm, Olaf Hering wrote: > Wed, 22 Nov 2023 20:46:15 + Andrew Cooper : > >> But that entirely depends on whether you think anyone is using it or not. > We never got any bugreport, nor have we any indication for actual usage. > The script was in the sources. Python3 is supposed

Re: [PATCH] tools/xenpvboot: remove as unable to convert to Python 3

2023-11-22 Thread Olaf Hering
Wed, 22 Nov 2023 20:46:15 + Andrew Cooper : > But that entirely depends on whether you think anyone is using it or not. We never got any bugreport, nor have we any indication for actual usage. The script was in the sources. Python3 is supposed to be the default interpreter since a number of y

Re: [PATCH] tools/xenpvboot: remove as unable to convert to Python 3

2023-11-22 Thread Andrew Cooper
On 22/11/2023 8:43 pm, Olaf Hering wrote: > Wed, 22 Nov 2023 20:30:59 + Andrew Cooper : > >> Does this mean there are SLES/OpenSUSE users of xenpvboot ? > We do not know. It is gone by now, in 4.18: > > https://build.opensuse.org/request/show/1126897 Yes.  The email I replied to was the patch

Re: [PATCH] tools/xenpvboot: remove as unable to convert to Python 3

2023-11-22 Thread Olaf Hering
Wed, 22 Nov 2023 20:30:59 + Andrew Cooper : > Does this mean there are SLES/OpenSUSE users of xenpvboot ? We do not know. It is gone by now, in 4.18: https://build.opensuse.org/request/show/1126897 Olaf pgp4eQYvj2jrR.pgp Description: Digitale Signatur von OpenPGP

Re: [PATCH] tools/xenpvboot: remove as unable to convert to Python 3

2023-11-22 Thread Andrew Cooper
On 06/10/2023 3:50 pm, Roger Pau Monne wrote: > The script heavily relies on the urlgrabber python module, which doesn't seem > to be packaged by all distros, it's missing from newer Debian versions at > least. > > Also the usage of the commands module has been deprecated since Python 2.6, > and >

Re: [PATCH] tools/xenpvboot: remove as unable to convert to Python 3

2023-10-06 Thread Andrew Cooper
On 06/10/2023 3:50 pm, Roger Pau Monne wrote: > diff --git a/tools/misc/Makefile b/tools/misc/Makefile > index 233a7948c050..9938bc235968 100644 > --- a/tools/misc/Makefile > +++ b/tools/misc/Makefile > @@ -36,11 +36,8 @@ INSTALL_SBIN += xen-livepatch > INSTALL_SBIN

Re: [PATCH] tools/xenpvboot: remove as unable to convert to Python 3

2023-10-06 Thread Henry Wang
Hi, > On Oct 6, 2023, at 22:55, Andrew Cooper wrote: > > On 06/10/2023 3:50 pm, Roger Pau Monne wrote: >> The script heavily relies on the urlgrabber python module, which doesn't seem >> to be packaged by all distros, it's missing from newer Debian versions at >> least. >> >> Also the usage of

Re: [PATCH] tools/xenpvboot: remove as unable to convert to Python 3

2023-10-06 Thread Andrew Cooper
On 06/10/2023 3:50 pm, Roger Pau Monne wrote: > The script heavily relies on the urlgrabber python module, which doesn't seem > to be packaged by all distros, it's missing from newer Debian versions at > least. > > Also the usage of the commands module has been deprecated since Python 2.6, > and >

[PATCH] tools/xenpvboot: remove as unable to convert to Python 3

2023-10-06 Thread Roger Pau Monne
The script heavily relies on the urlgrabber python module, which doesn't seem to be packaged by all distros, it's missing from newer Debian versions at least. Also the usage of the commands module has been deprecated since Python 2.6, and removed in Python 3, so the code would need to be re-writte