guix: emacs-utils: Add emacs-header-parse.
* guix/build/emacs-utils.scm (emacs-header-parse): New procedure. * tests/build-emacs-utils.scm ("emacs-header-parse: fetch version", "emacs-header-parse: fetch keywords", "emacs-header-parse: fetch nonexistent author"): New tests. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
f8275916fc
commit
c3afbd05bf
2 changed files with 35 additions and 1 deletions
|
@ -38,6 +38,7 @@
|
||||||
|
|
||||||
emacs-generate-autoloads
|
emacs-generate-autoloads
|
||||||
emacs-byte-compile-directory
|
emacs-byte-compile-directory
|
||||||
|
emacs-header-parse
|
||||||
|
|
||||||
as-display
|
as-display
|
||||||
emacs-substitute-sexps
|
emacs-substitute-sexps
|
||||||
|
@ -114,6 +115,14 @@ true, evaluate using dynamic scoping."
|
||||||
(byte-recompile-directory (file-name-as-directory ,dir) 0 1))))
|
(byte-recompile-directory (file-name-as-directory ,dir) 0 1))))
|
||||||
(emacs-batch-eval expr)))
|
(emacs-batch-eval expr)))
|
||||||
|
|
||||||
|
(define (emacs-header-parse section file)
|
||||||
|
"Parse the header SECTION in FILE and return it as a string."
|
||||||
|
(emacs-batch-script
|
||||||
|
`(progn
|
||||||
|
(require 'lisp-mnt)
|
||||||
|
(find-file ,file)
|
||||||
|
(princ (lm-header ,section)))))
|
||||||
|
|
||||||
(define as-display ;syntactic keyword for 'emacs-substitute-sexps'
|
(define as-display ;syntactic keyword for 'emacs-substitute-sexps'
|
||||||
'(as display))
|
'(as display))
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
|
|
||||||
(test-begin "build-emacs-utils")
|
(test-begin "build-emacs-utils")
|
||||||
;; Only run the following tests if emacs is present.
|
;; Only run the following tests if emacs is present.
|
||||||
(test-skip (if (which "emacs") 0 2))
|
(test-skip (if (which "emacs") 0 5))
|
||||||
|
|
||||||
(test-equal "emacs-batch-script: print foo from emacs"
|
(test-equal "emacs-batch-script: print foo from emacs"
|
||||||
"foo"
|
"foo"
|
||||||
|
@ -40,4 +40,29 @@
|
||||||
"Lisp error: (wrong-type-argument numberp \"three\")")))
|
"Lisp error: (wrong-type-argument numberp \"three\")")))
|
||||||
(emacs-batch-script '(mapcar 'number-to-string (list 1 2 "three")))))
|
(emacs-batch-script '(mapcar 'number-to-string (list 1 2 "three")))))
|
||||||
|
|
||||||
|
(call-with-temporary-directory
|
||||||
|
(lambda (directory)
|
||||||
|
(let ((mock-elisp-file (string-append directory "/foo.el")))
|
||||||
|
(call-with-output-file mock-elisp-file
|
||||||
|
(lambda (port)
|
||||||
|
(display ";;; foo --- mock emacs package -*- lexical-binding: t -*-
|
||||||
|
|
||||||
|
;; Created: 4 Jun 2022
|
||||||
|
;; Keywords: lisp test
|
||||||
|
;; Version: 1.0.0
|
||||||
|
;;; Commentary:
|
||||||
|
;;; Code:
|
||||||
|
;;; foo.el ends here
|
||||||
|
"
|
||||||
|
port)))
|
||||||
|
(test-equal "emacs-header-parse: fetch version"
|
||||||
|
"1.0.0"
|
||||||
|
(emacs-header-parse "version" mock-elisp-file))
|
||||||
|
(test-equal "emacs-header-parse: fetch keywords"
|
||||||
|
"lisp test"
|
||||||
|
(emacs-header-parse "keywords" mock-elisp-file))
|
||||||
|
(test-equal "emacs-header-parse: fetch nonexistent author"
|
||||||
|
"nil"
|
||||||
|
(emacs-header-parse "author" mock-elisp-file)))))
|
||||||
|
|
||||||
(test-end "build-emacs-utils")
|
(test-end "build-emacs-utils")
|
||||||
|
|
Reference in a new issue