[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#886400: marked as done (python3-pyqt5.qtwebengine: segfaults on simple test)



Your message dated Wed, 02 May 2018 18:20:56 +0000
with message-id <E1fDwN6-000H8l-Gh@fasolo.debian.org>
and subject line Bug#886400: fixed in qtbase-opensource-src 5.10.1+dfsg-6
has caused the Debian Bug report #886400,
regarding python3-pyqt5.qtwebengine: segfaults on simple test
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 owner@bugs.debian.org
immediately.)


-- 
886400: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=886400
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: python3-pyqt5.qtwebengine
Version: 5.9.2+dfsg-1
Severity: important

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

I encountered this when trying to run webmacs (a browser written in
python) on Debian.

The attached script segfaults, seemingly on any URL. Feel free to
adjust the severity up or down; I'm guessing the package works for
some people / applications, but this seems like pretty core
functionality to be broken.

- -- System Information:
Debian Release: buster/sid
  APT prefers testing
  APT policy: (900, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 4.14.0-2-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8), LANGUAGE=en_CA:en (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages python3-pyqt5.qtwebengine depends on:
ii  libc6                       2.25-5
ii  libqt5core5a                5.9.2+dfsg-6
ii  libqt5gui5                  5.9.2+dfsg-6
ii  libqt5webengine5            5.9.2+dfsg-2
ii  libqt5webenginecore5        5.9.2+dfsg-2
ii  libqt5webenginewidgets5     5.9.2+dfsg-2
ii  libqt5widgets5              5.9.2+dfsg-6
ii  libstdc++6                  7.2.0-18
ii  python3                     3.6.4-1
ii  python3-pyqt5.qtwebchannel  5.9.2+dfsg-1

python3-pyqt5.qtwebengine recommends no packages.

python3-pyqt5.qtwebengine suggests no packages.

- -- no debconf information

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

iQGzBAEBCAAdFiEE3VS2dnyDRXKVCQCp8gKXHaSnniwFAlpPZAQACgkQ8gKXHaSn
niwVqAv/eS5KaAeWk9ngJUi6AXWAG0dnntZhKwyi7mYfvD6faTtjQg1ig4F93aSN
BV+45qjwJqWsOdvyrV3rOODkBYEJe2eThjGjtwFPY17+8KLaN0oW369Y4MSxmN9u
cbhQMMmFYV6Ks0X0aGfZEuUlnolor2gkbdGpsycwInC6Tyg6oauUu1v8hbd5oVnu
N0gEZx/5hEj8YbLZoUxYrV7lyw4bxpcbdk5oYTLwJbgn7GYoCwtCYrte2GzetlYr
GuoQgTL5hZMowmz5mfWmp2PirWBnwIgbMP7MG8+hjKD+dl749fWh7bnFnkfkpU+f
rlSFEtmMnRpcVMFpwDESf61W8qcMX+c7SZ/jhN+0O2g3SUdywGiD1Nfu68yxp7SR
OMqlngtiK05fpS9DkXyr/h4uLYn56RRcU/78evtqxcGr9JQoM8coNeQBpskmcUJK
f8z1YAuCDVy5ag2DpEyvBV7pinEYtKcP8dR0zZ44RL320YW1i+iifGV3kgfQm5ZI
xccf0Ilv
=ZOUB
-----END PGP SIGNATURE-----
#!/usr/bin/env python3
# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et:

# Copyright 2014-2017 Florian Bruhin (The Compiler) <mail@qutebrowser.org>
#
# This file is part of qutebrowser.
#
# qutebrowser is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# qutebrowser is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with qutebrowser.  If not, see <http://www.gnu.org/licenses/>.

"""Very simple browser for testing purposes."""

import sys
import argparse

from PyQt5.QtCore import QUrl
from PyQt5.QtWidgets import QApplication
from PyQt5.QtWebEngineWidgets import QWebEngineView


def parse_args():
    """Parse commandline arguments."""
    parser = argparse.ArgumentParser()
    parser.add_argument('url', help='The URL to open')
    return parser.parse_known_args()[0]


if __name__ == '__main__':
    args = parse_args()
    app = QApplication(sys.argv)
    wv = QWebEngineView()

    wv.loadStarted.connect(lambda: print("Loading started"))
    wv.loadProgress.connect(lambda p: print("Loading progress: {}%".format(p)))
    wv.loadFinished.connect(lambda: print("Loading finished"))

    wv.load(QUrl.fromUserInput(args.url))
    wv.show()

    app.exec_()

--- End Message ---
--- Begin Message ---
Source: qtbase-opensource-src
Source-Version: 5.10.1+dfsg-6

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

Debian distribution maintenance software
pp.
Dmitry Shachnev <mitya57@debian.org> (supplier of updated qtbase-opensource-src 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 ftpmaster@ftp-master.debian.org)


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

Format: 1.8
Date: Wed, 02 May 2018 20:50:22 +0300
Source: qtbase-opensource-src
Binary: libqt5core5a libqt5gui5 qt5-gtk-platformtheme libqt5network5 libqt5opengl5 libqt5sql5 libqt5sql5-mysql libqt5sql5-odbc libqt5sql5-psql libqt5sql5-sqlite libqt5sql5-tds libqt5sql5-ibase libqt5xml5 libqt5dbus5 libqt5test5 libqt5concurrent5 libqt5widgets5 libqt5printsupport5 qtbase5-dev qtbase5-private-dev libqt5opengl5-dev qtbase5-dev-tools qt5-qmake-bin qt5-qmake qtbase5-examples qt5-default qtbase5-doc qtbase5-doc-html
Architecture: source
Version: 5.10.1+dfsg-6
Distribution: unstable
Urgency: medium
Maintainer: Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>
Changed-By: Dmitry Shachnev <mitya57@debian.org>
Description:
 libqt5concurrent5 - Qt 5 concurrent module
 libqt5core5a - Qt 5 core module
 libqt5dbus5 - Qt 5 D-Bus module
 libqt5gui5 - Qt 5 GUI module
 libqt5network5 - Qt 5 network module
 libqt5opengl5 - Qt 5 OpenGL module
 libqt5opengl5-dev - Qt 5 OpenGL library development files
 libqt5printsupport5 - Qt 5 print support module
 libqt5sql5 - Qt 5 SQL module
 libqt5sql5-ibase - Qt 5 Firebird database driver
 libqt5sql5-mysql - Qt 5 MySQL database driver
 libqt5sql5-odbc - Qt 5 ODBC database driver
 libqt5sql5-psql - Qt 5 PostgreSQL database driver
 libqt5sql5-sqlite - Qt 5 SQLite 3 database driver
 libqt5sql5-tds - Qt 5 FreeTDS database driver
 libqt5test5 - Qt 5 test module
 libqt5widgets5 - Qt 5 widgets module
 libqt5xml5 - Qt 5 XML module
 qt5-default - Qt 5 development defaults package
 qt5-gtk-platformtheme - Qt 5 GTK+ 3 platform theme
 qt5-qmake  - Qt 5 qmake Makefile generator tool
 qt5-qmake-bin - Qt 5 qmake Makefile generator tool — binary file
 qtbase5-dev - Qt 5 base development files
 qtbase5-dev-tools - Qt 5 base development programs
 qtbase5-doc - Qt 5 base documentation
 qtbase5-doc-html - Qt 5 base HTML documentation
 qtbase5-examples - Qt 5 base examples
 qtbase5-private-dev - Qt 5 base private development files
Closes: 884956 886400
Changes:
 qtbase-opensource-src (5.10.1+dfsg-6) unstable; urgency=medium
 .
   [ Simon Quigley ]
   * Add my name to Uploaders.
 .
   [ Dmitry Shachnev ]
   * Backport upstream patch to fix loading OpenGL library in the GLX
     integration plugin (closes: #886400).
   * Replace hidpi_scale_at_192.diff with a version that has been applied
     upstream (closes: #884956).
   * Update symbols files from buildds’ logs.
   * Bump qttools5-dev-tools (indep-)build-dependency to 5.10.1.
   * Bump Standards-Version to 4.1.4, no changes needed.
Checksums-Sha1:
 7585d67a67e89d0a86376405db5cef07a47993e7 5052 qtbase-opensource-src_5.10.1+dfsg-6.dsc
 cfc8167f1c3f06fcf63701a53c6b52d1ca31ccad 226028 qtbase-opensource-src_5.10.1+dfsg-6.debian.tar.xz
 6f057d0b4fa0930691a52dceb959c461e82572bc 9329 qtbase-opensource-src_5.10.1+dfsg-6_source.buildinfo
Checksums-Sha256:
 5a29ec693024b7cbca81cc5c0f59341177059a3b4ebba22ecd7c3916e04aba12 5052 qtbase-opensource-src_5.10.1+dfsg-6.dsc
 3b2c97994f332508b57464922d052f3939aa4828e517d6238b5be8e2eb17dc26 226028 qtbase-opensource-src_5.10.1+dfsg-6.debian.tar.xz
 1ab8d632fdcc94b5838f4b34dc13a60f2ae27b74da8c8df56149243a57e4a3be 9329 qtbase-opensource-src_5.10.1+dfsg-6_source.buildinfo
Files:
 add55df2cfd18be5055b0cac0c5030ab 5052 libs optional qtbase-opensource-src_5.10.1+dfsg-6.dsc
 8318f40d88951d6f9c399fb83463fede 226028 libs optional qtbase-opensource-src_5.10.1+dfsg-6.debian.tar.xz
 814dd9b03c95a76a27acb4d96441e1c5 9329 libs optional qtbase-opensource-src_5.10.1+dfsg-6_source.buildinfo

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

iQJHBAEBCgAxFiEEbEPcK+5mZmLK5jNU1v5xA2P4XdMFAlrp+/sTHG1pdHlhNTdA
ZGViaWFuLm9yZwAKCRDW/nEDY/hd09C5EACA2pCsFBCIKGi/Oat5Xmbt+qD7vrpQ
a+RsJUwPyxmduWxoERKXW3s4QHpGYJKeR691cvaeBFgpJtQWdjfW/IVM662M/Bby
PuKwiRJn7T6jOGdxH6tGgey7jGqUNAtTw8fKDx+phFx+FQfHZD6e20hPymRxx55X
sOIgbGOl4GAyiaXvjGhPMX2LKDEedbqlZsgWEeipXO8bJqhqa5YOhs97BE+WZenq
f+p8IWOGVpthlANaEdv8IxOA66lwRhBvF7LPDmjPGzybRQUVYIWkW711rGTnoRn+
6857E9Jg0Tpn8hRBpgprh8WKxtSD7YaT2IxwRDd9h9+FiHY1JY7tMkrDEppJdI0B
BosSt87vSz+PAAMVxdBGE/trEhCd70Qvy5CWjfl4fWSunYsuG14BRjb7cejTPDq5
W3dM3Fw1Dk431tbn4UAMrgqMLfAujvwNt8GxNHdgj0W9mf5OtJncFf5UbD8AovaS
zyR4xDhaMAjRBhsfIo7Hor8m7PbcUhUP3VWxCh1T1DkvguJ+O1nfn5FedX/vJipI
aiGkoO7yzUk9cfcID/KSTBeUvbFoJ9rnOUWuQErwwhal6t+6jaqp9mbHNR0rlGv7
mKJ7kjj8QJz/hAsHAY5H10vVbYwcMGG7L+C6eTOhlF6xzdiB+m3YMkjxKgdvrt6z
6FuQDi59XYqXvg==
=utd+
-----END PGP SIGNATURE-----

--- End Message ---

Reply to: