emacs-build-system: Fix 'package-name-version->elpa-name-version'.
Fixes a regression introduced inb7c7c03eb5
. * guix/build/emacs-build-system.scm (package-name-version->elpa-name-version): Remove unused 'name' binding. Do not abuse 'strip-store-file-name' to remove the "emacs-" prefix, which worked beforeb7c7c03eb5
but not after.
This commit is contained in:
parent
bd90127ad4
commit
a05c06720a
|
@ -138,10 +138,9 @@ DIRS."
|
|||
(define (package-name-version->elpa-name-version name-ver)
|
||||
"Convert the Guix package NAME-VER to the corresponding ELPA name-version
|
||||
format. Essnetially drop the prefix used in Guix."
|
||||
(let ((name (strip-store-file-name name-ver)))
|
||||
(if (emacs-package? name-ver)
|
||||
(strip-store-file-name name-ver)
|
||||
name-ver)))
|
||||
(if (emacs-package? name-ver) ; checks for "emacs-" prefix
|
||||
(string-drop name-ver (string-length "emacs-"))
|
||||
name-ver))
|
||||
|
||||
(define (store-directory->elpa-name-version store-dir)
|
||||
"Given a store directory STORE-DIR return the part of the basename after the
|
||||
|
|
Loading…
Reference in New Issue