summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author宋文武 <iyzsong@member.fsf.org>2025-02-07 16:10:51 +0800
committerAndreas Enge <andreas@enge.fr>2025-07-18 20:17:41 +0200
commit0e6b607b833489ba806f5db13cf32e4408cd56c8 (patch)
tree0c5603b81b11710584f71ae6dce5640c37264434
parent56cca9c3f143a862a2b1a02ee4bdfe7e6ac3cf58 (diff)
gnu: python-pyqtwebengine-6: Update to 6.8.0.
* gnu/packages/qt.scm (python-pyqtwebengine-6): Update to 6.8.0. [source]: Add snippet. Change-Id: I0762235f4e064226716f63526ebeed38b2c69894
-rw-r--r--gnu/packages/qt.scm10
1 files changed, 8 insertions, 2 deletions
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index 7254db5ff2..5d224441d5 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -4479,13 +4479,19 @@ itself.")
(define-public python-pyqtwebengine-6
(package
(inherit python-pyqtwebengine)
- (version "6.7.0")
+ (version "6.8.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "PyQt6_WebEngine" version))
(sha256
- (base32 "00ahqmdgyfw21nhymarrskx723fakkkq2s4mvvspbqnrnsnwgvb8"))))
+ (base32 "1wiz5wn84wpb23lm8sphrw56df0ljyp5b3xiqa11i95n4ak5w134"))
+ (modules '((guix build utils)))
+ (snippet
+ ;; Fix missing include for QVariant.
+ '(substitute* "sip/QtWebEngineCore/qwebengineframe.sip"
+ (("#include <qwebengineframe\\.h>" all)
+ (string-append "#include <qvariant.h>\n" all))))))
(native-inputs (list python python-sip python-pyqt-builder
;; qtbase is required for qmake
qtbase))