Your message dated Fri, 02 Aug 2019 08:41:40 +0000
with message-id <[email protected]>
and subject line Bug#925847: fixed in uvloop 0.11.3+ds1-2
has caused the Debian Bug report #925847,
regarding uvloop: ftbfs with GCC-9
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 [email protected]
immediately.)


-- 
925847: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=925847
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:uvloop
Version: 0.11.3+ds1-1
Severity: normal
Tags: sid bullseye
User: [email protected]
Usertags: ftbfs-gcc-9

Please keep this issue open in the bug tracker for the package it
was filed for.  If a fix in another package is required, please
file a bug for the other package (or clone), and add a block in this
package. Please keep the issue open until the package can be built in
a follow-up test rebuild.

The package fails to build in a test rebuild on at least amd64 with
gcc-9/g++-9, but succeeds to build with gcc-8/g++-8. The
severity of this report will be raised before the bullseye release,
so nothing has to be done for the buster release.

The full build log can be found at:
http://people.debian.org/~doko/logs/gcc9-20190321/uvloop_0.11.3+ds1-1_unstable_gcc9.log
The last lines of the build log are at the end of this report.

To build with GCC 9, either set CC=gcc-9 CXX=g++-9 explicitly,
or install the gcc, g++, gfortran, ... packages from experimental.

  apt-get -t=experimental install g++ 

Common build failures are new warnings resulting in build failures with
-Werror turned on, or new/dropped symbols in Debian symbols files.
For other C/C++ related build failures see the porting guide at
http://gcc.gnu.org/gcc-9/porting_to.html

GCC 9 also passes the linker option --as-needed by default; typical
build issues are passing libraries before object files to the linker,
or underlinking of convenience libraries built from the same source.

[...]
    self.assertIsNone(asyncio.Task.current_task(loop=self.loop))
  
/<<BUILDDIR>>/uvloop-0.11.3+ds1/.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py:260:
 PendingDeprecationWarning: Task.current_task() is deprecated, use 
asyncio.current_task() instead
    self.assertTrue(asyncio.Task.current_task(loop=loop) is task1)
  
/<<BUILDDIR>>/uvloop-0.11.3+ds1/.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py:267:
 PendingDeprecationWarning: Task.current_task() is deprecated, use 
asyncio.current_task() instead
    self.assertTrue(asyncio.Task.current_task(loop=loop) is task2)
  
/<<BUILDDIR>>/uvloop-0.11.3+ds1/.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py:262:
 PendingDeprecationWarning: Task.current_task() is deprecated, use 
asyncio.current_task() instead
    self.assertTrue(asyncio.Task.current_task(loop=loop) is task1)
  
/<<BUILDDIR>>/uvloop-0.11.3+ds1/.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py:270:
 PendingDeprecationWarning: Task.current_task() is deprecated, use 
asyncio.current_task() instead
    self.assertTrue(asyncio.Task.current_task(loop=loop) is task2)
  
/<<BUILDDIR>>/uvloop-0.11.3+ds1/.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py:277:
 PendingDeprecationWarning: Task.current_task() is deprecated, use 
asyncio.current_task() instead
    self.assertIsNone(asyncio.Task.current_task(loop=self.loop))

.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py::Test_UV_AIO_Tasks::test_task_cancel_both_task_and_inner_future
  
/<<BUILDDIR>>/uvloop-0.11.3+ds1/.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py:91:
 PendingDeprecationWarning: Task.all_tasks() is deprecated, use 
asyncio.all_tasks() instead
    self.assertEqual(asyncio.Task.all_tasks(loop=self.loop), {t})

.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py::Test_UV_AIO_Tasks::test_task_current_task
  
/<<BUILDDIR>>/uvloop-0.11.3+ds1/.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py:242:
 PendingDeprecationWarning: Task.current_task() is deprecated, use 
asyncio.current_task() instead
    self.assertIsNone(asyncio.Task.current_task(loop=self.loop))
  
/<<BUILDDIR>>/uvloop-0.11.3+ds1/.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py:246:
 PendingDeprecationWarning: Task.current_task() is deprecated, use 
asyncio.current_task() instead
    self.assertTrue(asyncio.Task.current_task(loop=loop) is task)
  
/<<BUILDDIR>>/uvloop-0.11.3+ds1/.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py:250:
 PendingDeprecationWarning: Task.current_task() is deprecated, use 
asyncio.current_task() instead
    self.assertIsNone(asyncio.Task.current_task(loop=self.loop))

.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py::Test_UV_AIO_Tasks::test_task_current_task_with_interleaving_tasks
  
/<<BUILDDIR>>/uvloop-0.11.3+ds1/.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py:253:
 PendingDeprecationWarning: Task.current_task() is deprecated, use 
asyncio.current_task() instead
    self.assertIsNone(asyncio.Task.current_task(loop=self.loop))
  
/<<BUILDDIR>>/uvloop-0.11.3+ds1/.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py:260:
 PendingDeprecationWarning: Task.current_task() is deprecated, use 
asyncio.current_task() instead
    self.assertTrue(asyncio.Task.current_task(loop=loop) is task1)
  
/<<BUILDDIR>>/uvloop-0.11.3+ds1/.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py:267:
 PendingDeprecationWarning: Task.current_task() is deprecated, use 
asyncio.current_task() instead
    self.assertTrue(asyncio.Task.current_task(loop=loop) is task2)
  
/<<BUILDDIR>>/uvloop-0.11.3+ds1/.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py:262:
 PendingDeprecationWarning: Task.current_task() is deprecated, use 
asyncio.current_task() instead
    self.assertTrue(asyncio.Task.current_task(loop=loop) is task1)
  
/<<BUILDDIR>>/uvloop-0.11.3+ds1/.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py:270:
 PendingDeprecationWarning: Task.current_task() is deprecated, use 
asyncio.current_task() instead
    self.assertTrue(asyncio.Task.current_task(loop=loop) is task2)
  
/<<BUILDDIR>>/uvloop-0.11.3+ds1/.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py:277:
 PendingDeprecationWarning: Task.current_task() is deprecated, use 
asyncio.current_task() instead
    self.assertIsNone(asyncio.Task.current_task(loop=self.loop))

.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py::Test_AIO_Tasks::test_task_cancel_both_task_and_inner_future
  
/<<BUILDDIR>>/uvloop-0.11.3+ds1/.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py:91:
 PendingDeprecationWarning: Task.all_tasks() is deprecated, use 
asyncio.all_tasks() instead
    self.assertEqual(asyncio.Task.all_tasks(loop=self.loop), {t})

.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py::Test_AIO_Tasks::test_task_current_task
  
/<<BUILDDIR>>/uvloop-0.11.3+ds1/.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py:242:
 PendingDeprecationWarning: Task.current_task() is deprecated, use 
asyncio.current_task() instead
    self.assertIsNone(asyncio.Task.current_task(loop=self.loop))
  
/<<BUILDDIR>>/uvloop-0.11.3+ds1/.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py:246:
 PendingDeprecationWarning: Task.current_task() is deprecated, use 
asyncio.current_task() instead
    self.assertTrue(asyncio.Task.current_task(loop=loop) is task)
  
/<<BUILDDIR>>/uvloop-0.11.3+ds1/.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py:250:
 PendingDeprecationWarning: Task.current_task() is deprecated, use 
asyncio.current_task() instead
    self.assertIsNone(asyncio.Task.current_task(loop=self.loop))

.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py::Test_AIO_Tasks::test_task_current_task_with_interleaving_tasks
  
/<<BUILDDIR>>/uvloop-0.11.3+ds1/.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py:253:
 PendingDeprecationWarning: Task.current_task() is deprecated, use 
asyncio.current_task() instead
    self.assertIsNone(asyncio.Task.current_task(loop=self.loop))
  
/<<BUILDDIR>>/uvloop-0.11.3+ds1/.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py:260:
 PendingDeprecationWarning: Task.current_task() is deprecated, use 
asyncio.current_task() instead
    self.assertTrue(asyncio.Task.current_task(loop=loop) is task1)
  
/<<BUILDDIR>>/uvloop-0.11.3+ds1/.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py:267:
 PendingDeprecationWarning: Task.current_task() is deprecated, use 
asyncio.current_task() instead
    self.assertTrue(asyncio.Task.current_task(loop=loop) is task2)
  
/<<BUILDDIR>>/uvloop-0.11.3+ds1/.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py:262:
 PendingDeprecationWarning: Task.current_task() is deprecated, use 
asyncio.current_task() instead
    self.assertTrue(asyncio.Task.current_task(loop=loop) is task1)
  
/<<BUILDDIR>>/uvloop-0.11.3+ds1/.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py:270:
 PendingDeprecationWarning: Task.current_task() is deprecated, use 
asyncio.current_task() instead
    self.assertTrue(asyncio.Task.current_task(loop=loop) is task2)
  
/<<BUILDDIR>>/uvloop-0.11.3+ds1/.pybuild/cpython3_3.7_uvloop/build/tests/test_tasks.py:277:
 PendingDeprecationWarning: Task.current_task() is deprecated, use 
asyncio.current_task() instead
    self.assertIsNone(asyncio.Task.current_task(loop=self.loop))

-- Docs: https://docs.pytest.org/en/latest/warnings.html
======= 16 failed, 401 passed, 14 skipped, 42 warnings in 41.28 seconds ========
E: pybuild pybuild:341: test: plugin distutils failed with: exit code=1: cd 
/<<BUILDDIR>>/uvloop-0.11.3+ds1/.pybuild/cpython3_3.7_uvloop/build; python3.7 
-m pytest -s tests --ignore=tests/test_pipes.py
dh_auto_test: pybuild --test --test-pytest -i python{version} -p 3.7 returned 
exit code 13
make: *** [debian/rules:14: build-arch] Error 25
dpkg-buildpackage: error: debian/rules build-arch subprocess returned exit 
status 2

--- End Message ---
--- Begin Message ---
Source: uvloop
Source-Version: 0.11.3+ds1-2

We believe that the bug you reported is fixed in the latest version of
uvloop, 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 [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Ondřej Nový <[email protected]> (supplier of updated uvloop 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 [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Fri, 02 Aug 2019 10:05:16 +0200
Source: uvloop
Architecture: source
Version: 0.11.3+ds1-2
Distribution: unstable
Urgency: medium
Maintainer: Piotr Ożarowski <[email protected]>
Changed-By: Ondřej Nový <[email protected]>
Closes: 925847
Changes:
 uvloop (0.11.3+ds1-2) unstable; urgency=medium
 .
   * Team upload.
   * Use debhelper-compat instead of debian/compat.
   * Bump Standards-Version to 4.4.0.
   * d/control: Remove ancient X-Python3-Version field.
   * d/patches/regen_ssl_crts.patch: Fix FTBFS with new OpenSSL.
     (Closes: #925847)
   * Bump debhelper compat level to 12.
Checksums-Sha1:
 ffceded3f116cc1045df6ed55d53afd4ce855fb9 2216 uvloop_0.11.3+ds1-2.dsc
 74645d4d47b8d8728bf663753a91eb40eecba340 11868 
uvloop_0.11.3+ds1-2.debian.tar.xz
 938f7aee68c1824ce90a4245b1f377c06621e3ee 7367 
uvloop_0.11.3+ds1-2_amd64.buildinfo
Checksums-Sha256:
 5e72de919f3f1d9fc085f3f2de68dabbd6fda92a1ea6a5d43693901c6e861b6d 2216 
uvloop_0.11.3+ds1-2.dsc
 58e9ebb2c1a5837121e6b8fc2a5d23cd3e21583ef78b7b04b1b2dfc9653afe6f 11868 
uvloop_0.11.3+ds1-2.debian.tar.xz
 dc491e938c1c5c0e4cec49955dbe447a1a6d0e17d5c442e405ec0c45fe441d6c 7367 
uvloop_0.11.3+ds1-2_amd64.buildinfo
Files:
 74df2c43854030967ce3fee897b32d2d 2216 python optional uvloop_0.11.3+ds1-2.dsc
 c458ebb83fa4b5ac17c6896ed63b6c93 11868 python optional 
uvloop_0.11.3+ds1-2.debian.tar.xz
 1126afd3842426ee85dc1ee256943473 7367 python optional 
uvloop_0.11.3+ds1-2_amd64.buildinfo

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

iQIzBAEBCgAdFiEEPZg8UuuFmAxGpWCQNXMSVZ0eBksFAl1D8iMACgkQNXMSVZ0e
BkthYg//XmDmZqLDoFUJ0/Ukjf/VZmQmB5XeSEGIJnICoYEjyeQvZfRyH8LjRVo6
X9dg02oxne9V7jf/B4GXlHKn6WmeBkzwRDHWTGq7pylNPdc6Vyrqv8MJ7OSNXRwb
btqHTUPjLkJxvQOcKrszgXLcs1tUj/X5v30zbeANZO6mcuiFLStulFu6zdNrKFR4
VBGF6JVRSMAl8r/ZLi3PlCpOkYcvTvs+4Pt2Y5Bu+9OiyikXuy+226gZQksRrSDI
cWK71vqpq70rysnHiIDCDvvTl8elRMfttOpMUwXIOIFoSCMpt3/PjOwVkPU6VZLp
GrXcoZcPq8B0y5PSSJFY9XNGLyizegL4csl5fQNlMe/kRfg2vhfDGnw5poBPK9ON
38SQwERvRAgJUjMxRUmfQRf9n3hH3FmQRNCuAWUPskP/axA70dT8nJHLotgVXea3
TZEkBC0SwKvKyEg1+PJISk6HgCVmXhZ9/Iy7hImzqjsWoqXISaaAtXK8DvdbKzvu
wkhFKKRWKtyDztsB9LAJhE5n5sD1gvLvLS/Lf+X45gXdwcCNDfZp7w5555wTCYk8
Z7FPay0EpXTBH2rwAYuLjHIfVWqTfpNzHPeE3Yt7aQJd4/K+p5eUNqcHNcJttPi3
ZCr+6M2oYrqlNNFxGW5o3QQIlPu/Aps0JNsPr2eLFWL69k6E5xI=
=Cn5L
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to