Elliott Mitchell
2020-Sep-11 16:43 UTC
[Pkg-xen-devel] [PATCH 1/3] debian/control: Fix python dependancy
Debian's Xen build actually has two distinct Python dependancies. The build process itself needs Python's build machine runtime available to run portions of the build written in Python. The build process also needs the host machine libraries in order to link Xen's Python libraries. This changes debian/control as in this commit. Signed-off-by: Elliott Mitchell <ehem+debian at m5p.com> --- debian/control | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/control b/debian/control index 0aa9b2cad3..0ea70a0d33 100644 --- a/debian/control +++ b/debian/control @@ -12,7 +12,8 @@ Build-Depends: rdfind, lsb-release, flex, bison, - python3-dev, + python3-dev:any, + libpython3-dev, dh-python, bcc [i386 amd64], gcc-multilib [i386 amd64], -- -- (\___(\___(\______ --=> 8-) EHM <=-- ______/)___/)___/) \BS ( | ehem+sigmsg at m5p.com PGP 87145445 | ) / \_CS\ | _____ -O #include <stddisclaimer.h> O- _____ | / _/ 8A19\___\_|_/58D2 7E3D DDF4 7BA6 <-PGP-> 41D1 B375 37D0 8714\_|_/___/5445
Hans van Kranenburg
2020-Sep-17 22:49 UTC
[Pkg-xen-devel] [PATCH 1/3] debian/control: Fix python dependancy
On 9/11/20 6:43 PM, Elliott Mitchell wrote:> Debian's Xen build actually has two distinct Python dependancies. The > build process itself needs Python's build machine runtime available to > run portions of the build written in Python. The build process also > needs the host machine libraries in order to link Xen's Python libraries. > > This changes debian/control as in this commit. > > Signed-off-by: Elliott Mitchell <ehem+debian at m5p.com> > --- > debian/control | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/debian/control b/debian/control > index 0aa9b2cad3..0ea70a0d33 100644 > --- a/debian/control > +++ b/debian/control > @@ -12,7 +12,8 @@ Build-Depends: > rdfind, > lsb-release, > flex, bison, > - python3-dev, > + python3-dev:any, > + libpython3-dev, > dh-python, > bcc [i386 amd64], > gcc-multilib [i386 amd64],Acked-by: Hans van Kranenburg <hans at knorrie.org> Thanks for explaining, applied. K