Your message dated Mon, 15 Jan 2024 06:49:49 +0000
with message-id <e1rpgn7-00404f...@fasolo.debian.org>
and subject line Bug#1058410: fixed in smbus2 0.4.3-1
has caused the Debian Bug report #1058410,
regarding smbus2: FTBFS: dh_auto_test: error: pybuild --test --test-pytest -i 
python{version} -p "3.12 3.11" 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.)


-- 
1058410: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1058410
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: smbus2
Version: 0.4.2-1
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):
>  debian/rules build
> dh build --with python3 --buildsystem=pybuild --with sphinxdoc
>    dh_update_autotools_config -O--buildsystem=pybuild
>    dh_autoreconf -O--buildsystem=pybuild
>    dh_auto_configure -O--buildsystem=pybuild
> I: pybuild base:310: python3.12 setup.py config 
> running config
> I: pybuild base:310: python3.11 setup.py config 
> running config
>    dh_auto_build -O--buildsystem=pybuild
> I: pybuild base:310: /usr/bin/python3.12 setup.py build 
> running build
> running build_py
> creating /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_smbus2/build/smbus2
> copying smbus2/__init__.py -> 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_smbus2/build/smbus2
> copying smbus2/smbus2.py -> 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_smbus2/build/smbus2
> copying smbus2/py.typed -> 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_smbus2/build/smbus2
> copying smbus2/smbus2.pyi -> 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_smbus2/build/smbus2
> I: pybuild base:310: /usr/bin/python3 setup.py build 
> running build
> running build_py
> creating /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_smbus2/build/smbus2
> copying smbus2/__init__.py -> 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_smbus2/build/smbus2
> copying smbus2/smbus2.py -> 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_smbus2/build/smbus2
> copying smbus2/py.typed -> 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_smbus2/build/smbus2
> copying smbus2/smbus2.pyi -> 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_smbus2/build/smbus2
>    dh_auto_test -O--buildsystem=pybuild
> I: pybuild base:310: cd /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_smbus2/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 14 items
> 
> tests/test_datatypes.py .....                                            [ 
> 35%]
> tests/test_smbus2.py ...F.....                                           
> [100%]
> 
> =================================== FAILURES 
> ===================================
> ______________________________ TestSMBus.test_pec 
> ______________________________
> 
> self = <test_smbus2.TestSMBus testMethod=test_pec>
> 
>     def test_pec(self):
>         def set_pec(bus, enable=True):
>             bus.pec = enable
>     
>         # Enabling PEC should fail (no mocked PEC support)
>         bus = SMBus(1)
>         self.assertRaises(IOError, set_pec, bus, True)
>         self.assertRaises(IOError, set_pec, bus, 1)
> >       self.assertEquals(bus.pec, 0)
> E       AttributeError: 'TestSMBus' object has no attribute 'assertEquals'. 
> Did you mean: 'assertEqual'?
> 
> tests/test_smbus2.py:188: AttributeError
> ----------------------------- Captured stdout call 
> -----------------------------
> Mocking open: /dev/i2c-1
> Mocking ioctl
> =========================== short test summary info 
> ============================
> FAILED tests/test_smbus2.py::TestSMBus::test_pec - AttributeError: 
> 'TestSMBus...
> ========================= 1 failed, 13 passed in 0.07s 
> =========================
> E: pybuild pybuild:395: test: plugin distutils failed with: exit code=1: cd 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_smbus2/build; python3.12 -m pytest 
> tests
> I: pybuild base:310: cd /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_smbus2/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 14 items
> 
> tests/test_datatypes.py .....                                            [ 
> 35%]
> tests/test_smbus2.py .........                                           
> [100%]
> 
> =============================== warnings summary 
> ===============================
> .pybuild/cpython3_3.11_smbus2/build/tests/test_smbus2.py::TestSMBus::test_pec
>   
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_smbus2/build/tests/test_smbus2.py:188:
>  DeprecationWarning: Please use assertEqual instead.
>     self.assertEquals(bus.pec, 0)
> 
> .pybuild/cpython3_3.11_smbus2/build/tests/test_smbus2.py::TestSMBus::test_pec
>   
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_smbus2/build/tests/test_smbus2.py:192:
>  DeprecationWarning: Please use assertEqual instead.
>     self.assertEquals(bus.pec, 1)
> 
> .pybuild/cpython3_3.11_smbus2/build/tests/test_smbus2.py::TestSMBus::test_pec
>   
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11_smbus2/build/tests/test_smbus2.py:194:
>  DeprecationWarning: Please use assertEqual instead.
>     self.assertEquals(bus.pec, 0)
> 
> -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
> ======================== 14 passed, 3 warnings in 0.05s 
> ========================
> 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/smbus2_0.4.2-1_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 ---
Source: smbus2
Source-Version: 0.4.3-1
Done: Anton Gladky <gl...@debian.org>

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

Debian distribution maintenance software
pp.
Anton Gladky <gl...@debian.org> (supplier of updated smbus2 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: Mon, 15 Jan 2024 06:41:49 +0100
Source: smbus2
Architecture: source
Version: 0.4.3-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Electronics Team 
<pkg-electronics-de...@alioth-lists.debian.net>
Changed-By: Anton Gladky <gl...@debian.org>
Closes: 1046394 1058410
Changes:
 smbus2 (0.4.3-1) unstable; urgency=medium
 .
   * [064ba57] New upstream version 0.4.3. (Closes: #1058410)
   * [eecb877] Update standards version to 4.6.2, no changes needed.
   * [ac07a93] Remove doc-build folder. (Closes: #1046394)
Checksums-Sha1:
 e2d9152010c4cbb90d987ba6eb64b489a4686c07 2108 smbus2_0.4.3-1.dsc
 98b9b72f83dce21f305dd35121956f2a3fa0e4a4 17474 smbus2_0.4.3.orig.tar.gz
 1b5c3c9e16b46364a44248aeef8a88b67084f07d 2804 smbus2_0.4.3-1.debian.tar.xz
 6ca9d8fbc5b5464b80b29505cc03faa250db570f 10042 smbus2_0.4.3-1_source.buildinfo
Checksums-Sha256:
 7c4364fac007dc9d7c71c778e507ca4bb8c8032ecd56730f06e4add0c6450875 2108 
smbus2_0.4.3-1.dsc
 ecbcb848acb995d9cfbdaa677c6c5777c89ea507f8d487629b8e6e4e816b541f 17474 
smbus2_0.4.3.orig.tar.gz
 365fe413dd5a7edba821b58f24d849351edd1c472c591c09c03a029641dc2de2 2804 
smbus2_0.4.3-1.debian.tar.xz
 dfe03bbc88ce09f35db0b242fac40050b0b44ddca76d7addc8bc6486e9f8f710 10042 
smbus2_0.4.3-1_source.buildinfo
Files:
 a3c0d4bb1421a3b3857a7d9e3a0b955e 2108 libs optional smbus2_0.4.3-1.dsc
 17d2fcf89a25932b606a57f2110d14ff 17474 libs optional smbus2_0.4.3.orig.tar.gz
 e633ac3b6a7adea8cfac90907aeea2a6 2804 libs optional 
smbus2_0.4.3-1.debian.tar.xz
 40a1d600d999aea6ef49913cc9907ac5 10042 libs optional 
smbus2_0.4.3-1_source.buildinfo

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

iQIzBAEBCgAdFiEEu71F6oGKuG/2fnKF0+Fzg8+n/wYFAmWk0lUACgkQ0+Fzg8+n
/waFJQ/+Kz3sRVvJnqmCVng0pB3Oja3rpw/ASA7HQLNaScMb1AVXYSYMzpCpt+fj
9+XpcZxEWW1KZIg4lc9PbNSuDpgVs+tav+XKfaSjKpM5C/hOK0Nk9JeClvy01Av7
ucHXaQ76X7b3tgiuybnhhbiiXZHRR98C0pMRF/dPWM+Va+NCOHNHd2s005kkbwr6
mYSQfWsdkfEr7XqlzdpoLqY04HxOjv5JU4XaCSLFUo1OstiV2g8g2jt1po6w84o/
zreXQm4Q8OiS+ZkpPW51nPDpsaprAILms7kJTqOxzpsXTR6HvZyCpJmLayFfjCTa
MgcpZMrNcQvocqOyTeTbDKPmqe+8OPZR3nc0jZprttwKh9gS4ooLEIbuc8JX1naO
WMRKl4Zo4mNUWjurLLT1kLXtHDSE8xm5iiwha9nhsuNMH92lzjk5vldt8S6CCO/i
oEOILR2PnGx/TAsgVUlrgkOEKP6z1S+RtL6SgCUIVVCGS7gdnYaJDYV+FMPBRAtb
YVUEhG0M0nMvyoOH8/ecm6/51DJRA+7x2TM+YgfmjJBEwrcVoV3zBJ0q5+BC8szB
Uaq85DMEIDVm3/XGIRDIktlSUGLXyhoAfz8ztWP+qq+/wc6Js55uxS1l2tLu8nYF
6oOdd9vury6+4oFl2hOcUkLiAbYg1zCaPdObza8gJpANPed6TVg=
=z+ZV
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to