guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: emacs-xelb: Fix compilation error with xcb-proto@1.15.


From: guix-commits
Subject: 01/03: gnu: emacs-xelb: Fix compilation error with xcb-proto@1.15.
Date: Wed, 19 Apr 2023 17:45:46 -0400 (EDT)

civodul pushed a commit to branch core-updates
in repository guix.

commit 04a4fe2df2f1876a3b4ce5fb7405f4bd940feeb7
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Wed Apr 19 22:32:58 2023 +0200

    gnu: emacs-xelb: Fix compilation error with xcb-proto@1.15.
    
    * gnu/packages/patches/emacs-xelb-ignore-length-element.patch: New file.
    * gnu/local.mk (dist_patch_DATA): Add it.
    * gnu/packages/emacs-xyz.scm (emacs-xelb): Use it.
---
 gnu/local.mk                                          |  1 +
 gnu/packages/emacs-xyz.scm                            |  6 ++++--
 .../patches/emacs-xelb-ignore-length-element.patch    | 19 +++++++++++++++++++
 3 files changed, 24 insertions(+), 2 deletions(-)

diff --git a/gnu/local.mk b/gnu/local.mk
index daa83bcdf2..486adca929 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -1077,6 +1077,7 @@ dist_patch_DATA =                                         
\
   %D%/packages/patches/emacs-yasnippet-fix-tests.patch \
   %D%/packages/patches/emacs-kv-fix-tests.patch        \
   %D%/packages/patches/emacs-pgtk-super-key-fix.patch  \
+  %D%/packages/patches/emacs-xelb-ignore-length-element.patch  \
   %D%/packages/patches/enjarify-setup-py.patch                 \
   %D%/packages/patches/enlightenment-fix-setuid-path.patch     \
   %D%/packages/patches/erlang-man-path.patch                   \
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index c1748e7f36..d50cc00f7f 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -1,6 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2014 Taylan Ulrich Bayirli/Kammer <taylanbayirli@gmail.com>
-;;; Copyright © 2013-2022 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2013-2023 Ludovic Courtès <ludo@gnu.org>
 ;;; Copyright © 2014, 2015, 2016, 2017, 2018 Mark H Weaver <mhw@netris.org>
 ;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Alex Kost 
<alezost@gmail.com>
 ;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
@@ -17808,7 +17808,9 @@ conflicts.")
                                   version ".tar"))
               (sha256
                (base32
-                "1fp5mzl63sh0h3ws4l5p4qgvi7ny8a3fj6k4dhqa98xgw2bx03v7"))))
+                "1fp5mzl63sh0h3ws4l5p4qgvi7ny8a3fj6k4dhqa98xgw2bx03v7"))
+              (patches
+               (search-patches "emacs-xelb-ignore-length-element.patch"))))
     (build-system emacs-build-system)
     ;; The following functions and variables needed by emacs-xelb are
     ;; not included in emacs-minimal:
diff --git a/gnu/packages/patches/emacs-xelb-ignore-length-element.patch 
b/gnu/packages/patches/emacs-xelb-ignore-length-element.patch
new file mode 100644
index 0000000000..48c3e35155
--- /dev/null
+++ b/gnu/packages/patches/emacs-xelb-ignore-length-element.patch
@@ -0,0 +1,19 @@
+Work around build failure due to XCB "length" element.
+Patch from <https://sources.debian.org/patches/xelb/0.18-4/>.
+
+Author: Martin <debacle@debian.org>
+Bug: https://github.com/ch11ng/xelb/issues/28
+Bug-Debian: https://bugs.debian.org/1017294
+
+---
+--- a/el_client.el
++++ b/el_client.el
+@@ -519,7 +519,7 @@
+     (`list (xelb-parse-list node))
+     (`exprfield (xelb-parse-exprfield node))
+     (`switch (xelb-parse-switch node))
+-    ((or `comment `doc))                ;simply ignored
++    ((or `comment `doc `length))                ;simply ignored
+     (x (error "Unsupported structure content: <%s>" x))))
+ 
+ ;; The car of the result shall be renamed to prevent duplication of slot names



reply via email to

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