mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: kconfig: Update to 6.16.0.
* gnu/packages/kde-frameworks.scm (kconfig): Update to 6.16.0. [native-inputs]: Add tzdata-for-tests. [arguments]<#:phases>: Adjust check-setup phase. Change-Id: I6d5a86626fa3ca432c073655a392b2d836552a57
This commit is contained in:
parent
6944c0aeb4
commit
8300fe56c9
1 changed files with 7 additions and 4 deletions
|
@ -744,7 +744,7 @@ KColorScheme.")
|
||||||
(define-public kconfig
|
(define-public kconfig
|
||||||
(package
|
(package
|
||||||
(name "kconfig")
|
(name "kconfig")
|
||||||
(version "6.13.0")
|
(version "6.16.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
|
@ -753,10 +753,10 @@ KColorScheme.")
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0icl7wclnpa499x8xlv0ilhvcvr61ra51fisrhplgpw8cacnriif"))))
|
"099m39k98ynrjvh6h8y4jasm7460nxkpj3v4phjrbvsz0a7wav5s"))))
|
||||||
(build-system qt-build-system)
|
(build-system qt-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list dbus extra-cmake-modules inetutils qttools))
|
(list dbus extra-cmake-modules inetutils qttools tzdata-for-tests))
|
||||||
(propagated-inputs (list qtdeclarative))
|
(propagated-inputs (list qtdeclarative))
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
|
@ -764,7 +764,7 @@ KColorScheme.")
|
||||||
#:phases
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-before 'check 'check-setup
|
(add-before 'check 'check-setup
|
||||||
(lambda* (#:key tests? #:allow-other-keys)
|
(lambda* (#:key inputs tests? #:allow-other-keys)
|
||||||
(when tests?
|
(when tests?
|
||||||
(with-output-to-file "autotests/BLACKLIST"
|
(with-output-to-file "autotests/BLACKLIST"
|
||||||
(lambda _
|
(lambda _
|
||||||
|
@ -776,6 +776,9 @@ KColorScheme.")
|
||||||
"testNotify"
|
"testNotify"
|
||||||
"testSignal"
|
"testSignal"
|
||||||
"testDataUpdated"))))
|
"testDataUpdated"))))
|
||||||
|
(setenv "TZDIR"
|
||||||
|
(search-input-directory inputs
|
||||||
|
"share/zoneinfo"))
|
||||||
(setenv "HOME" (getcwd))
|
(setenv "HOME" (getcwd))
|
||||||
(setenv "QT_QPA_PLATFORM" "offscreen")))))))
|
(setenv "QT_QPA_PLATFORM" "offscreen")))))))
|
||||||
(home-page "https://community.kde.org/Frameworks")
|
(home-page "https://community.kde.org/Frameworks")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue