Your message dated Tue, 20 Dec 2022 20:39:52 +0000
with message-id <e1p7joy-005zlc...@fasolo.debian.org>
and subject line Bug#1026518: fixed in check-manifest 0.49-1
has caused the Debian Bug report #1026518,
regarding check-manifest: FTBFS: dh_auto_test: error: pybuild --test 
--test-pytest -i python{version} -p "3.11 3.10" returned exit code 13
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.)


-- 
1026518: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1026518
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- 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 ---
--- Begin Message ---
Source: check-manifest
Source-Version: 0.49-1
Done: Sergio Durigan Junior <sergi...@debian.org>

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

Debian distribution maintenance software
pp.
Sergio Durigan Junior <sergi...@debian.org> (supplier of updated check-manifest 
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: Tue, 20 Dec 2022 14:52:47 -0500
Source: check-manifest
Architecture: source
Version: 0.49-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team <team+pyt...@tracker.debian.org>
Changed-By: Sergio Durigan Junior <sergi...@debian.org>
Closes: 1023801 1026518
Changes:
 check-manifest (0.49-1) unstable; urgency=medium
 .
   * New upstream version 0.49 (Closes: #1023801, #1026518)
   * d/control: Bump Standards-Version to 4.6.2; no changes needed.
   * d/copyright: Update year and email address.
Checksums-Sha1:
 0bbef6dfb76d7f7f99974a06645c3d5757d33c06 2385 check-manifest_0.49-1.dsc
 d3f7bd43728aa8e19341a8272e8ff22e6a2c57e0 40272 check-manifest_0.49.orig.tar.gz
 21abd0d39c3ce35e189b1476fa9bf7f31ec8f161 5260 
check-manifest_0.49-1.debian.tar.xz
 2980de26eba562db30191d9033ccc97db980e026 8508 
check-manifest_0.49-1_amd64.buildinfo
Checksums-Sha256:
 e380bcfa43e8abc3e97d37a5cdec77badc791018b2439b5d0a5eec79949dc2f4 2385 
check-manifest_0.49-1.dsc
 64a640445542cf226919657c7b78d02d9c1ca5b1c25d7e66e0e1ff325060f416 40272 
check-manifest_0.49.orig.tar.gz
 b10ab215b98ab030d73834fda702c2fcc23349e61c11dd289d672264fd763fa4 5260 
check-manifest_0.49-1.debian.tar.xz
 e55b187e226138cf55f81abd225afeb4e9ce141f31841fd67ade2aa8d5b5acb9 8508 
check-manifest_0.49-1_amd64.buildinfo
Files:
 1ccf9ed16d7c88e8c79ae7f743562daf 2385 utils optional check-manifest_0.49-1.dsc
 f17cb3065d801b0967cd6c934889ab58 40272 utils optional 
check-manifest_0.49.orig.tar.gz
 05bc3071874027502e513e6a8dfbebf9 5260 utils optional 
check-manifest_0.49-1.debian.tar.xz
 58abfc04ef011fd011664c9772465657 8508 utils optional 
check-manifest_0.49-1_amd64.buildinfo

-----BEGIN PGP SIGNATURE-----

iQJIBAEBCgAyFiEEI3pUsQKHKL8A7zH00Ot2KGX8XjYFAmOiEvAUHHNlcmdpb2Rq
QGRlYmlhbi5vcmcACgkQ0Ot2KGX8XjZdog/9G972qW4traZJ+IEpYlsdGoAHcxRx
kD+VLShXIbkEOa+CZq93bebtxHOkACtNceSNkK1A7w4uDuKETjit30rGQVyak2Yb
mDz2VlFQ5EvsvaXKVcpoLIA/Kipwgxqs/qk0bYAdeAyfQDzOHTrIn6e7qXomNv+J
jxuTVEufGiR2Z9yK29U2IZgGUCz54kOaua+KYx8CU4COA/I/cof0NvYFgX8zdFOE
bXEiIc07K6WRj7iZcksW5WfPQFN4tTb5vgxp9IEhvVcBk+Sdly7d6gpCYfUDRdX+
WdaEX8h6CY/LLyab33/4eWjlNgr2JUk4YQYCJNOc7nMQqJbHOgL/DgM81C6ZHb1T
bns90a+eVdY08mxXgONe64psfIznEpCaJkZcn/mBXD5HVc23OfejKBcqPrLFJB3R
Mtql2QlRzyO0Ff9lLniBR24D6og/e/3Mu1nc0ZMJi0tcY9bPBwAnQRo3CT+/SsfD
SpBhiMOzPszgLZ6W58n4X8bauDzNEotu5car4c8UrFdskYV9FPH7sJWSXZ5fW4bt
bibDyXlUoVphEYBpNqM+aGdY/VqNUcOyjJF4jhufxtPqzYyDLJicB8EdXYjMtjr8
7x6Vi2aZj1CudNBomP7NGADreyawiNZKUBwFOUJNkpD6PYNDnDJotwUKIKMUDv90
3j4W/NzkMxK9lTs=
=olD4
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to