--- Begin Message ---
Source: check-manifest
Version: 0.46-2
Severity: serious
Justification: FTBFS
Tags: bookworm sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20221220 ftbfs-bookworm
Hi,
During a rebuild of all packages in sid, your package failed to build
on amd64.
Relevant part (hopefully):
> debian/rules binary
> dh binary --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.11 setup.py config
> running config
> I: pybuild base:240: python3.10 setup.py config
> running config
> dh_auto_build -O--buildsystem=pybuild
> I: pybuild base:240: /usr/bin/python3.11 setup.py build
> running build
> running build_py
> copying check_manifest.py ->
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_check-manifest/build
> I: pybuild base:240: /usr/bin/python3 setup.py build
> running build
> running build_py
> copying check_manifest.py ->
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_check-manifest/build
> dh_auto_test -O--buildsystem=pybuild
> I: pybuild pybuild:307: cp /<<PKGBUILDDIR>>/tests.py
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_check-manifest/build
> I: pybuild base:240: cd
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_check-manifest/build; python3.11 -m
> pytest -k "not test_build_sdist"
> ============================= test session starts
> ==============================
> platform linux -- Python 3.11.1, pytest-7.2.0, pluggy-1.0.0+repack
> rootdir: /<<PKGBUILDDIR>>, configfile: setup.cfg
> collected 149 items / 2 deselected / 147 selected
>
> check_manifest.py . [
> 0%]
> tests.py ............................................................... [
> 43%]
> ............FF..s.......s............................................... [
> 92%]
> ...........
> [100%]
>
> =================================== FAILURES
> ===================================
> _____________ TestGit.test_get_versioned_files_with_git_submodules
> _____________
>
> self = <tests.TestGit testMethod=test_get_versioned_files_with_git_submodules>
>
> def test_get_versioned_files_with_git_submodules(self):
> from check_manifest import get_vcs_files
> self._init_repo_with_files('repo1', ['file1', 'file2'])
> self._init_repo_with_files('repo2', ['file3'])
> self._init_repo_with_files('repo3', ['file4'])
> > self._add_submodule('repo2', 'sub3', '../repo3')
>
> tests.py:1094:
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
> _
> tests.py:1074: in _add_submodule
> self.vcs._run('git', 'submodule', 'add', subrepo, subdir)
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
> _
>
> self = <tests.GitHelper object at 0x7fcbc21d5cd0>
> command = ('git', 'submodule', 'add', '../repo3', 'sub3')
> p = <Popen: returncode: 128 args: ('git', 'submodule', 'add', '../repo3',
> 'sub3')>
> stdout = b"Cloning into
> '/tmp/test-dztzapgy-check-manifest/repo2/sub3'...\nfatal: transport 'file'
> not allowed\nfatal: clone of '/tmp/test-dztzapgy-check-manifest/repo3' into
> submodule path '/tmp/test-dztzapgy-check-manifest/repo2/sub3' failed\n"
> stderr = None
>
> def _run(self, *command):
> # Windows doesn't like Unicode arguments to subprocess.Popen(), on
> Py2:
> #
> https://github.com/mgedmin/check-manifest/issues/23#issuecomment-33933031
> if str is bytes:
> command = [s.encode(locale.getpreferredencoding()) for s in
> command]
> print('$', ' '.join(command))
> p = subprocess.Popen(command, stdout=subprocess.PIPE,
> stderr=subprocess.STDOUT)
> stdout, stderr = p.communicate()
> rc = p.wait()
> if stdout:
> print(
> stdout if isinstance(stdout, str) else
> stdout.decode('ascii', 'backslashreplace')
> )
> if rc:
> > raise subprocess.CalledProcessError(rc, command[0], output=stdout)
> E subprocess.CalledProcessError: Command 'git' returned non-zero
> exit status 128.
>
> tests.py:949: CalledProcessError
> ----------------------------- Captured stdout call
> -----------------------------
> $ git init
> 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>
> Initialized empty Git repository in
> /tmp/test-dztzapgy-check-manifest/repo1/.git/
>
> $ git config user.name Unit Test
> $ git config user.email t...@example.com
> $ git add --force -- file1 file2
> $ git commit -m Initial
> [master (root-commit) 82b9c20] Initial
> 2 files changed, 0 insertions(+), 0 deletions(-)
> create mode 100644 file1
> create mode 100644 file2
>
> $ git init
> 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>
> Initialized empty Git repository in
> /tmp/test-dztzapgy-check-manifest/repo2/.git/
>
> $ git config user.name Unit Test
> $ git config user.email t...@example.com
> $ git add --force -- file3
> $ git commit -m Initial
> [master (root-commit) d953c32] Initial
> 1 file changed, 0 insertions(+), 0 deletions(-)
> create mode 100644 file3
>
> $ git init
> 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>
> Initialized empty Git repository in
> /tmp/test-dztzapgy-check-manifest/repo3/.git/
>
> $ git config user.name Unit Test
> $ git config user.email t...@example.com
> $ git add --force -- file4
> $ git commit -m Initial
> [master (root-commit) a08d581] Initial
> 1 file changed, 0 insertions(+), 0 deletions(-)
> create mode 100644 file4
>
> $ git submodule add ../repo3 sub3
> Cloning into '/tmp/test-dztzapgy-check-manifest/repo2/sub3'...
> fatal: transport 'file' not allowed
> fatal: clone of '/tmp/test-dztzapgy-check-manifest/repo3' into submodule path
> '/tmp/test-dztzapgy-check-manifest/repo2/sub3' failed
>
> _
> TestGit.test_get_versioned_files_with_git_submodules_with_git_index_file_set _
>
> self = <tests.TestGit
> testMethod=test_get_versioned_files_with_git_submodules_with_git_index_file_set>
>
> def
> test_get_versioned_files_with_git_submodules_with_git_index_file_set(self):
> with mock.patch.dict(os.environ, {"GIT_INDEX_FILE": ".git/index"}):
> > self.test_get_versioned_files_with_git_submodules()
>
> tests.py:1115:
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
> _
> tests.py:1094: in test_get_versioned_files_with_git_submodules
> self._add_submodule('repo2', 'sub3', '../repo3')
> tests.py:1074: in _add_submodule
> self.vcs._run('git', 'submodule', 'add', subrepo, subdir)
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
> _
>
> self = <tests.GitHelper object at 0x7fcbc21d5cd0>
> command = ('git', 'submodule', 'add', '../repo3', 'sub3')
> p = <Popen: returncode: 128 args: ('git', 'submodule', 'add', '../repo3',
> 'sub3')>
> stdout = b"Cloning into
> '/tmp/test-egi769i4-check-manifest/repo2/sub3'...\nfatal: transport 'file'
> not allowed\nfatal: clone of '/tmp/test-egi769i4-check-manifest/repo3' into
> submodule path '/tmp/test-egi769i4-check-manifest/repo2/sub3' failed\n"
> stderr = None
>
> def _run(self, *command):
> # Windows doesn't like Unicode arguments to subprocess.Popen(), on
> Py2:
> #
> https://github.com/mgedmin/check-manifest/issues/23#issuecomment-33933031
> if str is bytes:
> command = [s.encode(locale.getpreferredencoding()) for s in
> command]
> print('$', ' '.join(command))
> p = subprocess.Popen(command, stdout=subprocess.PIPE,
> stderr=subprocess.STDOUT)
> stdout, stderr = p.communicate()
> rc = p.wait()
> if stdout:
> print(
> stdout if isinstance(stdout, str) else
> stdout.decode('ascii', 'backslashreplace')
> )
> if rc:
> > raise subprocess.CalledProcessError(rc, command[0], output=stdout)
> E subprocess.CalledProcessError: Command 'git' returned non-zero
> exit status 128.
>
> tests.py:949: CalledProcessError
> ----------------------------- Captured stdout call
> -----------------------------
> $ git init
> 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>
> Initialized empty Git repository in
> /tmp/test-egi769i4-check-manifest/repo1/.git/
>
> $ git config user.name Unit Test
> $ git config user.email t...@example.com
> $ git add --force -- file1 file2
> $ git commit -m Initial
> [master (root-commit) 82b9c20] Initial
> 2 files changed, 0 insertions(+), 0 deletions(-)
> create mode 100644 file1
> create mode 100644 file2
>
> $ git init
> 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>
> Initialized empty Git repository in
> /tmp/test-egi769i4-check-manifest/repo2/.git/
>
> $ git config user.name Unit Test
> $ git config user.email t...@example.com
> $ git add --force -- file3
> $ git commit -m Initial
> [master (root-commit) d953c32] Initial
> 1 file changed, 0 insertions(+), 0 deletions(-)
> create mode 100644 file3
>
> $ git init
> 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>
> Initialized empty Git repository in
> /tmp/test-egi769i4-check-manifest/repo3/.git/
>
> $ git config user.name Unit Test
> $ git config user.email t...@example.com
> $ git add --force -- file4
> $ git commit -m Initial
> [master (root-commit) a08d581] Initial
> 1 file changed, 0 insertions(+), 0 deletions(-)
> create mode 100644 file4
>
> $ git submodule add ../repo3 sub3
> Cloning into '/tmp/test-egi769i4-check-manifest/repo2/sub3'...
> fatal: transport 'file' not allowed
> fatal: clone of '/tmp/test-egi769i4-check-manifest/repo3' into submodule path
> '/tmp/test-egi769i4-check-manifest/repo2/sub3' failed
>
> =========================== short test summary info
> ============================
> FAILED tests.py::TestGit::test_get_versioned_files_with_git_submodules -
> subp...
> FAILED
> tests.py::TestGit::test_get_versioned_files_with_git_submodules_with_git_index_file_set
> =========== 2 failed, 143 passed, 2 skipped, 2 deselected in 19.42s
> ============
> E: pybuild pybuild:386: test: plugin distutils failed with: exit code=1: cd
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_check-manifest/build; python3.11 -m
> pytest -k "not test_build_sdist"
> I: pybuild pybuild:307: cp /<<PKGBUILDDIR>>/tests.py
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_check-manifest/build
> I: pybuild base:240: cd
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_check-manifest/build; python3.10 -m
> pytest -k "not test_build_sdist"
> ============================= test session starts
> ==============================
> platform linux -- Python 3.10.9, pytest-7.2.0, pluggy-1.0.0+repack
> rootdir: /<<PKGBUILDDIR>>, configfile: setup.cfg
> collected 149 items / 2 deselected / 147 selected
>
> check_manifest.py . [
> 0%]
> tests.py ............................................................... [
> 43%]
> ............FF..s.......s............................................... [
> 92%]
> ...........
> [100%]
>
> =================================== FAILURES
> ===================================
> _____________ TestGit.test_get_versioned_files_with_git_submodules
> _____________
>
> self = <tests.TestGit testMethod=test_get_versioned_files_with_git_submodules>
>
> def test_get_versioned_files_with_git_submodules(self):
> from check_manifest import get_vcs_files
> self._init_repo_with_files('repo1', ['file1', 'file2'])
> self._init_repo_with_files('repo2', ['file3'])
> self._init_repo_with_files('repo3', ['file4'])
> > self._add_submodule('repo2', 'sub3', '../repo3')
>
> tests.py:1094:
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
> _
> tests.py:1074: in _add_submodule
> self.vcs._run('git', 'submodule', 'add', subrepo, subdir)
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
> _
>
> self = <tests.GitHelper object at 0x7eff6b21f160>
> command = ('git', 'submodule', 'add', '../repo3', 'sub3')
> p = <Popen: returncode: 128 args: ('git', 'submodule', 'add', '../repo3',
> 'sub3')>
> stdout = b"Cloning into
> '/tmp/test-8ui0r9rj-check-manifest/repo2/sub3'...\nfatal: transport 'file'
> not allowed\nfatal: clone of '/tmp/test-8ui0r9rj-check-manifest/repo3' into
> submodule path '/tmp/test-8ui0r9rj-check-manifest/repo2/sub3' failed\n"
> stderr = None
>
> def _run(self, *command):
> # Windows doesn't like Unicode arguments to subprocess.Popen(), on
> Py2:
> #
> https://github.com/mgedmin/check-manifest/issues/23#issuecomment-33933031
> if str is bytes:
> command = [s.encode(locale.getpreferredencoding()) for s in
> command]
> print('$', ' '.join(command))
> p = subprocess.Popen(command, stdout=subprocess.PIPE,
> stderr=subprocess.STDOUT)
> stdout, stderr = p.communicate()
> rc = p.wait()
> if stdout:
> print(
> stdout if isinstance(stdout, str) else
> stdout.decode('ascii', 'backslashreplace')
> )
> if rc:
> > raise subprocess.CalledProcessError(rc, command[0], output=stdout)
> E subprocess.CalledProcessError: Command 'git' returned non-zero
> exit status 128.
>
> tests.py:949: CalledProcessError
> ----------------------------- Captured stdout call
> -----------------------------
> $ git init
> 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>
> Initialized empty Git repository in
> /tmp/test-8ui0r9rj-check-manifest/repo1/.git/
>
> $ git config user.name Unit Test
> $ git config user.email t...@example.com
> $ git add --force -- file1 file2
> $ git commit -m Initial
> [master (root-commit) 6a2d98e] Initial
> 2 files changed, 0 insertions(+), 0 deletions(-)
> create mode 100644 file1
> create mode 100644 file2
>
> $ git init
> 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>
> Initialized empty Git repository in
> /tmp/test-8ui0r9rj-check-manifest/repo2/.git/
>
> $ git config user.name Unit Test
> $ git config user.email t...@example.com
> $ git add --force -- file3
> $ git commit -m Initial
> [master (root-commit) 4bef4c1] Initial
> 1 file changed, 0 insertions(+), 0 deletions(-)
> create mode 100644 file3
>
> $ git init
> 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>
> Initialized empty Git repository in
> /tmp/test-8ui0r9rj-check-manifest/repo3/.git/
>
> $ git config user.name Unit Test
> $ git config user.email t...@example.com
> $ git add --force -- file4
> $ git commit -m Initial
> [master (root-commit) 035f70c] Initial
> 1 file changed, 0 insertions(+), 0 deletions(-)
> create mode 100644 file4
>
> $ git submodule add ../repo3 sub3
> Cloning into '/tmp/test-8ui0r9rj-check-manifest/repo2/sub3'...
> fatal: transport 'file' not allowed
> fatal: clone of '/tmp/test-8ui0r9rj-check-manifest/repo3' into submodule path
> '/tmp/test-8ui0r9rj-check-manifest/repo2/sub3' failed
>
> _
> TestGit.test_get_versioned_files_with_git_submodules_with_git_index_file_set _
>
> self = <tests.TestGit
> testMethod=test_get_versioned_files_with_git_submodules_with_git_index_file_set>
>
> def
> test_get_versioned_files_with_git_submodules_with_git_index_file_set(self):
> with mock.patch.dict(os.environ, {"GIT_INDEX_FILE": ".git/index"}):
> > self.test_get_versioned_files_with_git_submodules()
>
> tests.py:1115:
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
> _
> tests.py:1094: in test_get_versioned_files_with_git_submodules
> self._add_submodule('repo2', 'sub3', '../repo3')
> tests.py:1074: in _add_submodule
> self.vcs._run('git', 'submodule', 'add', subrepo, subdir)
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
> _
>
> self = <tests.GitHelper object at 0x7eff6b21f160>
> command = ('git', 'submodule', 'add', '../repo3', 'sub3')
> p = <Popen: returncode: 128 args: ('git', 'submodule', 'add', '../repo3',
> 'sub3')>
> stdout = b"Cloning into
> '/tmp/test-0j6012na-check-manifest/repo2/sub3'...\nfatal: transport 'file'
> not allowed\nfatal: clone of '/tmp/test-0j6012na-check-manifest/repo3' into
> submodule path '/tmp/test-0j6012na-check-manifest/repo2/sub3' failed\n"
> stderr = None
>
> def _run(self, *command):
> # Windows doesn't like Unicode arguments to subprocess.Popen(), on
> Py2:
> #
> https://github.com/mgedmin/check-manifest/issues/23#issuecomment-33933031
> if str is bytes:
> command = [s.encode(locale.getpreferredencoding()) for s in
> command]
> print('$', ' '.join(command))
> p = subprocess.Popen(command, stdout=subprocess.PIPE,
> stderr=subprocess.STDOUT)
> stdout, stderr = p.communicate()
> rc = p.wait()
> if stdout:
> print(
> stdout if isinstance(stdout, str) else
> stdout.decode('ascii', 'backslashreplace')
> )
> if rc:
> > raise subprocess.CalledProcessError(rc, command[0], output=stdout)
> E subprocess.CalledProcessError: Command 'git' returned non-zero
> exit status 128.
>
> tests.py:949: CalledProcessError
> ----------------------------- Captured stdout call
> -----------------------------
> $ git init
> 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>
> Initialized empty Git repository in
> /tmp/test-0j6012na-check-manifest/repo1/.git/
>
> $ git config user.name Unit Test
> $ git config user.email t...@example.com
> $ git add --force -- file1 file2
> $ git commit -m Initial
> [master (root-commit) 6a2d98e] Initial
> 2 files changed, 0 insertions(+), 0 deletions(-)
> create mode 100644 file1
> create mode 100644 file2
>
> $ git init
> 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>
> Initialized empty Git repository in
> /tmp/test-0j6012na-check-manifest/repo2/.git/
>
> $ git config user.name Unit Test
> $ git config user.email t...@example.com
> $ git add --force -- file3
> $ git commit -m Initial
> [master (root-commit) 4bef4c1] Initial
> 1 file changed, 0 insertions(+), 0 deletions(-)
> create mode 100644 file3
>
> $ git init
> 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>
> Initialized empty Git repository in
> /tmp/test-0j6012na-check-manifest/repo3/.git/
>
> $ git config user.name Unit Test
> $ git config user.email t...@example.com
> $ git add --force -- file4
> $ git commit -m Initial
> [master (root-commit) 035f70c] Initial
> 1 file changed, 0 insertions(+), 0 deletions(-)
> create mode 100644 file4
>
> $ git submodule add ../repo3 sub3
> Cloning into '/tmp/test-0j6012na-check-manifest/repo2/sub3'...
> fatal: transport 'file' not allowed
> fatal: clone of '/tmp/test-0j6012na-check-manifest/repo3' into submodule path
> '/tmp/test-0j6012na-check-manifest/repo2/sub3' failed
>
> =========================== short test summary info
> ============================
> FAILED tests.py::TestGit::test_get_versioned_files_with_git_submodules -
> subp...
> FAILED
> tests.py::TestGit::test_get_versioned_files_with_git_submodules_with_git_index_file_set
> =========== 2 failed, 143 passed, 2 skipped, 2 deselected in 20.02s
> ============
> E: pybuild pybuild:386: test: plugin distutils failed with: exit code=1: cd
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.10_check-manifest/build; python3.10 -m
> pytest -k "not test_build_sdist"
> dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p "3.11
> 3.10" returned exit code 13
The full build log is available from:
http://qa-logs.debian.net/2022/12/20/check-manifest_0.46-2_unstable.log
All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20221220;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20221220&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 mark 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 ---