Package: src:python-easydev
Version: 0.13.3+dfsg1-1
Severity: serious
Tags: ftbfs forky sid

Dear maintainer:

During a rebuild of all packages in unstable, this package failed to build.

Below you will find the last part of the build log (probably the most
relevant part, but not necessarily). If required, the full build log
is available here:

https://people.debian.org/~sanvila/build-logs/202512/

About the archive rebuild: The build was made on virtual machines from AWS,
using sbuild and a reduced chroot with only build-essential packages.

If you cannot reproduce the bug please contact me privately, as I
am willing to provide ssh access to a virtual machine where the bug is
fully reproducible.

If this is really a bug in one of the build-depends, please use
reassign and add an affects on src:python-easydev, so that this is still
visible in the BTS web page for this package.

Thanks.

--------------------------------------------------------------------------------
[...]
 debian/rules clean
dh clean --buildsystem=pybuild
   dh_auto_clean -O--buildsystem=pybuild
   dh_autoreconf_clean -O--buildsystem=pybuild
   dh_clean -O--buildsystem=pybuild
 debian/rules binary
dh binary --buildsystem=pybuild
   dh_update_autotools_config -O--buildsystem=pybuild
   dh_autoreconf -O--buildsystem=pybuild
   dh_auto_configure -O--buildsystem=pybuild
   dh_auto_build -O--buildsystem=pybuild
I: pybuild plugin_pyproject:131: Building wheel for python3.14 with "build" 
module
I: pybuild base:317: python3.14 -m build --skip-dependency-check --no-isolation 
--wheel --outdir /<<PKGBUILDDIR>>/.pybuild/cpython3_3.14_easydev  
* Building wheel...
Successfully built easydev-0.13.3-py3-none-any.whl
I: pybuild plugin_pyproject:155: Unpacking wheel built for python3.14 with 
"installer" module
I: pybuild plugin_pyproject:131: Building wheel for python3.13 with "build" 
module
I: pybuild base:317: python3.13 -m build --skip-dependency-check --no-isolation 
--wheel --outdir /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_easydev  
* Building wheel...
Successfully built easydev-0.13.3-py3-none-any.whl
I: pybuild plugin_pyproject:155: Unpacking wheel built for python3.13 with 
"installer" module
   dh_auto_test -O--buildsystem=pybuild
I: pybuild base:317: cd /<<PKGBUILDDIR>>/.pybuild/cpython3_3.14_easydev/build; 
python3.14 -m pytest -k "not test_url"
============================= test session starts ==============================
platform linux -- Python 3.14.2, pytest-9.0.2, pluggy-1.6.0
rootdir: /<<PKGBUILDDIR>>/.pybuild/cpython3_3.14_easydev/build
configfile: pyproject.toml
plugins: cov-5.0.0, mock-3.15.1
collected 57 items / 1 deselected / 56 selected

test/test_appdirs.py .                                                   [  1%]
test/test_browse.py ..                                                   [  5%]
test/test_chunks.py .                                                    [  7%]
test/test_cnolab_sphinx.py ..                                            [ 10%]
test/test_codecs.py ..                                                   [ 14%]
test/test_config.py ........                                             [ 28%]
test/test_console.py ....                                                [ 35%]
test/test_copybutton.py ..                                               [ 39%]
test/test_decorators.py ...                                              [ 44%]
test/test_dependencies.py .                                              [ 46%]
test/test_doc.py .                                                       [ 48%]
test/test_easytest.py ...                                                [ 53%]
test/test_logging_tools.py .                                             [ 55%]
test/test_md5.py .                                                       [ 57%]
test/test_misc.py ...                                                    [ 62%]
test/test_multicore.py F                                                 [ 64%]
test/test_options.py .                                                   [ 66%]
test/test_paths.py ....                                                  [ 73%]
test/test_platform.py .                                                  [ 75%]
test/test_profiler.py .                                                  [ 76%]
test/test_progressbar.py .                                               [ 78%]
test/test_timer.py .                                                     [ 80%]
test/test_tools.py ...........                                           [100%]

=================================== FAILURES ===================================
__________________________________ test_func ___________________________________

    def test_func():
        t = MultiProcessing(verbose=True)
        t.add_job(func, 200)
        t.add_job(func, 100)
        t.add_job(func, 50)
>       t.run()

test/test_multicore.py:26: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
easydev/multicore.py:111: in run
    self.pool = Pool(self.maxcpu, init_worker)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
/usr/lib/python3.14/multiprocessing/context.py:119: in Pool
    return Pool(processes, initializer, initargs, maxtasksperchild,
/usr/lib/python3.14/multiprocessing/pool.py:215: in __init__
    self._repopulate_pool()
/usr/lib/python3.14/multiprocessing/pool.py:306: in _repopulate_pool
    return self._repopulate_pool_static(self._ctx, self.Process,
/usr/lib/python3.14/multiprocessing/pool.py:329: in _repopulate_pool_static
    w.start()
/usr/lib/python3.14/multiprocessing/process.py:121: in start
    self._popen = self._Popen(self)
                  ^^^^^^^^^^^^^^^^^
/usr/lib/python3.14/multiprocessing/context.py:300: in _Popen
    return Popen(process_obj)
           ^^^^^^^^^^^^^^^^^^
/usr/lib/python3.14/multiprocessing/popen_forkserver.py:35: in __init__
    super().__init__(process_obj)
/usr/lib/python3.14/multiprocessing/popen_fork.py:20: in __init__
    self._launch(process_obj)
/usr/lib/python3.14/multiprocessing/popen_forkserver.py:47: in _launch
    reduction.dump(process_obj, buf)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

obj = <ForkServerProcess name='ForkServerPoolWorker-4' parent=93 initial daemon>
file = <_io.BytesIO object at 0x7f83ca4d2a20>, protocol = None

    def dump(obj, file, protocol=None):
        '''Replacement for pickle.dump() using ForkingPickler.'''
>       ForkingPickler(file, protocol).dump(obj)
E       _pickle.PicklingError: Can't pickle local object <function 
MultiProcessing.run.<locals>.init_worker at 0x7f83ca4c87d0>
E       when serializing tuple item 2
E       when serializing dict item '_args'
E       when serializing multiprocessing.context.ForkServerProcess state
E       when serializing multiprocessing.context.ForkServerProcess object

/usr/lib/python3.14/multiprocessing/reduction.py:60: PicklingError
----------------------------- Captured stdout call -----------------------------
Adding jobs in the queue..
Adding jobs in the queue..
Adding jobs in the queue..

 [                  0%                  ] 0 of 3 complete in 0.0 sec
=========================== short test summary info ============================
FAILED test/test_multicore.py::test_func - _pickle.PicklingError: Can't pickl...
================== 1 failed, 55 passed, 1 deselected in 0.78s ==================
E: pybuild pybuild:389: test: plugin pyproject failed with: exit code=1: cd 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.14_easydev/build; python3.14 -m pytest -k 
"not test_url"
I: pybuild base:317: cd /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_easydev/build; 
python3.13 -m pytest -k "not test_url"
============================= test session starts ==============================
platform linux -- Python 3.13.11, pytest-9.0.2, pluggy-1.6.0
rootdir: /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_easydev/build
configfile: pyproject.toml
plugins: cov-5.0.0, mock-3.15.1
collected 57 items / 1 deselected / 56 selected

test/test_appdirs.py .                                                   [  1%]
test/test_browse.py ..                                                   [  5%]
test/test_chunks.py .                                                    [  7%]
test/test_cnolab_sphinx.py ..                                            [ 10%]
test/test_codecs.py ..                                                   [ 14%]
test/test_config.py ........                                             [ 28%]
test/test_console.py ....                                                [ 35%]
test/test_copybutton.py ..                                               [ 39%]
test/test_decorators.py ...                                              [ 44%]
test/test_dependencies.py .                                              [ 46%]
test/test_doc.py .                                                       [ 48%]
test/test_easytest.py ...                                                [ 53%]
test/test_logging_tools.py .                                             [ 55%]
test/test_md5.py .                                                       [ 57%]
test/test_misc.py ...                                                    [ 62%]
test/test_multicore.py .                                                 [ 64%]
test/test_options.py .                                                   [ 66%]
test/test_paths.py ....                                                  [ 73%]
test/test_platform.py .                                                  [ 75%]
test/test_profiler.py .                                                  [ 76%]
test/test_progressbar.py .                                               [ 78%]
test/test_timer.py .                                                     [ 80%]
test/test_tools.py ...........                                           [100%]

======================= 56 passed, 1 deselected in 2.05s =======================
dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p "3.14 
3.13" returned exit code 13
make: *** [debian/rules:11: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--------------------------------------------------------------------------------

Reply via email to