Your message dated Sun, 23 Oct 2022 17:33:53 +0000
with message-id <e1omerb-0006s2...@fasolo.debian.org>
and subject line Bug#1020046: fixed in slimit 0.8.1-6
has caused the Debian Bug report #1020046,
regarding slimit: FTBFS: ModuleNotFoundError: No module named 'minifier'
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.)
--
1020046: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1020046
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: slimit
Version: 0.8.1-5
Severity: serious
Justification: FTBFS
Tags: bookworm sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20220917 ftbfs-bookworm
Hi,
During a rebuild of all packages in sid, your package failed to build
on amd64.
Relevant part (hopefully):
> debian/rules build
> dh build --with python3 --buildsystem=pybuild
> dh_update_autotools_config -O--buildsystem=pybuild
> dh_autoreconf -O--buildsystem=pybuild
> dh_auto_configure -O--buildsystem=pybuild
> I: pybuild base:240: python3.10 setup.py config
> Warning: 'classifiers' should be a list, got type 'filter'
> running config
> dh_auto_build -O--buildsystem=pybuild
> I: pybuild base:240: /usr/bin/python3 setup.py build
> Warning: 'classifiers' should be a list, got type 'filter'
> running build
> running build_py
> creating /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_slimit/build/slimit
> copying src/slimit/__init__.py ->
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_slimit/build/slimit
> copying src/slimit/parser.py ->
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_slimit/build/slimit
> copying src/slimit/mangler.py ->
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_slimit/build/slimit
> copying src/slimit/ast.py ->
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_slimit/build/slimit
> copying src/slimit/unicode_chars.py ->
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_slimit/build/slimit
> copying src/slimit/lexer.py ->
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_slimit/build/slimit
> copying src/slimit/scope.py ->
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_slimit/build/slimit
> copying src/slimit/yacctab.py ->
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_slimit/build/slimit
> copying src/slimit/lextab.py ->
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_slimit/build/slimit
> copying src/slimit/minifier.py ->
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_slimit/build/slimit
> creating /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_slimit/build/slimit/visitors
> copying src/slimit/visitors/__init__.py ->
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_slimit/build/slimit/visitors
> copying src/slimit/visitors/minvisitor.py ->
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_slimit/build/slimit/visitors
> copying src/slimit/visitors/nodevisitor.py ->
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_slimit/build/slimit/visitors
> copying src/slimit/visitors/ecmavisitor.py ->
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_slimit/build/slimit/visitors
> copying src/slimit/visitors/scopevisitor.py ->
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_slimit/build/slimit/visitors
> creating /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_slimit/build/slimit/tests
> copying src/slimit/tests/__init__.py ->
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_slimit/build/slimit/tests
> copying src/slimit/tests/test_nodevisitor.py ->
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_slimit/build/slimit/tests
> copying src/slimit/tests/test_ecmavisitor.py ->
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_slimit/build/slimit/tests
> copying src/slimit/tests/test_mangler.py ->
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_slimit/build/slimit/tests
> copying src/slimit/tests/test_cmd.py ->
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_slimit/build/slimit/tests
> copying src/slimit/tests/test_lexer.py ->
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_slimit/build/slimit/tests
> copying src/slimit/tests/test_minifier.py ->
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_slimit/build/slimit/tests
> copying src/slimit/tests/test_parser.py ->
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_slimit/build/slimit/tests
> dh_auto_test -O--buildsystem=pybuild
> I: pybuild base:240: cd /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_slimit/build;
> python3.10 -m unittest discover -v
> slimit (unittest.loader._FailedTest) ... ERROR
>
> ======================================================================
> ERROR: slimit (unittest.loader._FailedTest)
> ----------------------------------------------------------------------
> ImportError: Failed to import test module: slimit
> Traceback (most recent call last):
> File "/usr/lib/python3.10/unittest/loader.py", line 470, in _find_test_path
> package = self._get_module_from_name(name)
> File "/usr/lib/python3.10/unittest/loader.py", line 377, in
> _get_module_from_name
> __import__(name)
> File
> "/<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_slimit/build/slimit/__init__.py",
> line 27, in <module>
> from minifier import minify
> ModuleNotFoundError: No module named 'minifier'
>
>
> ----------------------------------------------------------------------
> Ran 1 test in 0.000s
>
> FAILED (errors=1)
> E: pybuild pybuild:379: test: plugin distutils failed with: exit code=1: cd
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_slimit/build; python3.10 -m unittest
> discover -v
> dh_auto_test: error: pybuild --test -i python{version} -p 3.10 returned exit
> code 13
The full build log is available from:
http://qa-logs.debian.net/2022/09/17/slimit_0.8.1-5_unstable.log
All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20220917;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20220917&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results
A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!
If you reassign this bug to another package, please marking it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects
If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.
--- End Message ---
--- Begin Message ---
Source: slimit
Source-Version: 0.8.1-6
Done: Bastian Germann <b...@debian.org>
We believe that the bug you reported is fixed in the latest version of
slimit, which is due to be installed in the Debian FTP archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to 1020...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Bastian Germann <b...@debian.org> (supplier of updated slimit package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Format: 1.8
Date: Sun, 23 Oct 2022 18:28:03 +0200
Source: slimit
Architecture: source
Version: 0.8.1-6
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team <team+pyt...@tracker.debian.org>
Changed-By: Bastian Germann <b...@debian.org>
Closes: 1020046
Changes:
slimit (0.8.1-6) unstable; urgency=medium
.
* Team upload.
* Exclude running test_lexer
* Replace python3 patch with upstream's patch (Closes: #1020046)
Checksums-Sha1:
e92feac4a8eadeb1ecf79b75bb5aa4f8ac76d4db 1885 slimit_0.8.1-6.dsc
50d7b6dd3f16f927001364670b89bb571c3e7f28 40832 slimit_0.8.1-6.debian.tar.xz
d41222ba63a8d91771f030ed0b46800f4b15b3ef 7017 slimit_0.8.1-6_source.buildinfo
Checksums-Sha256:
cc313e93e99d20cc27f766cdbd046d5e58661f8a0ade0f27f9553d34d4998043 1885
slimit_0.8.1-6.dsc
5a5d41140c6dec034f7903eb717ca94f790704173c0e27218cec5394a0f5c974 40832
slimit_0.8.1-6.debian.tar.xz
74c8006196e36a9e78d78841ff00fe4152ce08d7494dbd2be9a4b0b614d23b68 7017
slimit_0.8.1-6_source.buildinfo
Files:
4c5dc94b9a055c56d5f217efd478f93e 1885 python optional slimit_0.8.1-6.dsc
be47f7735b61bfbd3b08ec8435d6ee8f 40832 python optional
slimit_0.8.1-6.debian.tar.xz
7cd48e667894922019c85c360f9b50b5 7017 python optional
slimit_0.8.1-6_source.buildinfo
-----BEGIN PGP SIGNATURE-----
iQHEBAEBCgAuFiEEQGIgyLhVKAI3jM5BH1x6i0VWQxQFAmNVbCUQHGJhZ2VAZGVi
aWFuLm9yZwAKCRAfXHqLRVZDFBR/C/4yR2vBKhWwTGe/DOonSebqtkTBNnMSNVNI
wg1bs21oKyOyOQ42RzpgPj6jUr+gSZhN6/JlzWhTPl24zipcpSSTB9IUZFWW9GIu
UiTH5udLzrppIm1f4Eed7oG9VyvlCH9vERzyjRQAaaVsPKPWOmTA3+APw1obFNya
NV8IvzNJSTsaeQcfRRp0nb2KyrPf17MfilqWiGFtE31avBTcM5ZOobD8loFy1STg
bgS9oOfxbjiY/38VHAeFZwfYA3xz/pUApq3lbZuSYfJTvTfhGlFSe2/dHsQsCuwC
dt+hzx6ludBRp6RQrTbjFQMR96dpkQq8itvsBGjUxtP6lZLHn6xcy/091lu+n21b
rnM0oYWhEiI9+CxHWcs1+yzEeYpjL5IVIp0XyIQsaFBxnf8Oi0QfZqpiHuD2ahLv
CVClpgfjuXNmaGHf6nhwXTiKD9iy8WeA9jvMRG7d+91DL61yQmzOzz2fnTOqeabS
yKtR7KDtbAmd0lWCEpW/PiSIgVuc0HA=
=WmNe
-----END PGP SIGNATURE-----
--- End Message ---