From c87757a9134b9940409ef78f838c8832c076a0a4 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 21 Jun 2018 16:35:17 +0200 Subject: [PATCH] Revert "Properly add QtQuickWidgets dependency" Looks like FreeBSD doesn't have QtQuickWidgets packaged at all, so let's do the same without requiring it... This reverts commit e5405f0ae940a62d7be756acb1ae9549108742a3. --- README.asciidoc | 1 - doc/changelog.asciidoc | 4 ---- qutebrowser/misc/earlyinit.py | 1 - 3 files changed, 6 deletions(-) diff --git a/README.asciidoc b/README.asciidoc index 89ee3a610..db401d49d 100644 --- a/README.asciidoc +++ b/README.asciidoc @@ -100,7 +100,6 @@ The following software and libraries are required to run qutebrowser: * http://qt.io/[Qt] 5.7.1 or newer (5.10 recommended) with the following modules: - QtCore / qtbase - QtQuick (part of qtbase in some distributions) - - QtQuickWidgets (part of qtbase/QtQuick in some distributions) - QtSQL (part of qtbase in some distributions) - QtOpenGL - QtWebEngine, or diff --git a/doc/changelog.asciidoc b/doc/changelog.asciidoc index d796933ed..f1eee3983 100644 --- a/doc/changelog.asciidoc +++ b/doc/changelog.asciidoc @@ -55,10 +55,6 @@ Added Changed ~~~~~~~ -- New dependency on the `PyQt5.QtQuickWidgets` module (which was already - accidentally introduced in v1.3.2). For most distributions, this is already - contained in the existing dependencies - only distributions which have - separate packages for PyQt submodules might be affected. - The Windows/macOS releases now bundle Qt 5.11.1 which is based on Chromium 65.0.3325.151 with security fixes up to Chromium 67.0.3396.87. - New short flags for commandline arguments: `-B` and `-T` for `--basedir` and diff --git a/qutebrowser/misc/earlyinit.py b/qutebrowser/misc/earlyinit.py index f30e17124..9649d27cc 100644 --- a/qutebrowser/misc/earlyinit.py +++ b/qutebrowser/misc/earlyinit.py @@ -233,7 +233,6 @@ def check_libraries(): 'PyQt5.QtQml': _missing_str("PyQt5.QtQml"), 'PyQt5.QtSql': _missing_str("PyQt5.QtSql"), 'PyQt5.QtOpenGL': _missing_str("PyQt5.QtOpenGL"), - 'PyQt5.QtQuickWidgets': _missing_str("PyQt5.QtQuickWidgets"), } _check_modules(modules)