diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2025-02-04 14:55:36 +0800 |
---|---|---|
committer | Zheng Junjie <z572@z572.online> | 2025-07-06 19:00:11 +0800 |
commit | 4bdb9af2fd8f6a1dd3a12a824c2f47154e2bbcf4 (patch) | |
tree | 21e8f7b86b1d56fc8c904c1efde7916b86012d80 | |
parent | 214fffbf1481cf5bfde01d132b6e6dd0ce5fe92b (diff) |
gnu: python-shiboken-6: Update to 6.8.2.
* gnu/packages/qt.scm (python-shiboken-6): Update to 6.8.2.
(python-shiboken-2) [inputs]: Replace clang-toolchain with clang-toolchain-15.
Change-Id: I3696abb18f29904ccee90eb98175eac7edafb1dd
-rw-r--r-- | gnu/packages/qt.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index cdf13fd3eb..a95e9bdc8a 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -5297,7 +5297,8 @@ color-related widgets.") "0q3ky0fai3wr8kr1q82vdg5byhbn5sfdymmb554afpi72zyxcgkd")))) (build-system cmake-build-system) (inputs - (list clang-toolchain + ;; pyside-2 fails with clang>=16, pyside-6 needs llvm>=14. + (list clang-toolchain-15 libxml2 libxslt python-wrapper @@ -5357,7 +5358,7 @@ color-related widgets.") (package (inherit python-shiboken-2) (name "python-shiboken-6") - (version "6.7.2") + (version "6.8.2") (source (origin (method url-fetch) (uri (string-append "mirror://qt/QtForPython/pyside6/PySide6-" @@ -5365,7 +5366,7 @@ color-related widgets.") version ".tar.xz")) (sha256 (base32 - "1iv8wfc5sfx5xr4b3bhbaqagx8qidx5wl1kzvifsmjbqdq6hsars")))) + "1y0jq5wl2ffzgwz3k8x1w3img7m0ryqfjlr837iijh9z82mfj8l4")))) (build-system cmake-build-system) (inputs (modify-inputs (package-inputs python-shiboken-2) |