Package: src:ros2-colcon-parallel-executor Version: 0.3.0-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:ros2-colcon-parallel-executor, 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 I: pybuild base:317: python3.14 setup.py clean /usr/lib/python3/dist-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. !! ******************************************************************************** Please consider removing the following classifiers in favor of a SPDX license expression: License :: OSI Approved :: Apache Software License See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. ******************************************************************************** !! self._finalize_license_expression() running clean removing '/<<PKGBUILDDIR>>/.pybuild/cpython3_3.14/build' (and everything under it) 'build/bdist.linux-x86_64' does not exist -- can't clean it 'build/scripts-3.14' does not exist -- can't clean it I: pybuild base:317: python3.13 setup.py clean /usr/lib/python3/dist-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. !! ******************************************************************************** Please consider removing the following classifiers in favor of a SPDX license expression: License :: OSI Approved :: Apache Software License See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. ******************************************************************************** !! self._finalize_license_expression() running clean removing '/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build' (and everything under it) 'build/bdist.linux-x86_64' does not exist -- can't clean it 'build/scripts-3.13' does not exist -- can't clean it 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 I: pybuild base:317: python3.14 setup.py config /usr/lib/python3/dist-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. !! ******************************************************************************** Please consider removing the following classifiers in favor of a SPDX license expression: License :: OSI Approved :: Apache Software License See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. ******************************************************************************** !! self._finalize_license_expression() running config I: pybuild base:317: python3.13 setup.py config /usr/lib/python3/dist-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. !! ******************************************************************************** Please consider removing the following classifiers in favor of a SPDX license expression: License :: OSI Approved :: Apache Software License See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. ******************************************************************************** !! self._finalize_license_expression() running config dh_auto_build -O--buildsystem=pybuild I: pybuild base:317: /usr/bin/python3.14 setup.py build /usr/lib/python3/dist-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. !! ******************************************************************************** Please consider removing the following classifiers in favor of a SPDX license expression: License :: OSI Approved :: Apache Software License See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. ******************************************************************************** !! self._finalize_license_expression() running build running build_py creating /<<PKGBUILDDIR>>/.pybuild/cpython3_3.14/build/colcon_parallel_executor copying colcon_parallel_executor/__init__.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.14/build/colcon_parallel_executor creating /<<PKGBUILDDIR>>/.pybuild/cpython3_3.14/build/colcon_parallel_executor/executor copying colcon_parallel_executor/executor/parallel.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.14/build/colcon_parallel_executor/executor copying colcon_parallel_executor/executor/__init__.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.14/build/colcon_parallel_executor/executor I: pybuild base:317: /usr/bin/python3 setup.py build /usr/lib/python3/dist-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. !! ******************************************************************************** Please consider removing the following classifiers in favor of a SPDX license expression: License :: OSI Approved :: Apache Software License See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. ******************************************************************************** !! self._finalize_license_expression() running build running build_py creating /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/colcon_parallel_executor copying colcon_parallel_executor/__init__.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/colcon_parallel_executor creating /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/colcon_parallel_executor/executor copying colcon_parallel_executor/executor/parallel.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/colcon_parallel_executor/executor copying colcon_parallel_executor/executor/__init__.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/colcon_parallel_executor/executor dh_auto_test -O--buildsystem=pybuild I: pybuild base:317: cd /<<PKGBUILDDIR>>/.pybuild/cpython3_3.14/build; python3.14 -m pytest test ============================= test session starts ============================== platform linux -- Python 3.14.2, pytest-9.0.2, pluggy-1.6.0 rootdir: /<<PKGBUILDDIR>> configfile: setup.cfg plugins: colcon-core-0.20.0, cov-5.0.0, typeguard-4.4.4, repeat-0.9.4, rerunfailures-16.1 collected 4 items / 1 skipped test/test_copyright_license.py . [ 25%] test/test_executor_parallel.py F =================================== FAILURES =================================== ________________________________ test_parallel _________________________________ def test_parallel(): global ran_jobs extension = ParallelExecutorExtension() args = SimpleNamespace(parallel_workers=2) jobs = OrderedDict() jobs['one'] = Job1() # success rc = extension.execute(args, jobs) > assert rc == 0 E assert 1 == 0 test/test_executor_parallel.py:118: AssertionError ------------------------------ Captured log call ------------------------------- ERROR colcon.colcon_parallel_executor.executor.parallel:parallel.py:94 Exception in job execution: 'asyncio.iscoroutinefunction' is deprecated and slated for removal in Python 3.16; use inspect.iscoroutinefunction() instead Traceback (most recent call last): File "/<<PKGBUILDDIR>>/.pybuild/cpython3_3.14/build/colcon_parallel_executor/executor/parallel.py", line 75, in execute loop.run_until_complete(future) ~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^ File "/usr/lib/python3.14/asyncio/base_events.py", line 719, in run_until_complete return future.result() ~~~~~~~~~~~~~^^ File "/<<PKGBUILDDIR>>/.pybuild/cpython3_3.14/build/colcon_parallel_executor/executor/parallel.py", line 153, in _execute assert asyncio.iscoroutinefunction(job.__call__), \ ~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^ File "/usr/lib/python3.14/asyncio/coroutines.py", line 23, in iscoroutinefunction warnings._deprecated("asyncio.iscoroutinefunction", ~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ f"{warnings._DEPRECATED_MSG}; " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ "use inspect.iscoroutinefunction() instead", ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ remove=(3,16)) ^^^^^^^^^^^^^^ File "/usr/lib/python3.14/_py_warnings.py", line 833, in _deprecated _wm.warn(msg, DeprecationWarning, stacklevel=3) ~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ DeprecationWarning: 'asyncio.iscoroutinefunction' is deprecated and slated for removal in Python 3.16; use inspect.iscoroutinefunction() instead =========================== short test summary info ============================ FAILED test/test_executor_parallel.py::test_parallel - assert 1 == 0 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!! KeyboardInterrupt !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! /usr/lib/python3.14/threading.py:1133: KeyboardInterrupt (to show a full traceback on KeyboardInterrupt use --full-trace) ==================== 1 failed, 1 passed, 1 skipped in 0.29s ==================== E: pybuild pybuild:389: test: plugin distutils failed with: exit code=2: cd /<<PKGBUILDDIR>>/.pybuild/cpython3_3.14/build; python3.14 -m pytest test I: pybuild base:317: cd /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build; python3.13 -m pytest test ============================= test session starts ============================== platform linux -- Python 3.13.11, pytest-9.0.2, pluggy-1.6.0 rootdir: /<<PKGBUILDDIR>> configfile: setup.cfg plugins: colcon-core-0.20.0, cov-5.0.0, typeguard-4.4.4, repeat-0.9.4, rerunfailures-16.1 collected 4 items / 1 skipped test/test_copyright_license.py . [ 25%] test/test_executor_parallel.py .. [ 75%] test/test_flake8.py . [100%] ========================= 4 passed, 1 skipped in 3.26s ========================= dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p "3.14 3.13" returned exit code 13 make: *** [debian/rules:4: binary] Error 25 dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2 --------------------------------------------------------------------------------

