guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/03: gnu: purpose: Fix build.


From: guix-commits
Subject: 02/03: gnu: purpose: Fix build.
Date: Tue, 29 Dec 2020 09:44:44 -0500 (EST)

efraim pushed a commit to branch staging
in repository guix.

commit 9680144d4d6d728b832eb73ff9d66c093d29ef06
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Dec 29 16:18:07 2020 +0200

    gnu: purpose: Fix build.
    
    * gnu/packages/kde-frameworks.scm (purpose)[arguments]: Add phase to
    force use of pre-Qt-5.15 logic.
---
 gnu/packages/kde-frameworks.scm | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 0127315..5482400 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -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>
@@ -3476,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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]