guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: emacs-erc-image: Disable make-autoloads phas


From: guix-commits
Subject: branch master updated: gnu: emacs-erc-image: Disable make-autoloads phase.
Date: Wed, 29 Jul 2020 02:14:01 -0400

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

brettgilio pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new ad6dfdc  gnu: emacs-erc-image: Disable make-autoloads phase.
ad6dfdc is described below

commit ad6dfdcc6b89216f72821ff2e8085960f3f4b210
Author: Brett Gilio <brettg@gnu.org>
AuthorDate: Wed Jul 29 01:13:34 2020 -0500

    gnu: emacs-erc-image: Disable make-autoloads phase.
    
    * gnu/packages/emacs-xyz.scm (emacs-erc-image)[arguments]: Disable
    make-autoloads phase as it causes problematic behavior for the image module.
---
 gnu/packages/emacs-xyz.scm | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 44f8c44..f8080b6 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -14179,7 +14179,7 @@ arXiv, Google Scholar, Library of Congress, etc.
 
 (define-public emacs-erc-image
   (let ((commit "82fb3871f02e24b1e880770b9a3d187aab43d0f0")
-        (revision "1"))
+        (revision "3"))
     (package
       (name "emacs-erc-image")
       (version (git-version "0" revision commit))
@@ -14194,6 +14194,13 @@ arXiv, Google Scholar, Library of Congress, etc.
           (base32
            "1q8mkf612fb4fjp8h4kbr107wn083iqfdgv8f80pcmil8y33dw9i"))))
       (build-system emacs-build-system)
+      (arguments
+       `(#:phases (modify-phases %standard-phases
+                    ;; The package autoloader fails to provide
+                    ;; the image module when handled by Guix.
+                    ;; Disable this phase, and let the package
+                    ;; handle the `eval-after-load' procedure.
+                    (delete 'make-autoloads))))
       (home-page "https://github.com/kidd/erc-image.el";)
       (synopsis "Show inlined images (png/jpg/gif/svg) in ERC buffers")
       (description "This plugin subscribes to hooks 
@code{erc-insert-modify-hook}



reply via email to

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