Unverified Commit 6563bd14 authored by K900's avatar K900 Committed by GitHub
Browse files

qt6: 6.9.2 -> 6.9.3 (#448500)

parents cf56c583 3480dceb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
WGET_ARGS=( https://download.qt.io/official_releases/qt/6.9/6.9.2/submodules/ -A '*.tar.xz' )
WGET_ARGS=( https://download.qt.io/official_releases/qt/6.9/6.9.3/submodules/ -A '*.tar.xz' )
+5 −0
Original line number Diff line number Diff line
@@ -37,6 +37,11 @@ qtModule {
    })
    # add version specific QML import path
    ./use-versioned-import-path.patch

    # Fix common crash
    # Manual backport of https://invent.kde.org/qt/qt/qtdeclarative/-/commit/b1ee7061ba77a7f5dc4148129bb2083f5c28e039
    # https://bugreports.qt.io/browse/QTBUG-140018
    ./stackview-crash.patch
  ];

  preConfigure =
+473 −0

File added.

Preview size limit exceeded, changes collapsed.

+2 −2
Original line number Diff line number Diff line
@@ -6,13 +6,13 @@

qtModule rec {
  pname = "qtmqtt";
  version = "6.9.2";
  version = "6.9.3";

  src = fetchFromGitHub {
    owner = "qt";
    repo = "qtmqtt";
    tag = "v${version}";
    hash = "sha256-/qz93JmMkJW3+lzT+QKvb/VL+xmbg5H8kKaXK+XN2nE=";
    hash = "sha256-xzh2cNPlGe0VlCdNN1u8vBi+Uq+U2oa2bskAJQTt0ik=";
  };

  propagatedBuildInputs = [ qtbase ];
+4 −6
Original line number Diff line number Diff line
@@ -113,13 +113,11 @@ qtModule {
    # Reproducibility QTBUG-136068
    ./gn-object-sorted.patch

    # Revert "Create EGLImage with eglCreateDRMImageMESA() for exporting dma_buf"
    # Mesa 25.2 dropped eglCreateDRMImageMESA, so this no longer works.
    # There are better ways to do this, but this is the easy fix for now.
    # Fix GPU rendering with Mesa 25.2
    # https://bugreports.qt.io/browse/QTBUG-139424
    (fetchpatch {
      url = "https://invent.kde.org/qt/qt/qtwebengine/-/commit/ddcd30454aa6338d898c9d20c8feb48f36632e16.diff";
      revert = true;
      hash = "sha256-ht7C3GIEaPtmMGLzQKOtMqE9sLKdqqYCgi/W6b430YU=";
      url = "https://invent.kde.org/qt/qt/qtwebengine/-/commit/3cc88e0f85113e38ccb1bfdadb7d150c2389b1bc.diff";
      hash = "sha256-5tKZ6b93VP4mKVc7jctrbW5Ktl+4Mjxw6bK1ajY62zQ=";
    })
  ];

Loading