Your message dated Sun, 16 Mar 2025 22:19:59 +0000
with message-id <e1ttwkt-00dceh...@fasolo.debian.org>
and subject line Bug#1084331: fixed in python-directv 0.4.0-3
has caused the Debian Bug report #1084331,
regarding python-directv: FTBFS: ValueError: Host '#' cannot contain '#' (at
position 0)
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.)
--
1084331: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1084331
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:python-directv
Version: 0.4.0-2
Severity: serious
Tags: ftbfs
Dear maintainer:
During a rebuild of all packages in unstable, your package failed to build:
--------------------------------------------------------------------------------
[...]
debian/rules binary
dh binary --buildsystem=pybuild
dh_update_autotools_config -O--buildsystem=pybuild
dh_autoreconf -O--buildsystem=pybuild
dh_auto_configure -O--buildsystem=pybuild
I: pybuild base:311: python3.12 setup.py config
/usr/lib/python3/dist-packages/setuptools/_distutils/dist.py:261: UserWarning:
Unknown distribution option: 'test_suite'
warnings.warn(msg)
/<<PKGBUILDDIR>>/directv/__version__.pyrunning config
dh_auto_build -O--buildsystem=pybuild
I: pybuild base:311: /usr/bin/python3 setup.py build
/usr/lib/python3/dist-packages/setuptools/_distutils/dist.py:261: UserWarning:
Unknown distribution option: 'test_suite'
warnings.warn(msg)
/<<PKGBUILDDIR>>/directv/__version__.pyrunning build
running build_py
creating /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_directv/build/directv
copying directv/exceptions.py ->
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_directv/build/directv
copying directv/utils.py ->
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_directv/build/directv
copying directv/__init__.py ->
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_directv/build/directv
copying directv/directv.py ->
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_directv/build/directv
copying directv/const.py ->
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_directv/build/directv
copying directv/models.py ->
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_directv/build/directv
copying directv/__version__.py ->
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_directv/build/directv
running egg_info
creating directv.egg-info
writing directv.egg-info/PKG-INFO
writing dependency_links to directv.egg-info/dependency_links.txt
writing requirements to directv.egg-info/requires.txt
writing top-level names to directv.egg-info/top_level.txt
writing manifest file 'directv.egg-info/SOURCES.txt'
reading manifest file 'directv.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no files found matching 'LICENSE.md'
warning: no previously-included files matching '*.py[co]' found under directory
'*'
adding license file 'LICENSE'
writing manifest file 'directv.egg-info/SOURCES.txt'
dh_auto_test -O--buildsystem=pybuild
I: pybuild base:311: cd /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_directv/build;
python3.12 -m pytest --no-cov
/usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:208: PytestDeprecationWarning:
The configuration option "asyncio_default_fixture_loop_scope" is unset.
The event loop scope for asynchronous fixtures will default to the fixture caching scope. Future versions of pytest-asyncio will
default the loop scope for asynchronous fixtures to function scope. Set the default fixture loop scope explicitly in order to
avoid unexpected behavior in the future. Valid fixture loop scopes are: "function", "class",
"module", "package", "session"
warnings.warn(PytestDeprecationWarning(_DEFAULT_FIXTURE_LOOP_SCOPE_UNSET))
============================= test session starts ==============================
platform linux -- Python 3.12.7, pytest-8.3.3, pluggy-1.5.0
rootdir: /<<PKGBUILDDIR>>
plugins: typeguard-4.3.0, asyncio-0.24.0a1, aresponses-3.0.0, cov-5.0.0
asyncio: mode=Mode.STRICT, default_loop_scope=None
collected 36 items
tests/test_directv.py ......F.... [ 30%]
tests/test_interface.py ............... [ 72%]
tests/test_models.py ........ [ 94%]
tests/test_utils.py .. [100%]
=================================== FAILURES ===================================
______________________________ test_client_error _______________________________
@pytest.mark.asyncio
async def test_client_error():
"""Test http client error."""
async with ClientSession() as session:
dtv = DIRECTV("#", session=session)
with pytest.raises(DIRECTVConnectionError):
assert await dtv._request("/info/getVersion")
tests/test_directv.py:139:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
directv/directv.py:59: in _request
url = URL.build(
/usr/lib/python3/dist-packages/yarl/_url.py:385: in build
netloc = cls._make_netloc(
/usr/lib/python3/dist-packages/yarl/_url.py:1057: in _make_netloc
ret = cls._encode_host(host)
/usr/lib/python3/dist-packages/yarl/_url.py:1038: in _encode_host
_host_validate(host)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
host = '#'
@lru_cache(_MAXCACHE)
def _host_validate(host: str) -> None:
"""Validate an ascii host name."""
invalid = _not_reg_name.search(host)
if invalid is None:
return
value, pos, extra = invalid.group(), invalid.start(), ""
if value == "@" or (value == ":" and "@" in host[pos:]):
# this looks like an authority string
extra = (
", if the value includes a username or password, "
"use 'authority' instead of 'host'"
)
raise ValueError(
f"Host {host!r} cannot contain {value!r} (at position "
f"{pos}){extra}"
) from None
E ValueError: Host '#' cannot contain '#' (at position 0)
/usr/lib/python3/dist-packages/yarl/_url.py:1607: ValueError
=============================== warnings summary ===============================
directv/models.py:128
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_directv/build/directv/models.py:128:
DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a
future version. Use timezone-aware objects to represent datetimes in UTC:
datetime.datetime.now(datetime.UTC).
at: datetime = datetime.utcnow()
.pybuild/cpython3_3.12_directv/build/tests/test_directv.py: 10 warnings
.pybuild/cpython3_3.12_directv/build/tests/test_interface.py: 18 warnings
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_directv/build/directv/directv.py:77:
DeprecationWarning: with timeout() is deprecated, use async with timeout() instead
with async_timeout.timeout(self.request_timeout):
-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
=========================== short test summary info ============================
FAILED tests/test_directv.py::test_client_error - ValueError: Host '#' cannot...
================== 1 failed, 35 passed, 29 warnings in 1.18s ===================
E: pybuild pybuild:389: test: plugin distutils failed with: exit code=1: cd
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_directv/build; python3.12 -m pytest
--no-cov
dh_auto_test: error: pybuild --test -i python{version} -p 3.12 returned exit
code 13
make: *** [debian/rules:8: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--------------------------------------------------------------------------------
The above is just how the build ends and not necessarily the most relevant part.
If required, the full build log is available here:
https://people.debian.org/~sanvila/build-logs/202410/
About the archive rebuild: The build was made on virtual machines from AWS,
using sbuild and a reduced chroot with only build-essential packages.
If you could not reproduce the bug please contact me privately, as I
am willing to provide ssh access to a virtual machine where the bug is
fully reproducible.
If this is really a bug in one of the build-depends, please use
reassign and affects, so that this is still visible in the BTS web
page for this package.
Thanks.
--- End Message ---
--- Begin Message ---
Source: python-directv
Source-Version: 0.4.0-3
Done: Edward Betts <edw...@4angle.com>
We believe that the bug you reported is fixed in the latest version of
python-directv, 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 1084...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Edward Betts <edw...@4angle.com> (supplier of updated python-directv 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: Sun, 16 Mar 2025 20:50:40 +0000
Source: python-directv
Architecture: source
Version: 0.4.0-3
Distribution: unstable
Urgency: medium
Maintainer: Home Assistant Team <team+homeassist...@tracker.debian.org>
Changed-By: Edward Betts <edw...@4angle.com>
Closes: 1084331
Changes:
python-directv (0.4.0-3) unstable; urgency=medium
.
* Fix test failure. (Closes: #1084331)
* Patch tests to use hostname 'localhost' instead of '#'.
* Patch code to use asyncio.timeout instead of deprecated async_timeout.
* Update copyright year.
* Update Standards-Version.
* Move packages required for tests to Build-Depends-Indep.
* Simplify debian/rules.
* Simplify debian/watch.
Checksums-Sha1:
7ad0832528b3327b2759dc71ade080624d7908e0 2372 python-directv_0.4.0-3.dsc
de870afd6e00485573d56259ec4030e99141b5d4 3260
python-directv_0.4.0-3.debian.tar.xz
ba45a0f495594172f4026eb287d17ae44d1483a0 7997
python-directv_0.4.0-3_source.buildinfo
Checksums-Sha256:
7120c8d75c2156d3b36bec952c0cb81d99c7e1f95a2d9007a8c9a040dd95c86d 2372
python-directv_0.4.0-3.dsc
89da98c2d2ef7a9c19c7c039631ddf97f9e29b81259689004511851e6ed147d3 3260
python-directv_0.4.0-3.debian.tar.xz
6359ee901d94d002a33148145d392bc765cce8a315bf3f2b01aee43f7effb298 7997
python-directv_0.4.0-3_source.buildinfo
Files:
6ea172084e276ee58206bf1e385ec94f 2372 python optional
python-directv_0.4.0-3.dsc
b637835bf9d8ada0ba3110c176dcc0e4 3260 python optional
python-directv_0.4.0-3.debian.tar.xz
26cf61e2ff3becef369e99d5d67fb607 7997 python optional
python-directv_0.4.0-3_source.buildinfo
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCgAdFiEE+4rPp4xyYInDitAmlgWhCYxjuSoFAmfXPCMACgkQlgWhCYxj
uSofYRAAi0KQvELX+nwabGiKRj5ftA4XTTGXbn+NKhMAR/2WysMT4UAetUwZsSMx
dTTiy++1HX/4/7nf95T5fyYTVQDWLxqur/IKvfC4o1nHSL5jfu2IdHlNCKuFICqJ
1MxKYWAHT29H7wwIo5wNuzwXS5X6FDnxKh+u+7SoQ34KqoZZHR+9baXDggn8NYBZ
sRJPwxy9pvMp3EMSrvxsb6fBRXh0PEqtnysBBwXoOz1iRjsEMEKIymHn1PtFEjbG
77wa6WGhSPWsgqbA6Qb/ZHNT/YZozP0jVoxwFFRDJ7bhmAuLdqnYzeoJiQyaER/Y
VYOz5uvBqQ+hxzYQmPqgDivDUTaxD9/fFaKAHgm0zar1rD+bV6mFR2ltRzAPDWBc
CvsUhB+lzjCAPRiXQY/d49QSA+zeZVzXYKFbNr8Nmbn0ZeDdfs5gCwQlloOU0iaR
dVMNZ7S8TzwjTm4Oekx05kZYtdVaK77Hp8eVJxDPSu5b8WjozW44EkzKukD8XJMD
u7s7LH8pxq5N/wBDcdRpPmREfgdP1mrUyebn7vuK4pesMWOrpiLvzSh8Z+MRLuj9
WeaNj9wPKlADAq9a6MfwmI6/S/xIuczzflBzA0hqeM48oCATfIpWqULsvYowcELU
oXV6wQsMaM9G0JC958NDsWX1S1EbOsEUlmGtbdoj6DjzoUbSLAA=
=j/W6
-----END PGP SIGNATURE-----
pgpwuWoR2fya1.pgp
Description: PGP signature
--- End Message ---