Your message dated Mon, 26 Feb 2024 18:42:39 +0000
with message-id <e1refvz-00eqp6...@fasolo.debian.org>
and subject line Bug#1064640: Removed package(s) from unstable
has caused the Debian Bug report #1058431,
regarding pyrcb2: FTBFS:         with self.assertRaises(TypeError):
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.)


-- 
1058431: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1058431
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: pyrcb2
Version: 0.6.2-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20231212 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> make[1]: Entering directory '/<<PKGBUILDDIR>>'
> cd docs && \
> PYTHONPATH=/<<PKGBUILDDIR>> http_proxy='http://127.0.0.1:9/' 
> https_proxy='https://127.0.0.1:9/' \
> sphinx-build -N -E -T -b html . /<<PKGBUILDDIR>>/.pybuild/docs/html/
> Running Sphinx v7.2.6
> WARNING: Invalid configuration value found: 'language = None'. Update your 
> configuration to a valid language code. Falling back to 'en' (English).
> making output directory... done
> loading intersphinx inventory from https://docs.python.org/3/objects.inv...
> WARNING: failed to reach any of the inventories with the following issues:
> intersphinx inventory 'https://docs.python.org/3/objects.inv' not fetchable 
> due to <class 'requests.exceptions.ProxyError'>: 
> HTTPSConnectionPool(host='docs.python.org', port=443): Max retries exceeded 
> with url: /3/objects.inv (Caused by ProxyError('Cannot connect to proxy.', 
> NewConnectionError('<urllib3.connection.HTTPSConnection object at 
> 0x7f19e1867e50>: Failed to establish a new connection: [Errno 111] Connection 
> refused')))
> building [mo]: targets for 0 po files that are out of date
> writing output... 
> building [html]: targets for 16 source files that are out of date
> updating environment: [new config] 16 added, 0 changed, 0 removed
> reading sources... [  6%] custom-commands
> reading sources... [ 12%] getting-started
> reading sources... [ 19%] index
> reading sources... [ 25%] installation
> reading sources... [ 31%] reference/bots
> reading sources... [ 38%] reference/index
> reading sources... [ 44%] reference/itypes
> reading sources... [ 50%] reference/messages
> reading sources... [ 56%] reference/other
> reading sources... [ 62%] release-notes/0.1
> reading sources... [ 69%] release-notes/0.2
> reading sources... [ 75%] release-notes/0.3
> reading sources... [ 81%] release-notes/0.4
> reading sources... [ 88%] release-notes/0.5
> reading sources... [ 94%] release-notes/0.6
> reading sources... [100%] release-notes/index
> 
> looking for now-outdated files... none found
> pickling environment... done
> checking consistency... done
> preparing documents... done
> copying assets... copying static files... done
> copying extra files... done
> done
> writing output... [  6%] custom-commands
> writing output... [ 12%] getting-started
> writing output... [ 19%] index
> writing output... [ 25%] installation
> writing output... [ 31%] reference/bots
> writing output... [ 38%] reference/index
> writing output... [ 44%] reference/itypes
> writing output... [ 50%] reference/messages
> writing output... [ 56%] reference/other
> writing output... [ 62%] release-notes/0.1
> writing output... [ 69%] release-notes/0.2
> writing output... [ 75%] release-notes/0.3
> writing output... [ 81%] release-notes/0.4
> writing output... [ 88%] release-notes/0.5
> writing output... [ 94%] release-notes/0.6
> writing output... [100%] release-notes/index
> 
> generating indices... genindex py-modindex done
> writing additional pages... search done
> dumping search index in English (code: en)... done
> dumping object inventory... done
> build succeeded, 2 warnings.
> 
> The HTML pages are in ../.pybuild/docs/html.
> rm -rf /<<PKGBUILDDIR>>/.pybuild/docs/html/.doctrees
> make[1]: Leaving directory '/<<PKGBUILDDIR>>'
>    dh_auto_test -O--buildsystem=pybuild
> I: pybuild base:310: cd /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_pyrcb2/build; 
> python3.12 -m pytest tests
> ============================= test session starts 
> ==============================
> platform linux -- Python 3.12.1, pytest-7.4.3, pluggy-1.3.0
> rootdir: /<<PKGBUILDDIR>>
> collected 36 items
> 
> tests/test_accounts.py .........................                         [ 
> 69%]
> tests/test_itypes.py F...F......                                         
> [100%]
> 
> =================================== FAILURES 
> ===================================
> _________________________ TestItypes.test_idefaultdict 
> _________________________
> 
> self = <tests.test_itypes.TestItypes testMethod=test_idefaultdict>
> 
>     def test_idefaultdict(self):
>         self.test_idict(cls=partial(IDefaultDict, None))
>         with self.assertRaises(TypeError):
>             IDefaultDict("test")
>         d = IDefaultDict(int)
>         self.assertEqual(d["test"], 0)
>         self.assertEqual(d["test"], 0)
>         expected_repr = "IDefaultDict(%r, [(IStr('test'), 0)])" % int
> >       self.assertEqual(repr(d), expected_repr)
> E       AssertionError: "IDefaultDict(<class 'int'>, {IStr('test'): 0})" != 
> "IDefaultDict(<class 'int'>, [(IStr('test'), 0)])"
> E       - IDefaultDict(<class 'int'>, {IStr('test'): 0})
> E       ?                             ^            ^  ^
> E       + IDefaultDict(<class 'int'>, [(IStr('test'), 0)])
> E       ?                             ^^            ^  ^^
> 
> tests/test_itypes.py:62: AssertionError
> ____________________________ TestItypes.test_idict 
> _____________________________
> 
> self = <tests.test_itypes.TestItypes testMethod=test_idict>
> cls = <class 'pyrcb2.itypes.IDict'>
> 
>     def test_idict(self, cls=IDict):
>         d = cls(test=20)
>         d["Test^"] = 10
>         d["TEST~"] += 5
>         self.assertEqual(d["Test"], 20)
>         self.assertEqual(d["TEST~"], 15)
>         self.assertEqual(str(list(d.keys())[1]), "Test^")
>         if cls is IDict:
>             expected_repr = "IDict([(IStr('test'), 20), (IStr('Test^'), 15)])"
> >           self.assertEqual(repr(d), expected_repr)
> E           AssertionError: "IDict({IStr('test'): 20, IStr('Test^'): 15})" != 
> "IDict([(IStr('test'), 20), (IStr('Test^'), 15)])"
> E           - IDict({IStr('test'): 20, IStr('Test^'): 15})
> E           ?       ^            ^                  ^   ^
> E           + IDict([(IStr('test'), 20), (IStr('Test^'), 15)])
> E           ?       ^^            ^   +  +             ^   ^^
> 
> tests/test_itypes.py:52: AssertionError
> =============================== warnings summary 
> ===============================
> .pybuild/cpython3_3.12_pyrcb2/build/tests/test_accounts.py::TestAccountTracker::test_account_known
>   /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_pyrcb2/build/tests/tests.py:90: 
> DeprecationWarning: There is no current event loop
>     loop = asyncio.get_event_loop()
> 
> -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
> =========================== short test summary info 
> ============================
> FAILED tests/test_itypes.py::TestItypes::test_idefaultdict - AssertionError: 
> ...
> FAILED tests/test_itypes.py::TestItypes::test_idict - AssertionError: 
> "IDict(...
> =================== 2 failed, 34 passed, 1 warning in 0.61s 
> ====================
> E: pybuild pybuild:395: test: plugin distutils failed with: exit code=1: cd 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_pyrcb2/build; python3.12 -m pytest 
> tests
> I: pybuild base:310: cd /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_pyrcb2/build; 
> python3.11 -m pytest tests
> ============================= test session starts 
> ==============================
> platform linux -- Python 3.11.7, pytest-7.4.3, pluggy-1.3.0
> rootdir: /<<PKGBUILDDIR>>
> collected 36 items
> 
> tests/test_accounts.py .........................                         [ 
> 69%]
> tests/test_itypes.py ...........                                         
> [100%]
> 
> ============================== 36 passed in 0.54s 
> ==============================
> dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p "3.12 
> 3.11" returned exit code 13


The full build log is available from:
http://qa-logs.debian.net/2023/12/12/pyrcb2_0.6.2-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20231212;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20231212&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 ---
Version: 0.6.2-2+rm

Dear submitter,

as the package pyrcb2 has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1064640

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Thorsten Alteholz (the ftpmaster behind the curtain)

--- End Message ---

Reply via email to