This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 85be73bc3f gnu: dezyne: Fix build with gcc-14.
85be73bc3f is described below

commit 85be73bc3ff7f821bd98932bd3879f093c2b0648
Author: Janneke Nieuwenhuizen <[email protected]>
AuthorDate: Tue Jul 22 16:25:04 2025 +0200

    gnu: dezyne: Fix build with gcc-14.
    
    * gnu/packages/dezyne.scm (dezyne)[arguments]: Add phase 'fixup-gcc14.
    
    Change-Id: Idd2771f0bfa8154f3fa04b621c486c0caf6c6bed
---
 gnu/packages/dezyne.scm | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/dezyne.scm b/gnu/packages/dezyne.scm
index 052d7fa9c5..25429e6ab4 100644
--- a/gnu/packages/dezyne.scm
+++ b/gnu/packages/dezyne.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2022, 2023, 2024 Janneke Nieuwenhuizen <[email protected]>
+;;; Copyright © 2022-2025 Janneke Nieuwenhuizen <[email protected]>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -60,6 +60,11 @@
                   ,@%default-gnu-modules)
       #:phases
       #~(modify-phases %standard-phases
+          (add-after 'unpack 'fixup-gcc14
+            (lambda _
+              (substitute* "test/all/blocking_shell/c++/main.cc"
+                (("provides") "provide")
+                (("requires") "require"))))
           (add-before 'configure 'setenv
             (lambda _
               (setenv "GUILE_AUTO_COMPILE" "0")))

Reply via email to