Your message dated Wed, 04 Dec 2024 10:40:34 +0000
with message-id <e1timo6-00amck...@fasolo.debian.org>
and subject line Bug#1086383: fixed in scikit-build 0.18.1-1.1
has caused the Debian Bug report #1086383,
regarding scikit-build: FTBFS: FAILED 
tests/test_broken_project.py::test_cmakelists_with_fatalerror_fails
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.)


-- 
1086383: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1086383
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:scikit-build
Version: 0.18.1-1
Severity: serious
Tags: ftbfs

Dear maintainer:

During a rebuild of all packages in unstable, your package failed to build:

--------------------------------------------------------------------------------
[...]
 debian/rules binary
dh binary --with python3,sphinxdoc --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:129: Building wheel for python3.12 with "build" 
module
I: pybuild base:311: python3.12 -m build --skip-dependency-check --no-isolation --wheel 
--outdir /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_skbuild
* Building wheel...
Successfully built scikit_build-0.18.1-py3-none-any.whl
I: pybuild plugin_pyproject:144: Unpacking wheel built for python3.12 with 
"installer" module
   debian/rules override_dh_auto_test
make[1]: Entering directory '/<<PKGBUILDDIR>>'
py3versions: no X-Python3-Version in control file, using supported versions

[... snipped ...]

            build_args = ["build"]
            build_args.extend(generator_args)
@project_setup_py_test("hello-no-language", build_args, disable_languages_test=True)
            def run():
                pass
failed = False
            message = ""
            try:
              run()

build_args = ['build', '-G', 'invalid']
failed     = False
generator_args = ['-G', 'invalid']
message    = ''
run        = <function test_invalid_generator.<locals>.run at 0x7f06f5410360>

tests/test_skbuild.py:121:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests/__init__.py:255: in wrapped
    with execute_setup_py(wrapped.tmp_dir, wrapped.setup_args, 
disable_languages_test=disable_languages_test):  # type: ignore[attr-defined]
        disable_languages_test = True
        fun        = <function test_invalid_generator.<locals>.run at 
0x7f06f5412020>
        iargs      = ()
        ikwargs    = {}
        ret        = False
        wrapped    = <function test_invalid_generator.<locals>.run at 
0x7f06f5410360>
/usr/lib/python3.12/contextlib.py:137: in __enter__
    return next(self.gen)
        self       = <contextlib._GeneratorContextManager object at 
0x7f06f5531160>
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

project_dir = local('/tmp/pytest-of-buildd/pytest-152/run0')
setup_args = ['build', '-G', 'invalid'], disable_languages_test = True

    @contextmanager
    def execute_setup_py(project_dir, setup_args, disable_languages_test=False):
        """Context manager executing ``setup.py`` with the given arguments.
It yields after changing the current working directory
        to ``project_dir``.
        """
# See https://stackoverflow.com/questions/9160227/dir-util-copy-tree-fails-after-shutil-rmtree
      distutils.dir_util._path_created.clear()  # type: ignore[attr-defined]
E       AttributeError: module 'distutils.dir_util' has no attribute 
'_path_created'

disable_languages_test = True
project_dir = local('/tmp/pytest-of-buildd/pytest-152/run0')
setup_args = ['build', '-G', 'invalid']

tests/__init__.py:218: AttributeError
----------------------------- Captured stdout call -----------------------------
Initialized empty Git repository in /tmp/pytest-of-buildd/pytest-152/run0/.git/
[master (root-commit) 240b146] Initial commit
 2 files changed, 16 insertions(+)
 create mode 100644 CMakeLists.txt
 create mode 100644 setup.py
----------------------------- Captured stderr call -----------------------------
hint: Using 'master' as the name for the initial branch. This default branch 
name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint:   git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint:   git branch -m <name>
___________________ test_invalid_generator[generator_args1] ____________________

generator_args = ['--', '-G', 'invalid']

    @pytest.mark.parametrize(
        "generator_args",
        [
            ["-G", "invalid"],
            ["--", "-G", "invalid"],
        ],
    )
    def test_invalid_generator(generator_args):
        with push_dir():
            build_args = ["build"]
            build_args.extend(generator_args)
@project_setup_py_test("hello-no-language", build_args, disable_languages_test=True)
            def run():
                pass
failed = False
            message = ""
            try:
              run()

build_args = ['build', '--', '-G', 'invalid']
failed     = False
generator_args = ['--', '-G', 'invalid']
message    = ''
run        = <function test_invalid_generator.<locals>.run at 0x7f06f5410040>

tests/test_skbuild.py:121:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests/__init__.py:255: in wrapped
    with execute_setup_py(wrapped.tmp_dir, wrapped.setup_args, 
disable_languages_test=disable_languages_test):  # type: ignore[attr-defined]
        disable_languages_test = True
        fun        = <function test_invalid_generator.<locals>.run at 
0x7f06f5410680>
        iargs      = ()
        ikwargs    = {}
        ret        = False
        wrapped    = <function test_invalid_generator.<locals>.run at 
0x7f06f5410040>
/usr/lib/python3.12/contextlib.py:137: in __enter__
    return next(self.gen)
        self       = <contextlib._GeneratorContextManager object at 
0x7f06f5257d70>
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

project_dir = local('/tmp/pytest-of-buildd/pytest-153/run0')
setup_args = ['build', '--', '-G', 'invalid'], disable_languages_test = True

    @contextmanager
    def execute_setup_py(project_dir, setup_args, disable_languages_test=False):
        """Context manager executing ``setup.py`` with the given arguments.
It yields after changing the current working directory
        to ``project_dir``.
        """
# See https://stackoverflow.com/questions/9160227/dir-util-copy-tree-fails-after-shutil-rmtree
      distutils.dir_util._path_created.clear()  # type: ignore[attr-defined]
E       AttributeError: module 'distutils.dir_util' has no attribute 
'_path_created'

disable_languages_test = True
project_dir = local('/tmp/pytest-of-buildd/pytest-153/run0')
setup_args = ['build', '--', '-G', 'invalid']

tests/__init__.py:218: AttributeError
----------------------------- Captured stdout call -----------------------------
Initialized empty Git repository in /tmp/pytest-of-buildd/pytest-153/run0/.git/
[master (root-commit) 240b146] Initial commit
 2 files changed, 16 insertions(+)
 create mode 100644 CMakeLists.txt
 create mode 100644 setup.py
----------------------------- Captured stderr call -----------------------------
hint: Using 'master' as the name for the initial branch. This default branch 
name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint:   git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint:   git branch -m <name>
_________________________ test_skbuild_variable_builds _________________________

iargs = (), ikwargs = {}

    @functools.wraps(fun)
    def wrapped(*iargs, **ikwargs):
        if wrapped.tmp_dir is None:  # type: ignore[attr-defined]
            wrapped.tmp_dir = _tmpdir(fun.__name__)  # type: 
ignore[attr-defined]
            prepare_project(wrapped.project, wrapped.tmp_dir)  # type: 
ignore[attr-defined]
            initialize_git_repo_and_commit(wrapped.tmp_dir, 
verbose=wrapped.verbose_git)  # type: ignore[attr-defined]
      with execute_setup_py(wrapped.tmp_dir, wrapped.setup_args, 
disable_languages_test=disable_languages_test):  # type: ignore[attr-defined]

disable_languages_test = True
fun        = <function test_skbuild_variable_builds at 0x7f06f5578ae0>
iargs      = ()
ikwargs    = {}
ret        = False
wrapped    = <function test_skbuild_variable_builds at 0x7f06f5578b80>

tests/__init__.py:255:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python3.12/contextlib.py:137: in __enter__
    return next(self.gen)
        self       = <contextlib._GeneratorContextManager object at 
0x7f06f54a7680>
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

project_dir = 
local('/tmp/pytest-of-buildd/pytest-154/test_skbuild_variable_builds0')
setup_args = ['build'], disable_languages_test = True

    @contextmanager
    def execute_setup_py(project_dir, setup_args, disable_languages_test=False):
        """Context manager executing ``setup.py`` with the given arguments.
It yields after changing the current working directory
        to ``project_dir``.
        """
# See https://stackoverflow.com/questions/9160227/dir-util-copy-tree-fails-after-shutil-rmtree
      distutils.dir_util._path_created.clear()  # type: ignore[attr-defined]
E       AttributeError: module 'distutils.dir_util' has no attribute 
'_path_created'

disable_languages_test = True
project_dir = 
local('/tmp/pytest-of-buildd/pytest-154/test_skbuild_variable_builds0')
setup_args = ['build']

tests/__init__.py:218: AttributeError
----------------------------- Captured stdout call -----------------------------
Initialized empty Git repository in 
/tmp/pytest-of-buildd/pytest-154/test_skbuild_variable_builds0/.git/
[master (root-commit) 09fbb65] Initial commit
 2 files changed, 20 insertions(+)
 create mode 100644 CMakeLists.txt
 create mode 100644 setup.py
----------------------------- Captured stderr call -----------------------------
hint: Using 'master' as the name for the initial branch. This default branch 
name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint:   git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint:   git branch -m <name>
_________________________ test_skbuild_variable_sdist __________________________

iargs = (), ikwargs = {}

    @functools.wraps(fun)
    def wrapped(*iargs, **ikwargs):
        if wrapped.tmp_dir is None:  # type: ignore[attr-defined]
            wrapped.tmp_dir = _tmpdir(fun.__name__)  # type: 
ignore[attr-defined]
            prepare_project(wrapped.project, wrapped.tmp_dir)  # type: 
ignore[attr-defined]
            initialize_git_repo_and_commit(wrapped.tmp_dir, 
verbose=wrapped.verbose_git)  # type: ignore[attr-defined]
      with execute_setup_py(wrapped.tmp_dir, wrapped.setup_args, 
disable_languages_test=disable_languages_test):  # type: ignore[attr-defined]

disable_languages_test = True
fun        = <function test_skbuild_variable_sdist at 0x7f06f5578c20>
iargs      = ()
ikwargs    = {}
ret        = False
wrapped    = <function test_skbuild_variable_sdist at 0x7f06f5578cc0>

tests/__init__.py:255:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python3.12/contextlib.py:137: in __enter__
    return next(self.gen)
        self       = <contextlib._GeneratorContextManager object at 
0x7f06f5298a40>
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

project_dir = 
local('/tmp/pytest-of-buildd/pytest-155/test_skbuild_variable_sdist0')
setup_args = ['sdist'], disable_languages_test = True

    @contextmanager
    def execute_setup_py(project_dir, setup_args, disable_languages_test=False):
        """Context manager executing ``setup.py`` with the given arguments.
It yields after changing the current working directory
        to ``project_dir``.
        """
# See https://stackoverflow.com/questions/9160227/dir-util-copy-tree-fails-after-shutil-rmtree
      distutils.dir_util._path_created.clear()  # type: ignore[attr-defined]
E       AttributeError: module 'distutils.dir_util' has no attribute 
'_path_created'

disable_languages_test = True
project_dir = 
local('/tmp/pytest-of-buildd/pytest-155/test_skbuild_variable_sdist0')
setup_args = ['sdist']

tests/__init__.py:218: AttributeError
----------------------------- Captured stdout call -----------------------------
Initialized empty Git repository in 
/tmp/pytest-of-buildd/pytest-155/test_skbuild_variable_sdist0/.git/
[master (root-commit) 09fbb65] Initial commit
 2 files changed, 20 insertions(+)
 create mode 100644 CMakeLists.txt
 create mode 100644 setup.py
----------------------------- Captured stderr call -----------------------------
hint: Using 'master' as the name for the initial branch. This default branch 
name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint:   git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint:   git branch -m <name>
_________________________ test_skbuild_variable_wheel __________________________

iargs = (), ikwargs = {}

    @functools.wraps(fun)
    def wrapped(*iargs, **ikwargs):
        if wrapped.tmp_dir is None:  # type: ignore[attr-defined]
            wrapped.tmp_dir = _tmpdir(fun.__name__)  # type: 
ignore[attr-defined]
            prepare_project(wrapped.project, wrapped.tmp_dir)  # type: 
ignore[attr-defined]
            initialize_git_repo_and_commit(wrapped.tmp_dir, 
verbose=wrapped.verbose_git)  # type: ignore[attr-defined]
      with execute_setup_py(wrapped.tmp_dir, wrapped.setup_args, 
disable_languages_test=disable_languages_test):  # type: ignore[attr-defined]

disable_languages_test = True
fun        = <function test_skbuild_variable_wheel at 0x7f06f5578d60>
iargs      = ()
ikwargs    = {}
ret        = False
wrapped    = <function test_skbuild_variable_wheel at 0x7f06f5578e00>

tests/__init__.py:255:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python3.12/contextlib.py:137: in __enter__
    return next(self.gen)
        self       = <contextlib._GeneratorContextManager object at 
0x7f06f5824770>
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

project_dir = 
local('/tmp/pytest-of-buildd/pytest-156/test_skbuild_variable_wheel0')
setup_args = ['bdist_wheel'], disable_languages_test = True

    @contextmanager
    def execute_setup_py(project_dir, setup_args, disable_languages_test=False):
        """Context manager executing ``setup.py`` with the given arguments.
It yields after changing the current working directory
        to ``project_dir``.
        """
# See https://stackoverflow.com/questions/9160227/dir-util-copy-tree-fails-after-shutil-rmtree
      distutils.dir_util._path_created.clear()  # type: ignore[attr-defined]
E       AttributeError: module 'distutils.dir_util' has no attribute 
'_path_created'

disable_languages_test = True
project_dir = 
local('/tmp/pytest-of-buildd/pytest-156/test_skbuild_variable_wheel0')
setup_args = ['bdist_wheel']

tests/__init__.py:218: AttributeError
----------------------------- Captured stdout call -----------------------------
Initialized empty Git repository in 
/tmp/pytest-of-buildd/pytest-156/test_skbuild_variable_wheel0/.git/
[master (root-commit) 09fbb65] Initial commit
 2 files changed, 20 insertions(+)
 create mode 100644 CMakeLists.txt
 create mode 100644 setup.py
----------------------------- Captured stderr call -----------------------------
hint: Using 'master' as the name for the initial branch. This default branch 
name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint:   git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint:   git branch -m <name>
=========================== short test summary info ============================
SKIPPED [1] tests/test_hello_fortran.py:19: could not import 'numpy': No module 
named 'numpy'
SKIPPED [1] tests/test_platform.py:120: Requires Windows
SKIPPED [24] tests/test_setup.py:582: unsupported configuration: python package 
fully generated by CMake does *NOT* work. At least __init__.py should be in the 
project source tree
SKIPPED [1] tests/test_skbuild.py:84: NMake Makefiles generator is not 
available on Linux
SKIPPED [3] tests/test_skbuild.py:130: Requires Windows
SKIPPED [1] tests/test_skbuild.py:154: Requires Windows
FAILED tests/test_broken_project.py::test_cmakelists_with_fatalerror_fails - ...
FAILED tests/test_broken_project.py::test_cmakelists_with_syntaxerror_fails
FAILED tests/test_broken_project.py::test_hello_with_compileerror_fails - Att...
FAILED tests/test_broken_project.py::test_invalid_cmake[CalledProcessError]
FAILED tests/test_broken_project.py::test_invalid_cmake[OSError] - AttributeE...
FAILED tests/test_broken_project.py::test_first_invalid_generator - Attribute...
FAILED tests/test_broken_project.py::test_invalid_generator - AttributeError:...
FAILED tests/test_cmake_target.py::test_cmake_target_build - AttributeError: ...
FAILED tests/test_cmakelists_not_in_top_level_dir.py::test_build - AttributeE...
FAILED 
tests/test_cmakelists_not_in_top_level_dir.py::test_cmake_source_dir[invalid-True]
FAILED 
tests/test_cmakelists_not_in_top_level_dir.py::test_cmake_source_dir[-False]
FAILED 
tests/test_cmakelists_not_in_top_level_dir.py::test_cmake_source_dir[.-False]
FAILED tests/test_command_line.py::test_help - AttributeError: module 'distut...
FAILED tests/test_command_line.py::test_metadata_display - AttributeError: mo...
FAILED tests/test_command_line.py::test_no_command - AttributeError: module '...
FAILED tests/test_command_line.py::test_invalid_command - AttributeError: mod...
FAILED tests/test_command_line.py::test_too_many_separators - AttributeError:...
FAILED tests/test_command_line.py::test_cmake_initial_cache_as_global_option
FAILED tests/test_command_line.py::test_cmake_executable_arg - AttributeError...
FAILED tests/test_command_line.py::test_hide_listing[True-sdist] - AttributeE...
FAILED tests/test_command_line.py::test_hide_listing[True-bdist_wheel] - Attr...
FAILED tests/test_command_line.py::test_hide_listing[False-sdist] - Attribute...
FAILED tests/test_command_line.py::test_hide_listing[False-bdist_wheel] - Att...
FAILED tests/test_command_line.py::test_run_cmake_arg - AttributeError: modul...
FAILED tests/test_command_line.py::test_skip_cmake_arg - AttributeError: modu...
FAILED tests/test_cython_flags.py::test_hello_cython_builds - AttributeError:...
FAILED tests/test_filter_manifest.py::test_bdist_wheel_command - AttributeErr...
FAILED tests/test_hello_cpp.py::test_hello_builds - AttributeError: module 'd...
FAILED tests/test_hello_cpp.py::test_hello_wheel - AttributeError: module 'di...
FAILED tests/test_hello_cpp.py::test_hello_clean[with-dry-run] - AttributeErr...
FAILED tests/test_hello_cpp.py::test_hello_clean[without-dry-run] - Attribute...
FAILED tests/test_hello_cpp.py::test_hello_cleans - AttributeError: module 'd...
FAILED tests/test_hello_cython.py::test_hello_cython_builds - AttributeError:...
FAILED tests/test_hello_cython.py::test_hello_cython_sdist - AttributeError: ...
FAILED tests/test_hello_cython.py::test_hello_cython_wheel - AttributeError: ...
FAILED tests/test_hello_pure.py::test_hello_pure_builds - AttributeError: mod...
FAILED tests/test_hello_pure.py::test_hello_pure_sdist - AttributeError: modu...
FAILED tests/test_hello_pure.py::test_hello_pure_wheel - AttributeError: modu...
FAILED tests/test_hello_pure.py::test_hello_clean - AttributeError: module 'd...
FAILED tests/test_include_exclude_data.py::test_include_exclude_data - Attrib...
FAILED tests/test_include_exclude_data.py::test_include_exclude_data_with_base
FAILED tests/test_issue284_build_ext_inplace.py::test_build_ext_inplace_command
FAILED tests/test_issue335_support_cmake_source_dir.py::test_bdist_wheel_command
FAILED 
tests/test_issue342_cmake_osx_args_in_setup.py::test_cmake_args_keyword_osx_default[None-cli_setup_args0-keyword_cmake_args0-cli_cmake_args0-10.9]
FAILED 
tests/test_issue342_cmake_osx_args_in_setup.py::test_cmake_args_keyword_osx_default[10.7-cli_setup_args1-keyword_cmake_args1-cli_cmake_args1-10.7]
FAILED 
tests/test_issue342_cmake_osx_args_in_setup.py::test_cmake_args_keyword_osx_default[10.7-cli_setup_args2-keyword_cmake_args2-cli_cmake_args2-10.9]
FAILED 
tests/test_issue342_cmake_osx_args_in_setup.py::test_cmake_args_keyword_osx_default[None-cli_setup_args3-keyword_cmake_args3-cli_cmake_args3-10.6]
FAILED 
tests/test_issue342_cmake_osx_args_in_setup.py::test_cmake_args_keyword_osx_default[None-cli_setup_args4-keyword_cmake_args4-cli_cmake_args4-10.7]
FAILED 
tests/test_issue342_cmake_osx_args_in_setup.py::test_cmake_args_keyword_osx_default[None-cli_setup_args5-keyword_cmake_args5-cli_cmake_args5-10.7]
FAILED 
tests/test_issue342_cmake_osx_args_in_setup.py::test_cmake_args_keyword_osx_default[None-cli_setup_args6-keyword_cmake_args6-cli_cmake_args6-10.7]
FAILED 
tests/test_issue342_cmake_osx_args_in_setup.py::test_cmake_args_keyword_osx_default[None-cli_setup_args7-keyword_cmake_args7-cli_cmake_args7-10.8]
FAILED 
tests/test_issue342_cmake_osx_args_in_setup.py::test_cmake_args_keyword_osx_default[None-cli_setup_args8-keyword_cmake_args8-cli_cmake_args8-10.8]
FAILED 
tests/test_issue352_isolated_environment_support.py::test_isolated_env_trigger_reconfigure
FAILED tests/test_issue668_symbol_visibility.py::test_symbol_visibility[ON]
FAILED tests/test_issue668_symbol_visibility.py::test_symbol_visibility[OFF]
FAILED tests/test_manifest_in.py::test_manifest_in_wheel - AttributeError: mo...
FAILED tests/test_outside_project_root.py::test_outside_project_root_fails[None]
FAILED 
tests/test_outside_project_root.py::test_outside_project_root_fails[-DINSTALL_FILE:BOOL=1]
FAILED 
tests/test_outside_project_root.py::test_outside_project_root_fails[-DINSTALL_PROJECT:BOOL=1]
FAILED tests/test_setup.py::test_cmake_args_keyword[cmake_args0] - AttributeE...
FAILED tests/test_setup.py::test_cmake_args_keyword[cmake_args1] - AttributeE...
FAILED tests/test_setup.py::test_cmake_install_dir_keyword[None-True-str] - A...
FAILED tests/test_setup.py::test_cmake_install_dir_keyword[-True-str] - Attri...
FAILED 
tests/test_setup.py::test_cmake_install_dir_keyword[/tmp/scikit-build-True-SKBuildError]
FAILED tests/test_setup.py::test_cmake_install_dir_keyword[banana-False-str]
FAILED tests/test_setup.py::test_cmake_with_sdist_keyword[True] - AttributeEr...
FAILED tests/test_setup.py::test_cmake_with_sdist_keyword[False] - AttributeE...
FAILED tests/test_setup.py::test_cmake_minimum_required_version_keyword - Att...
FAILED tests/test_setup.py::test_setup_requires_keyword_include_cmake - Attri...
FAILED tests/test_setup.py::test_script_keyword[pure] - AttributeError: modul...
FAILED tests/test_setup.py::test_script_keyword[skbuild] - AttributeError: mo...
FAILED tests/test_setup.py::test_py_modules_keyword[pure] - AttributeError: m...
FAILED tests/test_setup.py::test_py_modules_keyword[skbuild] - AttributeError...
FAILED tests/test_setup.py::test_setup_inputs[0-0-0-0-0-0] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-0-0-0-0-1] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-0-0-0-1-0] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-0-0-0-1-1] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-0-0-1-0-0] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-0-0-1-0-1] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-0-0-1-1-0] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-0-0-1-1-1] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-0-1-0-0-0] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-0-1-0-0-1] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-0-1-0-1-0] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-0-1-0-1-1] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-0-1-1-0-0] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-0-1-1-0-1] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-0-1-1-1-0] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-0-1-1-1-1] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-1-0-0-0-0] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-1-0-0-0-1] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-1-0-0-1-0] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-1-0-0-1-1] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-1-0-1-0-0] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-1-0-1-0-1] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-1-0-1-1-0] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-1-0-1-1-1] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-1-1-0-0-0] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-1-1-0-0-1] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-1-1-0-1-0] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-1-1-0-1-1] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-1-1-1-0-0] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-1-1-1-0-1] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-1-1-1-1-0] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[0-1-1-1-1-1] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[1-0-0-0-0-0] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[1-0-0-1-0-0] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[1-0-1-0-0-0] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[1-0-1-1-0-0] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[1-1-0-0-0-0] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[1-1-0-1-0-0] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[1-1-1-0-0-0] - AttributeError: ...
FAILED tests/test_setup.py::test_setup_inputs[1-1-1-1-0-0] - AttributeError: ...
FAILED tests/test_setup.py::test_cmake_install_into_pure_package[0] - Attribu...
FAILED tests/test_setup.py::test_cmake_install_into_pure_package[1] - Attribu...
FAILED tests/test_setup.py::test_zip_safe_default[None] - AttributeError: mod...
FAILED tests/test_setup.py::test_zip_safe_default[False] - AttributeError: mo...
FAILED tests/test_setup.py::test_zip_safe_default[True] - AttributeError: mod...
FAILED tests/test_skbuild.py::test_generator[Unix Makefiles-make] - Attribute...
FAILED tests/test_skbuild.py::test_invalid_generator[generator_args0] - Attri...
FAILED tests/test_skbuild.py::test_invalid_generator[generator_args1] - Attri...
FAILED tests/test_skbuild_variable.py::test_skbuild_variable_builds - Attribu...
FAILED tests/test_skbuild_variable.py::test_skbuild_variable_sdist - Attribut...
FAILED tests/test_skbuild_variable.py::test_skbuild_variable_wheel - Attribut...
========== 124 failed, 67 passed, 31 skipped, 17 deselected in 9.31s ===========
make[1]: *** [debian/rules:36: override_dh_auto_test] Error 1
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
make: *** [debian/rules:24: binary] Error 2
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--------------------------------------------------------------------------------

The above is just how the build ends and not necessarily the most relevant part.
If required, the full build log is available here:

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

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 could not 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 affects, so that this is still visible in the BTS web
page for this package.

Thanks.

--- End Message ---
--- Begin Message ---
Source: scikit-build
Source-Version: 0.18.1-1.1
Done: Matthias Klose <d...@debian.org>

We believe that the bug you reported is fixed in the latest version of
scikit-build, 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 1086...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Matthias Klose <d...@debian.org> (supplier of updated scikit-build 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: Wed, 04 Dec 2024 10:56:56 +0100
Source: scikit-build
Architecture: source
Version: 0.18.1-1.1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team <team+pyt...@tracker.debian.org>
Changed-By: Matthias Klose <d...@debian.org>
Closes: 1086222 1086383
Changes:
 scikit-build (0.18.1-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Update for newer setuptools (#1120). Closes: #1086222, #1086383.
   * Skip tests throwing deprecation warnings with setuptools 75.x.
Checksums-Sha1:
 3f436754c3fdd071cfd80d08f8dd27e05a4b8e6e 2740 scikit-build_0.18.1-1.1.dsc
 c98a6f2c50154804c4428c04079fbd92418cee33 6960 
scikit-build_0.18.1-1.1.debian.tar.xz
 8ec57be1ae65b5ff5dee947db9f4a433abfdb896 10803 
scikit-build_0.18.1-1.1_source.buildinfo
Checksums-Sha256:
 23bd4c6035eb9bee8918849c2c4d479a661dcbd9617f6b1fdf9bd6cfc51f6297 2740 
scikit-build_0.18.1-1.1.dsc
 b09d0eeaa16cd109309e38563fa5bee1f461ed47c53198ceb7807e5aa9c6eeb4 6960 
scikit-build_0.18.1-1.1.debian.tar.xz
 e29bfc443269049fb51bef830c16d2798d3601b08701b83caf970415426a61d1 10803 
scikit-build_0.18.1-1.1_source.buildinfo
Files:
 a8fa60b4b5c3ee7ae40f450322102984 2740 python optional 
scikit-build_0.18.1-1.1.dsc
 abefc8f90941734d75a2eacd9d419605 6960 python optional 
scikit-build_0.18.1-1.1.debian.tar.xz
 8240f945fa4ffbbe164e26b9198a8a86 10803 python optional 
scikit-build_0.18.1-1.1_source.buildinfo
-----BEGIN PGP SIGNATURE-----

iQJEBAEBCgAuFiEE1WVxuIqLuvFAv2PWvX6qYHePpvUFAmdQLFgQHGRva29AZGVi
aWFuLm9yZwAKCRC9fqpgd4+m9Q1ID/9GJGD9Yj+OtquYLFuIPb9xdvUMlAVdS3iB
5MLBVPZUqFa6gpoc8YFiTeKlkgp/pEkCq6LdHX6axSnOisKCdjro0KqRYo+GJ3Hs
2n9GE6Vu5WDd/IkU9MV7qjxEldbcLRvkVUKkLuVjFI2hBW6zNccwKU3KXBzuZFCC
Y3ektT9mEma+B9czdXIn8esWtd2iTFBI/QNi+C8nBdJHX91QSqf0Z/+m1WZ6X2wy
iwaOzuFMCXmLAoer6hsnAjHIZ3IN6RyF09zGpnEKD5h6DZFiJuwyBbH2QUZ4inWX
8VeRSdjTbE9wRP74oF0RsQ6GB+QfZzlWmSQJetOt07jtONgHAVC3dzjXxO1cfRA9
kn7we+yYHRm736Y5LNejQhrhMioAoAs6MJtvLLdcDrXCUc0AdpPBbICRLTTDSwLB
IgQwBhtyGImofPTVK9HBFUTBFjHKrCUjjTzgyP6M91/YppdxmcTTi5pb+P1CvctG
6bp9Aw0uEJ5hvqdWnFAiIbXKuv2lN/BzDJw6XonzEON1TlZbDztnYouj9aQeF6EL
bNarZVXhNti+fT4j2ZSTlhMizt98MvTiVBe21yduXYnFSH66v7XGb1U0NPc+Is2w
ScGDxTzbxMG2kuo1WqQ22LgET0i9RFjgOafjZqLQ8+s5ntTQtpPUMjtJDH1/VL2a
A9tOW0lQQw==
=+F6J
-----END PGP SIGNATURE-----

Attachment: pgplUC2Q0dKTG.pgp
Description: PGP signature


--- End Message ---

Reply via email to