Your message dated Mon, 10 Sep 2018 02:35:08 +0000
with message-id <e1fzc2e-0009ue...@fasolo.debian.org>
and subject line Bug#907587: fixed in git 1:2.19.0~rc2-2
has caused the Debian Bug report #907587,
regarding git http-backend: fails to parse empty CONTENT_LENGTH
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.)


-- 
907587: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=907587
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: git, dulwich
Control: found -1 git/1:2.19.0~rc1-1
Control: found -1 dulwich/0.19.6-1
X-Debbugs-CC: debian...@lists.debian.org
User: debian...@lists.debian.org
Usertags: breaks needs-update

Dear maintainers,

With a recent upload of git the autopkgtest of dulwich started to fail
in testing and unstable. I copied the output below.

Currently this regression is contributing to the delay of the migration
of git to testing [1]. Due to the nature of this issue, I filed this bug
against both packages. Could you please investigate the situation and
reassign the bug to the right package? If needed, please change the
bug's severity as appropriate.

More information about this bug and the reason for filing it can be found on
https://wiki.debian.org/ContinuousIntegration/RegressionEmailInformation

Paul

[1] https://qa.debian.org/excuses.php?package=git

https://ci.debian.net/data/autopkgtest/testing/amd64/d/dulwich/900121/log.gz

autopkgtest [03:14:04]: test testsuite2: [-----------------------
...s..............................................................s.........................................................................................ss.s.s.....................s.s.........................sssssssssssss.s.............................sss......................s..................................................................................................................................................s..s.s......................................................................................................................................................................................................................................s....................................................................................................................................................................................................................................................................................................................................................................................................sEEEEEEEEEEEE........................................s..............................................................ss.sss.ss............................................sssssssssssssssssssssssssssssssssssssssssssssss
======================================================================
ERROR: test_fetch_pack
(dulwich.tests.compat.test_client.DulwichHttpClientTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "dulwich/tests/compat/test_client.py", line 208, in test_fetch_pack
    result = c.fetch(self._build_path('/server_new.export'), dest)
  File "dulwich/client.py", line 364, in fetch
    progress)
  File "dulwich/client.py", line 1544, in fetch_pack
    b"git-upload-pack", url)
  File "dulwich/client.py", line 1456, in _discover_references
    return read_pkt_refs(proto) + (base_url, )
  File "dulwich/client.py", line 196, in read_pkt_refs
    for pkt in proto.read_pkt_seq():
  File "dulwich/protocol.py", line 254, in read_pkt_seq
    pkt = self.read_pkt_line()
  File "dulwich/protocol.py", line 203, in read_pkt_line
    size = int(sizestr, 16)
ValueError: invalid literal for int() with base 16: 'Stat'

======================================================================
ERROR: test_fetch_pack_no_side_band_64k
(dulwich.tests.compat.test_client.DulwichHttpClientTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "dulwich/tests/compat/test_client.py", line 241, in
test_fetch_pack_no_side_band_64k
    result = c.fetch(self._build_path('/server_new.export'), dest)
  File "dulwich/client.py", line 364, in fetch
    progress)
  File "dulwich/client.py", line 1544, in fetch_pack
    b"git-upload-pack", url)
  File "dulwich/client.py", line 1456, in _discover_references
    return read_pkt_refs(proto) + (base_url, )
  File "dulwich/client.py", line 196, in read_pkt_refs
    for pkt in proto.read_pkt_seq():
  File "dulwich/protocol.py", line 254, in read_pkt_seq
    pkt = self.read_pkt_line()
  File "dulwich/protocol.py", line 203, in read_pkt_line
    size = int(sizestr, 16)
ValueError: invalid literal for int() with base 16: 'Stat'

======================================================================
ERROR: test_fetch_pack_zero_sha
(dulwich.tests.compat.test_client.DulwichHttpClientTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "dulwich/tests/compat/test_client.py", line 253, in
test_fetch_pack_zero_sha
    lambda refs: [protocol.ZERO_SHA])
  File "dulwich/client.py", line 364, in fetch
    progress)
  File "dulwich/client.py", line 1544, in fetch_pack
    b"git-upload-pack", url)
  File "dulwich/client.py", line 1456, in _discover_references
    return read_pkt_refs(proto) + (base_url, )
  File "dulwich/client.py", line 196, in read_pkt_refs
    for pkt in proto.read_pkt_seq():
  File "dulwich/protocol.py", line 254, in read_pkt_seq
    pkt = self.read_pkt_line()
  File "dulwich/protocol.py", line 203, in read_pkt_line
    size = int(sizestr, 16)
ValueError: invalid literal for int() with base 16: 'Stat'

======================================================================
ERROR: test_get_refs
(dulwich.tests.compat.test_client.DulwichHttpClientTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "dulwich/tests/compat/test_client.py", line 276, in test_get_refs
    refs = c.get_refs(self._build_path('/server_new.export'))
  File "dulwich/client.py", line 1575, in get_refs
    b"git-upload-pack", url)
  File "dulwich/client.py", line 1456, in _discover_references
    return read_pkt_refs(proto) + (base_url, )
  File "dulwich/client.py", line 196, in read_pkt_refs
    for pkt in proto.read_pkt_seq():
  File "dulwich/protocol.py", line 254, in read_pkt_seq
    pkt = self.read_pkt_line()
  File "dulwich/protocol.py", line 203, in read_pkt_line
    size = int(sizestr, 16)
ValueError: invalid literal for int() with base 16: 'Stat'

======================================================================
ERROR: test_incremental_fetch_pack
(dulwich.tests.compat.test_client.DulwichHttpClientTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "dulwich/tests/compat/test_client.py", line 226, in
test_incremental_fetch_pack
    self.test_fetch_pack()
  File "dulwich/tests/compat/test_client.py", line 208, in test_fetch_pack
    result = c.fetch(self._build_path('/server_new.export'), dest)
  File "dulwich/client.py", line 364, in fetch
    progress)
  File "dulwich/client.py", line 1544, in fetch_pack
    b"git-upload-pack", url)
  File "dulwich/client.py", line 1456, in _discover_references
    return read_pkt_refs(proto) + (base_url, )
  File "dulwich/client.py", line 196, in read_pkt_refs
    for pkt in proto.read_pkt_seq():
  File "dulwich/protocol.py", line 254, in read_pkt_seq
    pkt = self.read_pkt_line()
  File "dulwich/protocol.py", line 203, in read_pkt_line
    size = int(sizestr, 16)
ValueError: invalid literal for int() with base 16: 'Stat'

======================================================================
ERROR: test_repeat (dulwich.tests.compat.test_client.DulwichHttpClientTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "dulwich/tests/compat/test_client.py", line 216, in test_repeat
    result = c.fetch(self._build_path('/server_new.export'), dest)
  File "dulwich/client.py", line 364, in fetch
    progress)
  File "dulwich/client.py", line 1544, in fetch_pack
    b"git-upload-pack", url)
  File "dulwich/client.py", line 1456, in _discover_references
    return read_pkt_refs(proto) + (base_url, )
  File "dulwich/client.py", line 196, in read_pkt_refs
    for pkt in proto.read_pkt_seq():
  File "dulwich/protocol.py", line 254, in read_pkt_seq
    pkt = self.read_pkt_line()
  File "dulwich/protocol.py", line 203, in read_pkt_line
    size = int(sizestr, 16)
ValueError: invalid literal for int() with base 16: 'Stat'

======================================================================
ERROR: test_send_pack
(dulwich.tests.compat.test_client.DulwichHttpClientTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "dulwich/tests/compat/test_client.py", line 111, in test_send_pack
    self._do_send_pack()
  File "dulwich/tests/compat/test_client.py", line 108, in _do_send_pack
    src.object_store.generate_pack_data)
  File "dulwich/client.py", line 1497, in send_pack
    b"git-receive-pack", url)
  File "dulwich/client.py", line 1456, in _discover_references
    return read_pkt_refs(proto) + (base_url, )
  File "dulwich/client.py", line 196, in read_pkt_refs
    for pkt in proto.read_pkt_seq():
  File "dulwich/protocol.py", line 254, in read_pkt_seq
    pkt = self.read_pkt_line()
  File "dulwich/protocol.py", line 203, in read_pkt_line
    size = int(sizestr, 16)
ValueError: invalid literal for int() with base 16: 'Stat'

======================================================================
ERROR: test_send_pack_multiple_errors
(dulwich.tests.compat.test_client.DulwichHttpClientTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "dulwich/tests/compat/test_client.py", line 185, in
test_send_pack_multiple_errors
    gen_pack)
  File "dulwich/client.py", line 1497, in send_pack
    b"git-receive-pack", url)
  File "dulwich/client.py", line 1456, in _discover_references
    return read_pkt_refs(proto) + (base_url, )
  File "dulwich/client.py", line 196, in read_pkt_refs
    for pkt in proto.read_pkt_seq():
  File "dulwich/protocol.py", line 254, in read_pkt_seq
    pkt = self.read_pkt_line()
  File "dulwich/protocol.py", line 203, in read_pkt_line
    size = int(sizestr, 16)
ValueError: invalid literal for int() with base 16: 'Stat'

======================================================================
ERROR: test_send_pack_nothing_to_send
(dulwich.tests.compat.test_client.DulwichHttpClientTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "dulwich/tests/compat/test_client.py", line 115, in
test_send_pack_nothing_to_send
    self._do_send_pack()
  File "dulwich/tests/compat/test_client.py", line 108, in _do_send_pack
    src.object_store.generate_pack_data)
  File "dulwich/client.py", line 1497, in send_pack
    b"git-receive-pack", url)
  File "dulwich/client.py", line 1456, in _discover_references
    return read_pkt_refs(proto) + (base_url, )
  File "dulwich/client.py", line 196, in read_pkt_refs
    for pkt in proto.read_pkt_seq():
  File "dulwich/protocol.py", line 254, in read_pkt_seq
    pkt = self.read_pkt_line()
  File "dulwich/protocol.py", line 203, in read_pkt_line
    size = int(sizestr, 16)
ValueError: invalid literal for int() with base 16: 'Stat'

======================================================================
ERROR: test_send_pack_one_error
(dulwich.tests.compat.test_client.DulwichHttpClientTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "dulwich/tests/compat/test_client.py", line 166, in
test_send_pack_one_error
    lambda _: sendrefs, gen_pack)
  File "dulwich/client.py", line 1497, in send_pack
    b"git-receive-pack", url)
  File "dulwich/client.py", line 1456, in _discover_references
    return read_pkt_refs(proto) + (base_url, )
  File "dulwich/client.py", line 196, in read_pkt_refs
    for pkt in proto.read_pkt_seq():
  File "dulwich/protocol.py", line 254, in read_pkt_seq
    pkt = self.read_pkt_line()
  File "dulwich/protocol.py", line 203, in read_pkt_line
    size = int(sizestr, 16)
ValueError: invalid literal for int() with base 16: 'Stat'

======================================================================
ERROR: test_send_remove_branch
(dulwich.tests.compat.test_client.DulwichHttpClientTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "dulwich/tests/compat/test_client.py", line 271, in
test_send_remove_branch
    self._build_path('/dest'), lambda _: sendrefs, gen_pack)
  File "dulwich/client.py", line 1497, in send_pack
    b"git-receive-pack", url)
  File "dulwich/client.py", line 1456, in _discover_references
    return read_pkt_refs(proto) + (base_url, )
  File "dulwich/client.py", line 196, in read_pkt_refs
    for pkt in proto.read_pkt_seq():
  File "dulwich/protocol.py", line 254, in read_pkt_seq
    pkt = self.read_pkt_line()
  File "dulwich/protocol.py", line 203, in read_pkt_line
    size = int(sizestr, 16)
ValueError: invalid literal for int() with base 16: 'Stat'

======================================================================
ERROR: test_send_without_report_status
(dulwich.tests.compat.test_client.DulwichHttpClientTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "dulwich/tests/compat/test_client.py", line 128, in
test_send_without_report_status
    src.object_store.generate_pack_data)
  File "dulwich/client.py", line 1497, in send_pack
    b"git-receive-pack", url)
  File "dulwich/client.py", line 1456, in _discover_references
    return read_pkt_refs(proto) + (base_url, )
  File "dulwich/client.py", line 196, in read_pkt_refs
    for pkt in proto.read_pkt_seq():
  File "dulwich/protocol.py", line 254, in read_pkt_seq
    pkt = self.read_pkt_line()
  File "dulwich/protocol.py", line 203, in read_pkt_line
    size = int(sizestr, 16)
ValueError: invalid literal for int() with base 16: 'Stat'

----------------------------------------------------------------------
Ran 1268 tests in 67.261s

FAILED (errors=12, skipped=86)


autopkgtest [03:15:48]: test testsuite3: [-----------------------
...s..............................................................s.........................................................................................ss.s.s.....................s.s.........................sssssssssssss.s.............................sss.........................................................................................................................................................................s..s.s......................................................................................................................................................................................................................................s....................................................................................................................................................................................................................................................................................................................................................................................................sE/usr/lib/python3.6/email/feedparser.py:475:
ResourceWarning: unclosed <socket.socket fd=3,
family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0,
laddr=('127.0.0.1', 40743)>
  for lineno, line in enumerate(lines):
/usr/lib/python3.6/email/feedparser.py:475: ResourceWarning: unclosed
file <_io.FileIO
name='local/.git/objects/pack/pack-f86e366222c176b5132f3204fe2d888231b866b2.pack'
mode='rb' closefd=True>
  for lineno, line in enumerate(lines):
EEEEEEEEEEE........................................s..............................................................ss.sss.ss............................................sssssssssssssssssssssssssssssssssssssssssssssss
======================================================================
ERROR: test_fetch_pack
(dulwich.tests.compat.test_client.DulwichHttpClientTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/tests/compat/test_client.py",
line 208, in test_fetch_pack
    result = c.fetch(self._build_path('/server_new.export'), dest)
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 364, in fetch
    progress)
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 1544, in fetch_pack
    b"git-upload-pack", url)
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 1456, in _discover_references
    return read_pkt_refs(proto) + (base_url, )
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 196, in read_pkt_refs
    for pkt in proto.read_pkt_seq():
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/protocol.py",
line 254, in read_pkt_seq
    pkt = self.read_pkt_line()
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/protocol.py",
line 203, in read_pkt_line
    size = int(sizestr, 16)
ValueError: invalid literal for int() with base 16: b'Stat'

======================================================================
ERROR: test_fetch_pack_no_side_band_64k
(dulwich.tests.compat.test_client.DulwichHttpClientTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/tests/compat/test_client.py",
line 241, in test_fetch_pack_no_side_band_64k
    result = c.fetch(self._build_path('/server_new.export'), dest)
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 364, in fetch
    progress)
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 1544, in fetch_pack
    b"git-upload-pack", url)
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 1456, in _discover_references
    return read_pkt_refs(proto) + (base_url, )
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 196, in read_pkt_refs
    for pkt in proto.read_pkt_seq():
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/protocol.py",
line 254, in read_pkt_seq
    pkt = self.read_pkt_line()
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/protocol.py",
line 203, in read_pkt_line
    size = int(sizestr, 16)
ValueError: invalid literal for int() with base 16: b'Stat'

======================================================================
ERROR: test_fetch_pack_zero_sha
(dulwich.tests.compat.test_client.DulwichHttpClientTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/tests/compat/test_client.py",
line 253, in test_fetch_pack_zero_sha
    lambda refs: [protocol.ZERO_SHA])
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 364, in fetch
    progress)
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 1544, in fetch_pack
    b"git-upload-pack", url)
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 1456, in _discover_references
    return read_pkt_refs(proto) + (base_url, )
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 196, in read_pkt_refs
    for pkt in proto.read_pkt_seq():
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/protocol.py",
line 254, in read_pkt_seq
    pkt = self.read_pkt_line()
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/protocol.py",
line 203, in read_pkt_line
    size = int(sizestr, 16)
ValueError: invalid literal for int() with base 16: b'Stat'

======================================================================
ERROR: test_get_refs
(dulwich.tests.compat.test_client.DulwichHttpClientTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/tests/compat/test_client.py",
line 276, in test_get_refs
    refs = c.get_refs(self._build_path('/server_new.export'))
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 1575, in get_refs
    b"git-upload-pack", url)
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 1456, in _discover_references
    return read_pkt_refs(proto) + (base_url, )
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 196, in read_pkt_refs
    for pkt in proto.read_pkt_seq():
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/protocol.py",
line 254, in read_pkt_seq
    pkt = self.read_pkt_line()
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/protocol.py",
line 203, in read_pkt_line
    size = int(sizestr, 16)
ValueError: invalid literal for int() with base 16: b'Stat'

======================================================================
ERROR: test_incremental_fetch_pack
(dulwich.tests.compat.test_client.DulwichHttpClientTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/tests/compat/test_client.py",
line 226, in test_incremental_fetch_pack
    self.test_fetch_pack()
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/tests/compat/test_client.py",
line 208, in test_fetch_pack
    result = c.fetch(self._build_path('/server_new.export'), dest)
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 364, in fetch
    progress)
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 1544, in fetch_pack
    b"git-upload-pack", url)
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 1456, in _discover_references
    return read_pkt_refs(proto) + (base_url, )
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 196, in read_pkt_refs
    for pkt in proto.read_pkt_seq():
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/protocol.py",
line 254, in read_pkt_seq
    pkt = self.read_pkt_line()
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/protocol.py",
line 203, in read_pkt_line
    size = int(sizestr, 16)
ValueError: invalid literal for int() with base 16: b'Stat'

======================================================================
ERROR: test_repeat (dulwich.tests.compat.test_client.DulwichHttpClientTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/tests/compat/test_client.py",
line 216, in test_repeat
    result = c.fetch(self._build_path('/server_new.export'), dest)
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 364, in fetch
    progress)
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 1544, in fetch_pack
    b"git-upload-pack", url)
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 1456, in _discover_references
    return read_pkt_refs(proto) + (base_url, )
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 196, in read_pkt_refs
    for pkt in proto.read_pkt_seq():
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/protocol.py",
line 254, in read_pkt_seq
    pkt = self.read_pkt_line()
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/protocol.py",
line 203, in read_pkt_line
    size = int(sizestr, 16)
ValueError: invalid literal for int() with base 16: b'Stat'

======================================================================
ERROR: test_send_pack
(dulwich.tests.compat.test_client.DulwichHttpClientTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/tests/compat/test_client.py",
line 111, in test_send_pack
    self._do_send_pack()
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/tests/compat/test_client.py",
line 108, in _do_send_pack
    src.object_store.generate_pack_data)
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 1497, in send_pack
    b"git-receive-pack", url)
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 1456, in _discover_references
    return read_pkt_refs(proto) + (base_url, )
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 196, in read_pkt_refs
    for pkt in proto.read_pkt_seq():
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/protocol.py",
line 254, in read_pkt_seq
    pkt = self.read_pkt_line()
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/protocol.py",
line 203, in read_pkt_line
    size = int(sizestr, 16)
ValueError: invalid literal for int() with base 16: b'Stat'

======================================================================
ERROR: test_send_pack_multiple_errors
(dulwich.tests.compat.test_client.DulwichHttpClientTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/tests/compat/test_client.py",
line 185, in test_send_pack_multiple_errors
    gen_pack)
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 1497, in send_pack
    b"git-receive-pack", url)
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 1456, in _discover_references
    return read_pkt_refs(proto) + (base_url, )
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 196, in read_pkt_refs
    for pkt in proto.read_pkt_seq():
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/protocol.py",
line 254, in read_pkt_seq
    pkt = self.read_pkt_line()
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/protocol.py",
line 203, in read_pkt_line
    size = int(sizestr, 16)
ValueError: invalid literal for int() with base 16: b'Stat'

======================================================================
ERROR: test_send_pack_nothing_to_send
(dulwich.tests.compat.test_client.DulwichHttpClientTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/tests/compat/test_client.py",
line 115, in test_send_pack_nothing_to_send
    self._do_send_pack()
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/tests/compat/test_client.py",
line 108, in _do_send_pack
    src.object_store.generate_pack_data)
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 1497, in send_pack
    b"git-receive-pack", url)
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 1456, in _discover_references
    return read_pkt_refs(proto) + (base_url, )
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 196, in read_pkt_refs
    for pkt in proto.read_pkt_seq():
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/protocol.py",
line 254, in read_pkt_seq
    pkt = self.read_pkt_line()
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/protocol.py",
line 203, in read_pkt_line
    size = int(sizestr, 16)
ValueError: invalid literal for int() with base 16: b'Stat'

======================================================================
ERROR: test_send_pack_one_error
(dulwich.tests.compat.test_client.DulwichHttpClientTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/tests/compat/test_client.py",
line 166, in test_send_pack_one_error
    lambda _: sendrefs, gen_pack)
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 1497, in send_pack
    b"git-receive-pack", url)
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 1456, in _discover_references
    return read_pkt_refs(proto) + (base_url, )
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 196, in read_pkt_refs
    for pkt in proto.read_pkt_seq():
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/protocol.py",
line 254, in read_pkt_seq
    pkt = self.read_pkt_line()
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/protocol.py",
line 203, in read_pkt_line
    size = int(sizestr, 16)
ValueError: invalid literal for int() with base 16: b'Stat'

======================================================================
ERROR: test_send_remove_branch
(dulwich.tests.compat.test_client.DulwichHttpClientTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/tests/compat/test_client.py",
line 271, in test_send_remove_branch
    self._build_path('/dest'), lambda _: sendrefs, gen_pack)
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 1497, in send_pack
    b"git-receive-pack", url)
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 1456, in _discover_references
    return read_pkt_refs(proto) + (base_url, )
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 196, in read_pkt_refs
    for pkt in proto.read_pkt_seq():
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/protocol.py",
line 254, in read_pkt_seq
    pkt = self.read_pkt_line()
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/protocol.py",
line 203, in read_pkt_line
    size = int(sizestr, 16)
ValueError: invalid literal for int() with base 16: b'Stat'

======================================================================
ERROR: test_send_without_report_status
(dulwich.tests.compat.test_client.DulwichHttpClientTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/tests/compat/test_client.py",
line 128, in test_send_without_report_status
    src.object_store.generate_pack_data)
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 1497, in send_pack
    b"git-receive-pack", url)
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 1456, in _discover_references
    return read_pkt_refs(proto) + (base_url, )
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/client.py",
line 196, in read_pkt_refs
    for pkt in proto.read_pkt_seq():
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/protocol.py",
line 254, in read_pkt_seq
    pkt = self.read_pkt_line()
  File
"/tmp/autopkgtest-lxc.ad_uab1g/downtmp/build.Ezi/src/dulwich/protocol.py",
line 203, in read_pkt_line
    size = int(sizestr, 16)
ValueError: invalid literal for int() with base 16: b'Stat'

----------------------------------------------------------------------
Ran 1268 tests in 66.475s

FAILED (errors=12, skipped=85)


Attachment: signature.asc
Description: OpenPGP digital signature


--- End Message ---
--- Begin Message ---
Source: git
Source-Version: 1:2.19.0~rc2-2

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

Debian distribution maintenance software
pp.
Jonathan Nieder <jrnie...@gmail.com> (supplier of updated git 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: SHA256

Format: 1.8
Date: Sun, 09 Sep 2018 19:08:55 -0700
Source: git
Binary: git git-man git-doc git-cvs git-svn git-mediawiki git-email 
git-daemon-run git-daemon-sysvinit git-gui gitk git-el gitweb git-all
Architecture: source all amd64
Version: 1:2.19.0~rc2-2
Distribution: unstable
Urgency: low
Maintainer: Gerrit Pape <p...@smarden.org>
Changed-By: Jonathan Nieder <jrnie...@gmail.com>
Description:
 git        - fast, scalable, distributed revision control system
 git-all    - fast, scalable, distributed revision control system (all subpacka
 git-cvs    - fast, scalable, distributed revision control system (cvs interope
 git-daemon-run - fast, scalable, distributed revision control system 
(git-daemon s
 git-daemon-sysvinit - fast, scalable, distributed revision control system 
(git-daemon s
 git-doc    - fast, scalable, distributed revision control system (documentatio
 git-el     - fast, scalable, distributed revision control system (emacs suppor
 git-email  - fast, scalable, distributed revision control system (email add-on
 git-gui    - fast, scalable, distributed revision control system (GUI)
 git-man    - fast, scalable, distributed revision control system (manual pages
 git-mediawiki - fast, scalable, distributed revision control system (MediaWiki 
re
 git-svn    - fast, scalable, distributed revision control system (svn interope
 gitk       - fast, scalable, distributed revision control system (revision tre
 gitweb     - fast, scalable, distributed revision control system (web interfac
Closes: 907587
Changes:
 git (1:2.19.0~rc2-2) unstable; urgency=low
 .
   * debian/patches:
     * 0001-http-backend-allow-empty-CONTENT_LENGTH: new from
       upstream: http-backend: treat empty CONTENT_LENGTH as absent
       (closes: #907587).
     * 0002-Revert-Merge-branch-sb-submodule-core-worktree.diff: new
       from upstream: stop setting and unsetting core.worktree in
       submodules, since the code to do so does not handle submodules
       with an embedded .git directory (thx Allan Sandfeld Jensen).
Checksums-Sha1:
 097b2db7e812879b646bf2333c52a343ccbe6e8f 2916 git_2.19.0~rc2-2.dsc
 7df28d5fb02ee7aabdc0a13b3cae36cf097964b5 590032 git_2.19.0~rc2-2.debian.tar.xz
 b2842102dd66c57aac5f9c23e2b129938a90d6cf 773672 git-all_2.19.0~rc2-2_all.deb
 66517139b450c00fa50c4c51a09304a99d92f05d 836880 git-cvs_2.19.0~rc2-2_all.deb
 de986050b2b6e0ede16a8a598a40ac922651af7a 775272 
git-daemon-run_2.19.0~rc2-2_all.deb
 b99e78729ed38e5f6f3ca6ea9aa59fa37c866285 776428 
git-daemon-sysvinit_2.19.0~rc2-2_all.deb
 9614593724b963bd082612d561137ed898199f05 42927056 
git-dbgsym_2.19.0~rc2-2_amd64.deb
 e760926e6742da84fe82333450db1ceff4ebbc83 1721108 git-doc_2.19.0~rc2-2_all.deb
 88bc30f9d8e93de47880046345b3bb40f4612db5 776028 git-el_2.19.0~rc2-2_all.deb
 a57d3c5a326c8b8fa4cafc565414af026b37256c 798284 git-email_2.19.0~rc2-2_all.deb
 3e30f66f15915188645fd2ea9fe5f682a6632f40 983144 git-gui_2.19.0~rc2-2_all.deb
 8d4f44953517f3294cffa6fd699352c041c36beb 1589312 git-man_2.19.0~rc2-2_all.deb
 eb37b3dcd89d595e2645ea6f318d6efa60c36de7 789620 
git-mediawiki_2.19.0~rc2-2_all.deb
 cf259ff91fb3195e3a9eff1bd0f4b77aab8bbb5f 848736 git-svn_2.19.0~rc2-2_all.deb
 79718e740f586fd3fc10374c638981afef7015ec 12205 git_2.19.0~rc2-2_amd64.buildinfo
 a0e1fe435cfda8e36b4fa5f988c1d1caac0ffa3e 4914004 git_2.19.0~rc2-2_amd64.deb
 392575d48cee2216cfe4d12291782f3631c3a14b 904112 gitk_2.19.0~rc2-2_all.deb
 8e999d22515f067daa9710bafc33ef0661cd42c5 777896 gitweb_2.19.0~rc2-2_all.deb
Checksums-Sha256:
 62bbe5ba336df0cdfefe9dd4dbd264d5be793b1a15b39c5610731d8cfc7572bc 2916 
git_2.19.0~rc2-2.dsc
 9a0110bbc3d3ef9e52f71acaf7dd02e95aafce318264c4f4957fb02d6227e5fa 590032 
git_2.19.0~rc2-2.debian.tar.xz
 1ac87b9d1dac84c3a6388bc0b8b6cd2df1a0d6736e2c5134a817c51039848d6e 773672 
git-all_2.19.0~rc2-2_all.deb
 f3715c6cf238d3565e917a5912c12b7fed921a523fd5abe3da6e9770eca5bb45 836880 
git-cvs_2.19.0~rc2-2_all.deb
 842e9533d505454f7edefb5e331f1b7d4d0073e4d8d4b329e48b9a7885479365 775272 
git-daemon-run_2.19.0~rc2-2_all.deb
 940478f623fe6105e427cdedaa120fcb2f45033f7102e88372d8bced80f68e8e 776428 
git-daemon-sysvinit_2.19.0~rc2-2_all.deb
 e3e948d5117f4365a095555b4028f191fd9641d63f8f65c55899410bb17fb3a6 42927056 
git-dbgsym_2.19.0~rc2-2_amd64.deb
 c0e485260640568ff34197024a54d72a52b193858d8d23a64be1e484ea45e592 1721108 
git-doc_2.19.0~rc2-2_all.deb
 2483163682cb3f9b98c19af5c4b3a0a3356ae914ec754fb9c73df099639917b1 776028 
git-el_2.19.0~rc2-2_all.deb
 dafd13878b864ee2b4599335ebb2321aba0bdbb98b53a243c2d69434729bf65b 798284 
git-email_2.19.0~rc2-2_all.deb
 ba3376e2265c31497d682c8b3710e8ccb41eda12e4fd8c0ea8975ff9783635db 983144 
git-gui_2.19.0~rc2-2_all.deb
 d92672f79fb833779c7c024dd588264b035c8045b7ed46a9551b13379e93881b 1589312 
git-man_2.19.0~rc2-2_all.deb
 eb49e0e4e710945b0b0711059572048bb642c47040a37e147fe03b5aca9c0cb1 789620 
git-mediawiki_2.19.0~rc2-2_all.deb
 f6ef030e3f25646205e67b2fde95eadd57d4431a3933e38c9c075531dd52a0e3 848736 
git-svn_2.19.0~rc2-2_all.deb
 b42ef8c5ab6fed3f3ddda2485f51ae2b439fdcb69fa3c3efc08a9ef056ed08fa 12205 
git_2.19.0~rc2-2_amd64.buildinfo
 5c496af13a142170eab357f32428ca9a1f8df10717d61c15ac86db278920dfa8 4914004 
git_2.19.0~rc2-2_amd64.deb
 603aace31496cda97b156d5e8f2dc96e0b20b71c54db8664797abf2adf75c535 904112 
gitk_2.19.0~rc2-2_all.deb
 28dfe534ea9c501863ff8cbd8d1acb9226458dfe0905e41fcb5c2bb37d4726cf 777896 
gitweb_2.19.0~rc2-2_all.deb
Files:
 f3df3f10370d424cfe295fa07d614f60 2916 vcs optional git_2.19.0~rc2-2.dsc
 b3be77c2c988dbd840667c941e84375a 590032 vcs optional 
git_2.19.0~rc2-2.debian.tar.xz
 c2e2ba6f7b73fd8602849f9b171824e0 773672 vcs optional 
git-all_2.19.0~rc2-2_all.deb
 dde5aa279fd171ba8650f622c380aa3d 836880 vcs optional 
git-cvs_2.19.0~rc2-2_all.deb
 749aaaf2a0b3bb44d67d3944b3f36f4d 775272 vcs optional 
git-daemon-run_2.19.0~rc2-2_all.deb
 ad02ed09bc34809f2cc8dece0704316b 776428 vcs optional 
git-daemon-sysvinit_2.19.0~rc2-2_all.deb
 9de7604be5686e21993a3ac00c2dcada 42927056 debug optional 
git-dbgsym_2.19.0~rc2-2_amd64.deb
 10b753dab80ad73310b63884e313e8ca 1721108 doc optional 
git-doc_2.19.0~rc2-2_all.deb
 c4400d339192bacd15ef884da1ffc88d 776028 vcs optional 
git-el_2.19.0~rc2-2_all.deb
 5301d0c6a3bee916a13030d8e0a102aa 798284 vcs optional 
git-email_2.19.0~rc2-2_all.deb
 07b99939df5b9725e976de9b4393f02f 983144 vcs optional 
git-gui_2.19.0~rc2-2_all.deb
 4a64afcff7f32ed1438a44b0aa31d113 1589312 doc optional 
git-man_2.19.0~rc2-2_all.deb
 3554e92af912711f42b603b8b5046972 789620 vcs optional 
git-mediawiki_2.19.0~rc2-2_all.deb
 b63ab99f2175d4e9a19deb974446441a 848736 vcs optional 
git-svn_2.19.0~rc2-2_all.deb
 a0c71a4954c7c74f34cc6dcff89f4cc4 12205 vcs optional 
git_2.19.0~rc2-2_amd64.buildinfo
 541132d14b684664fdbb86152cf5ee40 4914004 vcs optional 
git_2.19.0~rc2-2_amd64.deb
 4d6045821e1c2fe3711ecf5819db3738 904112 vcs optional gitk_2.19.0~rc2-2_all.deb
 2ee02ede52f68a4802268110fa594485 777896 vcs optional 
gitweb_2.19.0~rc2-2_all.deb

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

iQJHBAEBCAAxFiEEUh5Y8X6W1xKqD/EC38Zx7rMz+iUFAluV1JATHGpybmllZGVy
QGdtYWlsLmNvbQAKCRDfxnHuszP6JQB7D/sFDs5m2BZd0CmEvgeLNpKrsEAmqKhd
IY0BCUtjHq5If942jbQpRV54f8yrLFHYR3kZzkY3gV+ASTiP7lGnznrdo9Ctwwdu
RM+4q0xYCY0flADvo+t8CqA/5v8s5g7054MT3k7sxbj1jX6awXmG2HTn4uzGg8Q4
CS+mCVm0myHgdzlmt8rplnolhzgWPM6BgKGI4V74czYxisC0IUyAdI+uBp2y7/EY
1Eefb9DqmrnJTyxsC4udIekm8n4N9xkTZtkZoSslT4AuOJMpx3V9FWnS/ft9Pzvw
dbM/uNgeiKE3YIPVyH43CZUxB7D9IKP18oLSEcOei9ckyw3MBLTwhjW9Qh8LAm2a
4ob9768OW7VQI9msOLKKw7wM+WZBHgsz0cCA5PP6BvKqbGJAFOIrmIokRbey3lYe
xoYTsc8EiUWozTIPauL8/yvFv1CMRdbZMGLyWUv74rvKJxMc/XDENEmcSdPrSThH
j+3GjN4YN16m2VBVzTkJS7ATpiY1/kEUomtWS7Eu7QNU5Aep5B1TtJt0nmyBT1Ck
u+w8yGV888tBwS94ktMbSakk7mestCqtvRD3zDaDf3i8vjoPR4ejUdoRhEIK4c0A
bJMWOnPiOm3hB2u7cAbQGCTHFJ4o3OTyQhsIvxTUD1IsAQeJbyt1dcWF8ixytVlv
YJwkHY3mrk7GnQ==
=hdJS
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to