guix_mirror_bot pushed a commit to branch emacs-team
in repository guix.
commit a168896bf404512f26ee5e1001c681b0dc1a3a27
Author: Morgan Smith <[email protected]>
AuthorDate: Thu Aug 27 16:54:05 2026 -0400
gnu: emacs-php-mode: Update to 1.28.0.
* gnu/packages/emacs-xyz.scm (emacs-php-mode): Update to 1.28.0.
[arguments]: Add #:lisp-directory. Drop #:phases.
Signed-off-by: Liliana Marie Prikler <[email protected]>
---
gnu/packages/emacs-xyz.scm | 17 ++++-------------
1 file changed, 4 insertions(+), 13 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 338105b4dd..7d702c4edd 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -25387,7 +25387,7 @@ in Emacs.")
(define-public emacs-php-mode
(package
(name "emacs-php-mode")
- (version "1.27.0")
+ (version "1.28.0")
(home-page "https://github.com/emacs-php/php-mode")
(source
(origin
@@ -25397,23 +25397,14 @@ in Emacs.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "0pkvqpzzy7wmbd99gvphfaz2ds79n5fcx4n7f772mgz8x5f9xq1b"))))
+ (base32 "05y6sm7nifxl2qd6qspcsdld0r0my3xgk9jyi38lxzmv1a18m5l9"))))
(build-system emacs-build-system)
(arguments
(list
+ #:lisp-directory "lisp"
#:test-command #~(list "emacs" "-Q" "--batch"
"-l" "../tests/php-mode-test.el"
- "-f" "ert-run-tests-batch-and-exit")
- #:phases
- #~(modify-phases %standard-phases
- (add-after 'unpack 'prepare-testing-bed
- (lambda _
- ;; This file is necessary for `php-project-root' test.
- (call-with-output-file "tests/project/1/.git"
- (const #t))))
- (add-after 'prepare-testing-bed 'enter-source-directory
- (lambda _
- (chdir "lisp"))))))
+ "-f" "ert-run-tests-batch-and-exit")))
(propagated-inputs (list emacs-projectile))
(synopsis "Major mode for editing PHP code")
(description