Your message dated Wed, 25 Nov 2020 21:50:20 +0100
with message-id <b46f1bc2-b874-c330-afa2-08e749d88...@debian.org>
and subject line Re: Bug#971418: jhbuild: Missing dependency on python3-distuils
has caused the Debian Bug report #971418,
regarding jhbuild: Missing dependency on python3-distutils
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)
--
971418: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=971418
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: jhbuild
Version: 3.38.0-1
Severity: serious
Tags: patch
Hi,
This package is missing a binary dependency on python3-distutils:
$ jhbuild
Traceback (most recent call last):
File "/usr/bin/jhbuild", line 29, in <module>
import jhbuild.main
File "/usr/lib/python3/dist-packages/jhbuild/main.py", line 28, in <module>
import jhbuild.config
File "/usr/lib/python3/dist-packages/jhbuild/config.py", line 31, in
<module>
from jhbuild.environment import setup_env, setup_env_defaults, addpath
File "/usr/lib/python3/dist-packages/jhbuild/environment.py", line 24, in
<module>
from distutils.sysconfig import get_python_lib
ModuleNotFoundError: No module named 'distutils.sysconfig'
Installing python3-distutils resolves this issue.
Patch attached (although it might mean some Python substvar apparatus
is not working as expected).
Regards,
--
,''`.
: :' : Chris Lamb
`. `'` la...@debian.org / chris-lamb.co.uk
`-
diff --git a/debian/control b/debian/control
index e7a8882..7d18b97 100644
--- a/debian/control
+++ b/debian/control
@@ -22,7 +22,8 @@ Package: jhbuild
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
- ${python3:Depends}
+ ${python3:Depends},
+ python3-distuils,
Recommends: git-core,
patch,
wget | curl,
--- End Message ---
--- Begin Message ---
Version: 3.38.0-3
jhbuild (3.38.0-3) unstable; urgency=medium
.
* Fix typo in python3-distutils dependency.
Thanks to Patrice Duroux
Let's have this version migrate. Closing the bug with the right version
info.
Paul
signature.asc
Description: OpenPGP digital signature
--- End Message ---