mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
Merge branch 'staging'
This commit is contained in:
commit
75b775e81b
55 changed files with 990 additions and 810 deletions
|
@ -1,6 +1,6 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
||||
;;; Copyright © 2016, 2019 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2016, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2016-2019 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
||||
;;; Copyright © 2016 David Craven <david@craven.ch>
|
||||
;;; Copyright © 2017 Thomas Danckaert <post@thomasdanckaert.be>
|
||||
|
@ -1088,15 +1088,11 @@ represented by a QPoint or a QSize.")
|
|||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'check 'start-xorg-server
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
;; The test suite requires a running X server.
|
||||
;; Xvfb doesn't have proper glx support and needs a pixeldepth
|
||||
;; of 24 bit to avoid "libGL error: failed to load driver: swrast"
|
||||
;; "Could not initialize GLX"
|
||||
(system (string-append (assoc-ref inputs "xorg-server")
|
||||
"/bin/Xvfb :1 -screen 0 640x480x24 &"))
|
||||
(setenv "DISPLAY" ":1")
|
||||
(add-after 'unpack 'adjust-tests
|
||||
(lambda _
|
||||
;; It is unclear why this test suddenly started failing.
|
||||
(substitute* "autotests/kcolumnresizertest.cpp"
|
||||
((".*QCOMPARE.*") ""))
|
||||
#t)))))
|
||||
(home-page "https://community.kde.org/Frameworks")
|
||||
(synopsis "Large set of desktop widgets")
|
||||
|
@ -3480,6 +3476,13 @@ script engines.")
|
|||
("qtdeclarative" ,qtdeclarative)))
|
||||
(arguments
|
||||
`(#:tests? #f ;; seem to require network; don't find QTQuick components
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'dont-use-qt515-logic
|
||||
(lambda _
|
||||
(substitute* "src/externalprocess/purposeprocess_main.cpp"
|
||||
((" 15") " 16"))
|
||||
#t)))
|
||||
#:configure-flags '("-DBUILD_TESTING=OFF"))) ; not run anyway
|
||||
(home-page "https://community.kde.org/Frameworks")
|
||||
(synopsis "Offers available actions for a specific purpose")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue