Your message dated Thu, 09 Jun 2016 17:04:21 +0000
with message-id <[email protected]>
and subject line Bug#824379: fixed in python3.5 3.5.1-14
has caused the Debian Bug report #824379,
regarding python3.5.1-11 causes a 90 second delay to startup time on cinnamon 
desktop
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.)


-- 
824379: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=824379
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: python3.5

Version: 3.5.1-11


Package: python3.5
Version: 3.5.1-11
Severity: important

Dear Maintainer,

I have a fully up-to-date system running cinnamon desktop except for :

python3.5
python3.5-minimal
libpython3.5
libpython3.5-minimal
libpython3.5-stdlib


using current installed version 3.5.1-10 of all the above my startup time to
login screen,
as shown by the first line of systemd-analyze critical-chain is :
graphical.target @2.918s

If I upgrade them all to version 3.5.1-11 my system boots to a black screen
until eventually the login screen appears.
The first line of systemd-analyze critical-chain now shows : graphical.target
@1min 32.408s


I cannot see anything on the logs or journalctl that stands out as it being the
cause of the delay.

thanks

Peter



-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.5.1-towo.3-siduction-amd64 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages python3.5 depends on:
ii  libpython3.5-stdlib  3.5.1-11
ii  mime-support         3.59
ii  python3.5-minimal    3.5.1-11

python3.5 recommends no packages.

Versions of packages python3.5 suggests:
ii  binutils        2.26-8
pn  python3.5-doc   <none>
pn  python3.5-venv  <none>

-- no debconf information


--- End Message ---
--- Begin Message ---
Source: python3.5
Source-Version: 3.5.1-14

We believe that the bug you reported is fixed in the latest version of
python3.5, 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.
Matthias Klose <[email protected]> (supplier of updated python3.5 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: SHA256

Format: 1.8
Date: Thu, 09 Jun 2016 17:41:54 +0200
Source: python3.5
Binary: python3.5 python3.5-venv libpython3.5-stdlib python3.5-minimal 
libpython3.5-minimal libpython3.5 python3.5-examples python3.5-dev 
libpython3.5-dev libpython3.5-testsuite idle-python3.5 python3.5-doc 
python3.5-dbg libpython3.5-dbg
Architecture: source
Version: 3.5.1-14
Distribution: unstable
Urgency: medium
Maintainer: Matthias Klose <[email protected]>
Changed-By: Matthias Klose <[email protected]>
Description:
 idle-python3.5 - IDE for Python (v3.5) using Tkinter
 libpython3.5 - Shared Python runtime library (version 3.5)
 libpython3.5-dbg - Debug Build of the Python Interpreter (version 3.5)
 libpython3.5-dev - Header files and a static library for Python (v3.5)
 libpython3.5-minimal - Minimal subset of the Python language (version 3.5)
 libpython3.5-stdlib - Interactive high-level object-oriented language 
(standard library
 libpython3.5-testsuite - Testsuite for the Python standard library (v3.5)
 python3.5  - Interactive high-level object-oriented language (version 3.5)
 python3.5-dbg - Debug Build of the Python Interpreter (version 3.5)
 python3.5-dev - Header files and a static library for Python (v3.5)
 python3.5-doc - Documentation for the high-level object-oriented language 
Python
 python3.5-examples - Examples for the Python language (v3.5)
 python3.5-minimal - Minimal subset of the Python language (version 3.5)
 python3.5-venv - Interactive high-level object-oriented language (pyvenv 
binary, v
Closes: 824379
Changes:
 python3.5 (3.5.1-14) unstable; urgency=medium
 .
   * Update to 20160609 from the 3.5 branch.
     - A new version of typing.py provides several new classes and
       features: @overload outside stubs, Reversible, DefaultDict, Text,
       ContextManager, Type[], NewType(), TYPE_CHECKING, and numerous bug
       fixes (note that some of the new features are not yet implemented in
       mypy or other static analyzers).  Also classes for PEP 492
       (Awaitable, AsyncIterable, AsyncIterator) have been added (in fact
       they made it into 3.5.1 but were never mentioned).
     - Issue #25738: Stop http.server.BaseHTTPRequestHandler.send_error() from
       sending a message body for 205 Reset Content.  Also, don't send Content
       header fields in responses that don't have a body.
     - Issue #21313: Fix the "platform" module to tolerate when sys.version
       contains truncated build information.
     - Issue #26839: On Linux, :func:`os.urandom` now calls ``getrandom()`` with
       ``GRND_NONBLOCK`` to fall back on reading ``/dev/urandom`` if the urandom
       entropy pool is not initialized yet. Closes: #824379.
     - Issue #27164: In the zlib module, allow decompressing raw Deflate streams
       with a predefined zdict.
     - Issue #24291: Fix wsgiref.simple_server.WSGIRequestHandler to completely
       write data to the client.  Previously it could do partial writes and
       truncate data.  Also, wsgiref.handler.ServerHandler can now handle stdout
       doing partial writes, but this is deprecated.
     - Issue #26809: Add ``__all__`` to :mod:`string`.
     - Issue #26373: subprocess.Popen.communicate now correctly ignores
       BrokenPipeError when the child process dies before .communicate()
       is called in more/all circumstances.
     - Issue #24759: Make clear in idlelib.idle_test.__init__ that the directory
       is a private implementation of test.test_idle and tool for maintainers.
     - Issue #27196: Stop 'ThemeChanged' warnings when running IDLE tests.
       These persisted after other warnings were suppressed in #20567.
     - Issue #20567: Revise idle_test/README.txt with advice about avoiding
       tk warning messages from tests.  Apply advice to several IDLE tests.
     - Issue #26884: Fix linking extension modules for cross builds.
     - Issue #26014: Update 3.x packaging documentation:
       * "See also" links to the new docs are now provided in the legacy pages
       * links to setuptools documentation have been updated
     - Issue #27229: Fix the cross-compiling pgen rule for in-tree builds.
   * Don't run multiprocessing tests during the profiling build.
Checksums-Sha1:
 eb952aa73473632b3eb17674222da20e4a14e8e6 3233 python3.5_3.5.1-14.dsc
 9f42aa6213777400c271398b788a3b35b59a56ce 663984 
python3.5_3.5.1-14.debian.tar.xz
Checksums-Sha256:
 660d2174856cdf95358211eabe15c7d0439da4c06a9905d982e6e29fd75301ae 3233 
python3.5_3.5.1-14.dsc
 3871f070b3c21d15aa85b2901719e066b7f4fd59c9dd5781c311a86e133bf4dc 663984 
python3.5_3.5.1-14.debian.tar.xz
Files:
 3da5ca0d2f36030024437341b1724348 3233 python optional python3.5_3.5.1-14.dsc
 e6cd9d58d69f061931e6d633ffcb82a5 663984 python optional 
python3.5_3.5.1-14.debian.tar.xz

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAEBCAAGBQJXWZMpAAoJEL1+qmB3j6b1qnoP/jlu86va/KqI7GmHiHd9wHEw
rsMbscOw726lnsd5w3dz5SrnIgxLcr12u0wA5fjDpM7neenvIhpkNH4w5clnbju1
8xYTlsqF53sOkPKT26/00JuKg2uX8fDSgkrnpjBlosJpJXHMzuKhChJYJraisl3V
VWRci03Ph2nMPBOGRab6dQySkvKYFzPdorKz3t7fQafT3mh6fsl2ue3cAeC9/gMX
yX5tcPB5u7naVKsUtJX/eIT9T5mvVGuJ/K0KNN9LmvB51A56UfpuQHPqMwN5U9BQ
FBiscosxKnKNN0wMqT4xa1RqM8Q2A1jRL4QJ6/2EbAkYfa/0sf5zU640XdRY7E7E
RnfyD7GyhkzW7EBhL9lFSJDz8Zvz6wfKuqX2fbBKf203R8H5Z6ibRhfRoOJBGHOs
kypce48ANwbkOEwOMq+7nVHbizGbZgUj9xfd4SVUlhfZS2vpu/mTxbAQgQSBAM1k
w7wIuenwUN2K41dJ8qVs2ifsy9Bfrgm7OPPtimDe8vYCqBrDnE1qM1RbDDqi5j+e
x1sbTqaeFJcsI1m4WdB2raMtmwLd5+vkFCBYq1uHdN+uo0b6sD5vpHBinut/iltE
kjlIbw6aKajafB+CaHgvsh/5vDZ5loUsNEO98ix4okYGknN+3fQHCGdlN/Ey9RDR
Y55/vf11gYTNO2XCDCCv
=IpF0
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to