mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: kconfigwidgets: Update to 6.3.0.
* gnu/packages/kde-frameworks.scm (kconfigwidgets): Update to 6.3.0. [inputs]: Remove qtbase-5 and qttools-5; add qtdeclarative and libxkbcommon. [propagated-inputs]: Remove kauth; add kcolorscheme. [native-inputs]: Remove qttools-5; add qttools. [arguments]: Set #:qtbase to qtbase; Adjust patch phase. Change-Id: Ie6777af00cad1cebe351ce1017d4b7e8a4a83bff
This commit is contained in:
parent
44f2739faa
commit
e1fa2e2f4e
1 changed files with 9 additions and 7 deletions
|
@ -2343,7 +2343,7 @@ (define-public kcmutils
|
|||
(define-public kconfigwidgets
|
||||
(package
|
||||
(name "kconfigwidgets")
|
||||
(version "5.114.0")
|
||||
(version "6.3.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
|
@ -2352,21 +2352,22 @@ (define-public kconfigwidgets
|
|||
name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"16layydkcwfbvzxqjzprkq8bbxifn0z0wm7mc9bzwrfxy761rjnj"))))
|
||||
"14104r6j38kjqmvx3d66xm4amdbdxl1450257l6zlf9wp1lndj5s"))))
|
||||
(build-system qt-build-system)
|
||||
(propagated-inputs
|
||||
(list kauth kcodecs kconfig kwidgetsaddons))
|
||||
(list kcodecs kconfig kcolorscheme kwidgetsaddons))
|
||||
(native-inputs
|
||||
(list extra-cmake-modules kdoctools qttools-5))
|
||||
(list extra-cmake-modules kdoctools qttools))
|
||||
(inputs
|
||||
(list kcoreaddons
|
||||
kguiaddons
|
||||
ki18n
|
||||
;; todo: PythonModuleGeneration
|
||||
qtbase-5
|
||||
qttools-5))
|
||||
qtdeclarative
|
||||
libxkbcommon))
|
||||
(arguments
|
||||
(list
|
||||
#:qtbase qtbase
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch
|
||||
|
@ -2380,7 +2381,8 @@ (define-public kconfigwidgets
|
|||
(when tests?
|
||||
(setenv "HOME"
|
||||
(getcwd))
|
||||
(invoke "ctest" "-E" "kstandardactiontest")))))))
|
||||
(invoke "ctest" "-E" "(kstandardactiontest|\
|
||||
klanguagenametest)")))))))
|
||||
(home-page "https://community.kde.org/Frameworks")
|
||||
(synopsis "Widgets for configuration dialogs")
|
||||
(description "KConfigWidgets provides easy-to-use classes to create
|
||||
|
|
Loading…
Reference in a new issue