emacs-build-system.scm 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  1. ;;; GNU Guix --- Functional package management for GNU
  2. ;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
  3. ;;; Copyright © 2016 David Thompson <davet@gnu.org>
  4. ;;; Copyright © 2016 Alex Kost <alezost@gmail.com>
  5. ;;; Copyright © 2018, 2019 Maxim Cournoyer <maxim.cournoyer@gmail.com>
  6. ;;;
  7. ;;; This file is part of GNU Guix.
  8. ;;;
  9. ;;; GNU Guix is free software; you can redistribute it and/or modify it
  10. ;;; under the terms of the GNU General Public License as published by
  11. ;;; the Free Software Foundation; either version 3 of the License, or (at
  12. ;;; your option) any later version.
  13. ;;;
  14. ;;; GNU Guix is distributed in the hope that it will be useful, but
  15. ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
  16. ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. ;;; GNU General Public License for more details.
  18. ;;;
  19. ;;; You should have received a copy of the GNU General Public License
  20. ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
  21. (define-module (guix build emacs-build-system)
  22. #:use-module ((guix build gnu-build-system) #:prefix gnu:)
  23. #:use-module ((guix build utils) #:hide (delete))
  24. #:use-module (guix build emacs-utils)
  25. #:use-module (srfi srfi-1)
  26. #:use-module (srfi srfi-11)
  27. #:use-module (srfi srfi-26)
  28. #:use-module (ice-9 format)
  29. #:use-module (ice-9 ftw)
  30. #:use-module (ice-9 rdelim)
  31. #:use-module (ice-9 regex)
  32. #:use-module (ice-9 match)
  33. #:export (%standard-phases
  34. %default-include
  35. %default-exclude
  36. emacs-build
  37. elpa-directory))
  38. ;; Commentary:
  39. ;;
  40. ;; Builder-side code of the build procedure for ELPA Emacs packages.
  41. ;;
  42. ;; Code:
  43. ;;; The location in which Emacs looks for packages. Emacs Lisp code that is
  44. ;;; installed there directly will be found when that directory is added to
  45. ;;; EMACSLOADPATH. To avoid clashes between packages (particularly considering
  46. ;;; auxiliary files), we install them one directory level below, however.
  47. ;;; This indirection is handled by ‘expand-load-path’ during build and a
  48. ;;; profile hook otherwise.
  49. (define %install-dir "/share/emacs/site-lisp")
  50. ;; These are the default inclusion/exclusion regexps for the install phase.
  51. (define %default-include '("^[^/]*\\.el$" "^[^/]*\\.info$" "^doc/.*\\.info$"))
  52. (define %default-exclude '("^\\.dir-locals\\.el$" "^[^/]*tests?\\.el$"))
  53. (define gnu:unpack (assoc-ref gnu:%standard-phases 'unpack))
  54. (define (store-file->elisp-source-file file)
  55. "Convert FILE, a store file name for an Emacs Lisp source file, into a file
  56. name that has been stripped of the hash and version number."
  57. (let ((suffix ".el"))
  58. (let-values (((name version)
  59. (package-name->name+version
  60. (basename
  61. (strip-store-file-name file) suffix))))
  62. (string-append name suffix))))
  63. (define* (unpack #:key source #:allow-other-keys)
  64. "Unpack SOURCE into the build directory. SOURCE may be a compressed
  65. archive, a directory, or an Emacs Lisp file."
  66. (if (string-suffix? ".el" source)
  67. (begin
  68. (mkdir "source")
  69. (chdir "source")
  70. (copy-file source (store-file->elisp-source-file source))
  71. #t)
  72. (gnu:unpack #:source source)))
  73. (define* (expand-load-path #:key (prepend-source? #t) #:allow-other-keys)
  74. "Expand EMACSLOADPATH, so that inputs, whose code resides in subdirectories,
  75. are properly found.
  76. If @var{prepend-source?} is @code{#t} (the default), also add the current
  77. directory to EMACSLOADPATH in front of any other directories."
  78. (let* ((source-directory (getcwd))
  79. (emacs-load-path (string-split (getenv "EMACSLOADPATH") #\:))
  80. (emacs-load-path*
  81. (map
  82. (lambda (dir)
  83. (match (scandir dir (negate (cute member <> '("." ".."))))
  84. ((sub) (string-append dir "/" sub))
  85. (_ dir)))
  86. emacs-load-path))
  87. (emacs-load-path-value (string-append
  88. (string-join
  89. (if prepend-source?
  90. (cons source-directory emacs-load-path*)
  91. emacs-load-path*)
  92. ":")
  93. ":")))
  94. (setenv "EMACSLOADPATH" emacs-load-path-value)
  95. (when prepend-source?
  96. (format #t "source directory ~s prepended to the `EMACSLOADPATH' \
  97. environment variable\n" source-directory))
  98. (let ((diff (lset-difference string=? emacs-load-path* emacs-load-path)))
  99. (unless (null? diff)
  100. (format #t "expanded load paths for ~{~a~^, ~}\n"
  101. (map basename diff))))))
  102. (define* (build #:key outputs inputs #:allow-other-keys)
  103. "Compile .el files."
  104. (let* ((emacs (search-input-file inputs "/bin/emacs"))
  105. (out (assoc-ref outputs "out")))
  106. (setenv "SHELL" "sh")
  107. (parameterize ((%emacs emacs))
  108. (emacs-byte-compile-directory (elpa-directory out)))))
  109. (define* (patch-el-files #:key outputs #:allow-other-keys)
  110. "Substitute the absolute \"/bin/\" directory with the right location in the
  111. store in '.el' files."
  112. (let* ((out (assoc-ref outputs "out"))
  113. (elpa-name-ver (store-directory->elpa-name-version out))
  114. (el-dir (string-append out %install-dir "/" elpa-name-ver))
  115. (el-files (find-files (getcwd) "\\.el$")))
  116. (define (substitute-program-names)
  117. (substitute* el-files
  118. (("\"/bin/([^.]\\S*)\"" _ cmd-name)
  119. (let ((cmd (which cmd-name)))
  120. (unless cmd
  121. (error "patch-el-files: unable to locate " cmd-name))
  122. (string-append "\"" cmd "\"")))))
  123. (with-directory-excursion el-dir
  124. ;; Some old '.el' files (e.g., tex-buf.el in AUCTeX) are still
  125. ;; ISO-8859-1-encoded.
  126. (unless (false-if-exception (substitute-program-names))
  127. (with-fluids ((%default-port-encoding "ISO-8859-1"))
  128. (substitute-program-names))))
  129. #t))
  130. (define* (check #:key tests? (test-command '("make" "check"))
  131. (parallel-tests? #t) #:allow-other-keys)
  132. "Run the tests by invoking TEST-COMMAND.
  133. When TEST-COMMAND uses make and PARALLEL-TESTS is #t, the tests are run in
  134. parallel. PARALLEL-TESTS? is ignored when using a non-make TEST-COMMAND."
  135. (match-let (((test-program . args) test-command))
  136. (let ((using-make? (string=? test-program "make")))
  137. (if tests?
  138. (apply invoke test-program
  139. `(,@args
  140. ,@(if (and using-make? parallel-tests?)
  141. `("-j" ,(number->string (parallel-job-count)))
  142. '())))
  143. (begin
  144. (format #t "test suite not run~%")
  145. #t)))))
  146. (define* (install #:key outputs
  147. (include %default-include)
  148. (exclude %default-exclude)
  149. #:allow-other-keys)
  150. "Install the package contents."
  151. (define source (getcwd))
  152. (define* (install-file? file stat #:key verbose?)
  153. (let* ((stripped-file (string-trim
  154. (string-drop file (string-length source)) #\/)))
  155. (define (match-stripped-file action regex)
  156. (let ((result (string-match regex stripped-file)))
  157. (when (and result verbose?)
  158. (format #t "info: ~A ~A as it matches \"~A\"\n"
  159. stripped-file action regex))
  160. result))
  161. (when verbose?
  162. (format #t "info: considering installing ~A\n" stripped-file))
  163. (and (any (cut match-stripped-file "included" <>) include)
  164. (not (any (cut match-stripped-file "excluded" <>) exclude)))))
  165. (let* ((out (assoc-ref outputs "out"))
  166. (el-dir (elpa-directory out))
  167. (files-to-install (find-files source install-file?)))
  168. (cond
  169. ((not (null? files-to-install))
  170. (for-each
  171. (lambda (file)
  172. (let* ((stripped-file (string-drop file (string-length source)))
  173. (target-file (string-append el-dir stripped-file)))
  174. (format #t "`~a' -> `~a'~%" file target-file)
  175. (install-file file (dirname target-file))))
  176. files-to-install)
  177. #t)
  178. (else
  179. (format #t "error: No files found to install.\n")
  180. (find-files source (lambda (file stat)
  181. (install-file? file stat #:verbose? #t)))
  182. #f))))
  183. (define* (move-doc #:key outputs #:allow-other-keys)
  184. "Move info files from the ELPA package directory to the info directory."
  185. (let* ((out (assoc-ref outputs "out"))
  186. (site-lisp (string-append out %install-dir))
  187. (info-dir (string-append out "/share/info/"))
  188. (info-files (find-files site-lisp "\\.info$")))
  189. (unless (null? info-files)
  190. (mkdir-p info-dir)
  191. (with-directory-excursion site-lisp
  192. (when (file-exists? "dir") (delete-file "dir"))
  193. (for-each (lambda (f)
  194. (copy-file f (string-append info-dir "/" (basename f)))
  195. (delete-file f))
  196. info-files)))
  197. #t))
  198. (define* (make-autoloads #:key outputs inputs #:allow-other-keys)
  199. "Generate the autoloads file."
  200. (let* ((emacs (search-input-file inputs "/bin/emacs"))
  201. (out (assoc-ref outputs "out"))
  202. (elpa-name-ver (store-directory->elpa-name-version out))
  203. (elpa-name (package-name->name+version elpa-name-ver))
  204. (el-dir (elpa-directory out)))
  205. (parameterize ((%emacs emacs))
  206. (emacs-generate-autoloads elpa-name el-dir))))
  207. (define* (enable-autoloads-compilation #:key outputs #:allow-other-keys)
  208. "Remove the NO-BYTE-COMPILATION local variable embedded in the generated
  209. autoload files."
  210. (let* ((out (assoc-ref outputs "out"))
  211. (autoloads (find-files out "-autoloads.el$")))
  212. (substitute* autoloads
  213. ((";; no-byte-compile.*") ""))
  214. #t))
  215. (define* (validate-compiled-autoloads #:key outputs #:allow-other-keys)
  216. "Verify whether the byte compiled autoloads load fine."
  217. (let* ((out (assoc-ref outputs "out"))
  218. (autoloads (find-files out "-autoloads.elc$")))
  219. (emacs-batch-eval (format #f "(mapc #'load '~s)" autoloads))))
  220. (define (emacs-package? name)
  221. "Check if NAME correspond to the name of an Emacs package."
  222. (string-prefix? "emacs-" name))
  223. (define (package-name-version->elpa-name-version name-ver)
  224. "Convert the Guix package NAME-VER to the corresponding ELPA name-version
  225. format. Essentially drop the prefix used in Guix."
  226. (if (emacs-package? name-ver) ; checks for "emacs-" prefix
  227. (string-drop name-ver (string-length "emacs-"))
  228. name-ver))
  229. (define (store-directory->elpa-name-version store-dir)
  230. "Given a store directory STORE-DIR return the part of the basename after the
  231. second hyphen. This corresponds to 'name-version' as used in ELPA packages."
  232. ((compose package-name-version->elpa-name-version
  233. strip-store-file-name)
  234. store-dir))
  235. (define (elpa-directory store-dir)
  236. "Given the store directory STORE-DIR return the absolute install directory
  237. for libraries following the ELPA convention."
  238. (string-append store-dir %install-dir "/"
  239. (store-directory->elpa-name-version store-dir)))
  240. (define %standard-phases
  241. (modify-phases gnu:%standard-phases
  242. (replace 'unpack unpack)
  243. (add-after 'unpack 'expand-load-path expand-load-path)
  244. (delete 'bootstrap)
  245. (delete 'configure)
  246. (delete 'build)
  247. (replace 'check check)
  248. (replace 'install install)
  249. (add-after 'install 'make-autoloads make-autoloads)
  250. (add-after 'make-autoloads 'enable-autoloads-compilation
  251. enable-autoloads-compilation)
  252. (add-after 'enable-autoloads-compilation 'patch-el-files patch-el-files)
  253. ;; The .el files are byte compiled directly in the store.
  254. (add-after 'patch-el-files 'build build)
  255. (add-after 'build 'validate-compiled-autoloads validate-compiled-autoloads)
  256. (add-after 'validate-compiled-autoloads 'move-doc move-doc)))
  257. (define* (emacs-build #:key inputs (phases %standard-phases)
  258. #:allow-other-keys #:rest args)
  259. "Build the given Emacs package, applying all of PHASES in order."
  260. (apply gnu:gnu-build
  261. #:inputs inputs #:phases phases
  262. args))
  263. ;;; emacs-build-system.scm ends here