guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: emacs-php-mode: Update to 1.24.0.


From: guix-commits
Subject: branch master updated: gnu: emacs-php-mode: Update to 1.24.0.
Date: Tue, 09 Mar 2021 15:10:07 -0500

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

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new d019bce  gnu: emacs-php-mode: Update to 1.24.0.
d019bce is described below

commit d019bce1a3e174079ad0ed94e18a0080e632d36b
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Tue Mar 9 21:08:36 2021 +0100

    gnu: emacs-php-mode: Update to 1.24.0.
    
    * gnu/packages/emacs-xyz.scm (emacs-php-mode): Update to 1.24.0.
    [arguments]: Include "lisp/" directory, and add it to load path before 
byte-compiling.
---
 gnu/packages/emacs-xyz.scm | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index aeaedc2..b578550 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -12313,7 +12313,7 @@ using Imenu, and Compilation mode support for MSBuild, 
devenv and xbuild.")
 (define-public emacs-php-mode
   (package
     (name "emacs-php-mode")
-    (version "1.23.0")
+    (version "1.24.0")
     (source
      (origin
        (method git-fetch)
@@ -12322,8 +12322,17 @@ using Imenu, and Compilation mode support for MSBuild, 
devenv and xbuild.")
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0wnkcxg6djy4jvxhshiy1iw6b5cf79pjwjhfd1a060cavhfm4v5c"))))
+        (base32 "0bs9q62bd7885c39v7x1qz3w1fhpmpdgm72xwsk2yygw0ii425nn"))))
     (build-system emacs-build-system)
+    (arguments
+     `(#:include (cons "^lisp/" %default-include)
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'add-source-to-load-path 'add-lisp-dir-to-emacs-load-path
+           (lambda _
+             (setenv "EMACSLOADPATH"
+                     (string-append (getcwd) "/lisp:" (getenv 
"EMACSLOADPATH"))))))))
+    (propagated-inputs `(("emacs-projectile" ,emacs-projectile)))
     (home-page "https://github.com/ejmr/php-mode";)
     (synopsis "Major mode for editing PHP code")
     (description



reply via email to

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