emacs-build-system.scm 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  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 rdelim)
  29. #:use-module (ice-9 regex)
  30. #:use-module (ice-9 match)
  31. #:export (%standard-phases
  32. %default-include
  33. %default-exclude
  34. emacs-build))
  35. ;; Commentary:
  36. ;;
  37. ;; Builder-side code of the build procedure for ELPA Emacs packages.
  38. ;;
  39. ;; Code:
  40. ;;; All the packages are installed directly under site-lisp, which means that
  41. ;;; having that directory in the EMACSLOADPATH is enough to have them found by
  42. ;;; Emacs.
  43. (define %install-dir "/share/emacs/site-lisp")
  44. ;; These are the default inclusion/exclusion regexps for the install phase.
  45. (define %default-include '("^[^/]*\\.el$" "^[^/]*\\.info$" "^doc/.*\\.info$"))
  46. (define %default-exclude '("^\\.dir-locals\\.el$" "-pkg\\.el$"
  47. "^[^/]*tests?\\.el$"))
  48. (define gnu:unpack (assoc-ref gnu:%standard-phases 'unpack))
  49. (define (store-file->elisp-source-file file)
  50. "Convert FILE, a store file name for an Emacs Lisp source file, into a file
  51. name that has been stripped of the hash and version number."
  52. (let ((suffix ".el"))
  53. (let-values (((name version)
  54. (package-name->name+version
  55. (basename
  56. (strip-store-file-name file) suffix))))
  57. (string-append name suffix))))
  58. (define* (unpack #:key source #:allow-other-keys)
  59. "Unpack SOURCE into the build directory. SOURCE may be a compressed
  60. archive, a directory, or an Emacs Lisp file."
  61. (if (string-suffix? ".el" source)
  62. (begin
  63. (mkdir "source")
  64. (chdir "source")
  65. (copy-file source (store-file->elisp-source-file source))
  66. #t)
  67. (gnu:unpack #:source source)))
  68. (define* (add-source-to-load-path #:key dummy #:allow-other-keys)
  69. "Augment the EMACSLOADPATH environment variable with the source directory."
  70. (let* ((source-directory (getcwd))
  71. (emacs-load-path (string-split (getenv "EMACSLOADPATH") #\:))
  72. ;; XXX: Make sure the Emacs core libraries appear at the end of
  73. ;; EMACSLOADPATH, to avoid shadowing any other libraries depended
  74. ;; upon.
  75. (emacs-load-path-non-core (filter (cut string-contains <>
  76. "/share/emacs/site-lisp")
  77. emacs-load-path))
  78. (emacs-load-path-value (string-append
  79. (string-join (cons source-directory
  80. emacs-load-path-non-core)
  81. ":")
  82. ":")))
  83. (setenv "EMACSLOADPATH" emacs-load-path-value)
  84. (format #t "source directory ~s prepended to the `EMACSLOADPATH' \
  85. environment variable\n" source-directory)))
  86. (define* (build #:key outputs inputs #:allow-other-keys)
  87. "Compile .el files."
  88. (let* ((emacs (string-append (assoc-ref inputs "emacs") "/bin/emacs"))
  89. (out (assoc-ref outputs "out"))
  90. (site-lisp (string-append out %install-dir)))
  91. (setenv "SHELL" "sh")
  92. (parameterize ((%emacs emacs))
  93. (emacs-byte-compile-directory site-lisp))))
  94. (define* (patch-el-files #:key outputs #:allow-other-keys)
  95. "Substitute the absolute \"/bin/\" directory with the right location in the
  96. store in '.el' files."
  97. (let* ((out (assoc-ref outputs "out"))
  98. (site-lisp (string-append out %install-dir))
  99. (el-files (find-files (getcwd) "\\.el$")))
  100. (define (substitute-program-names)
  101. (substitute* el-files
  102. (("\"/bin/([^.]\\S*)\"" _ cmd-name)
  103. (let ((cmd (which cmd-name)))
  104. (unless cmd
  105. (error "patch-el-files: unable to locate " cmd-name))
  106. (string-append "\"" cmd "\"")))))
  107. (with-directory-excursion site-lisp
  108. ;; Some old '.el' files (e.g., tex-buf.el in AUCTeX) are still
  109. ;; ISO-8859-1-encoded.
  110. (unless (false-if-exception (substitute-program-names))
  111. (with-fluids ((%default-port-encoding "ISO-8859-1"))
  112. (substitute-program-names))))
  113. #t))
  114. (define* (check #:key tests? (test-command '("make" "check"))
  115. (parallel-tests? #t) #:allow-other-keys)
  116. "Run the tests by invoking TEST-COMMAND.
  117. When TEST-COMMAND uses make and PARALLEL-TESTS is #t, the tests are run in
  118. parallel. PARALLEL-TESTS? is ignored when using a non-make TEST-COMMAND."
  119. (match-let (((test-program . args) test-command))
  120. (let ((using-make? (string=? test-program "make")))
  121. (if tests?
  122. (apply invoke test-program
  123. `(,@args
  124. ,@(if (and using-make? parallel-tests?)
  125. `("-j" ,(number->string (parallel-job-count)))
  126. '())))
  127. (begin
  128. (format #t "test suite not run~%")
  129. #t)))))
  130. (define* (install #:key outputs
  131. (include %default-include)
  132. (exclude %default-exclude)
  133. #:allow-other-keys)
  134. "Install the package contents."
  135. (define source (getcwd))
  136. (define* (install-file? file stat #:key verbose?)
  137. (let* ((stripped-file (string-trim
  138. (string-drop file (string-length source)) #\/)))
  139. (define (match-stripped-file action regex)
  140. (let ((result (string-match regex stripped-file)))
  141. (when (and result verbose?)
  142. (format #t "info: ~A ~A as it matches \"~A\"\n"
  143. stripped-file action regex))
  144. result))
  145. (when verbose?
  146. (format #t "info: considering installing ~A\n" stripped-file))
  147. (and (any (cut match-stripped-file "included" <>) include)
  148. (not (any (cut match-stripped-file "excluded" <>) exclude)))))
  149. (let* ((out (assoc-ref outputs "out"))
  150. (site-lisp (string-append out %install-dir))
  151. (files-to-install (find-files source install-file?)))
  152. (cond
  153. ((not (null? files-to-install))
  154. (for-each
  155. (lambda (file)
  156. (let* ((stripped-file (string-drop file (string-length source)))
  157. (target-file (string-append site-lisp stripped-file)))
  158. (format #t "`~a' -> `~a'~%" file target-file)
  159. (install-file file (dirname target-file))))
  160. files-to-install)
  161. #t)
  162. (else
  163. (format #t "error: No files found to install.\n")
  164. (find-files source (lambda (file stat)
  165. (install-file? file stat #:verbose? #t)))
  166. #f))))
  167. (define* (move-doc #:key outputs #:allow-other-keys)
  168. "Move info files from the ELPA package directory to the info directory."
  169. (let* ((out (assoc-ref outputs "out"))
  170. (site-lisp (string-append out %install-dir))
  171. (info-dir (string-append out "/share/info/"))
  172. (info-files (find-files site-lisp "\\.info$")))
  173. (unless (null? info-files)
  174. (mkdir-p info-dir)
  175. (with-directory-excursion site-lisp
  176. (when (file-exists? "dir") (delete-file "dir"))
  177. (for-each (lambda (f)
  178. (copy-file f (string-append info-dir "/" (basename f)))
  179. (delete-file f))
  180. info-files)))
  181. #t))
  182. (define* (make-autoloads #:key outputs inputs #:allow-other-keys)
  183. "Generate the autoloads file."
  184. (let* ((emacs (string-append (assoc-ref inputs "emacs") "/bin/emacs"))
  185. (out (assoc-ref outputs "out"))
  186. (site-lisp (string-append out %install-dir))
  187. (elpa-name-ver (store-directory->elpa-name-version out))
  188. (elpa-name (package-name->name+version elpa-name-ver)))
  189. (parameterize ((%emacs emacs))
  190. (emacs-generate-autoloads elpa-name site-lisp))))
  191. (define* (enable-autoloads-compilation #:key outputs #:allow-other-keys)
  192. "Remove the NO-BYTE-COMPILATION local variable embedded in the generated
  193. autoload files."
  194. (let* ((out (assoc-ref outputs "out"))
  195. (autoloads (find-files out "-autoloads.el$")))
  196. (substitute* autoloads
  197. ((";; no-byte-compile.*") ""))
  198. #t))
  199. (define* (validate-compiled-autoloads #:key outputs #:allow-other-keys)
  200. "Verify whether the byte compiled autoloads load fine."
  201. (let* ((out (assoc-ref outputs "out"))
  202. (autoloads (find-files out "-autoloads.elc$")))
  203. (emacs-batch-eval (format #f "(mapc #'load '~s)" autoloads))))
  204. (define (emacs-package? name)
  205. "Check if NAME correspond to the name of an Emacs package."
  206. (string-prefix? "emacs-" name))
  207. (define (package-name-version->elpa-name-version name-ver)
  208. "Convert the Guix package NAME-VER to the corresponding ELPA name-version
  209. format. Essentially drop the prefix used in Guix."
  210. (if (emacs-package? name-ver) ; checks for "emacs-" prefix
  211. (string-drop name-ver (string-length "emacs-"))
  212. name-ver))
  213. (define (store-directory->elpa-name-version store-dir)
  214. "Given a store directory STORE-DIR return the part of the basename after the
  215. second hyphen. This corresponds to 'name-version' as used in ELPA packages."
  216. ((compose package-name-version->elpa-name-version
  217. strip-store-file-name)
  218. store-dir))
  219. (define %standard-phases
  220. (modify-phases gnu:%standard-phases
  221. (replace 'unpack unpack)
  222. (add-after 'unpack 'add-source-to-load-path add-source-to-load-path)
  223. (delete 'bootstrap)
  224. (delete 'configure)
  225. (delete 'build)
  226. (replace 'check check)
  227. (replace 'install install)
  228. (add-after 'install 'make-autoloads make-autoloads)
  229. (add-after 'make-autoloads 'enable-autoloads-compilation
  230. enable-autoloads-compilation)
  231. (add-after 'enable-autoloads-compilation 'patch-el-files patch-el-files)
  232. ;; The .el files are byte compiled directly in the store.
  233. (add-after 'patch-el-files 'build build)
  234. (add-after 'build 'validate-compiled-autoloads validate-compiled-autoloads)
  235. (add-after 'validate-compiled-autoloads 'move-doc move-doc)))
  236. (define* (emacs-build #:key inputs (phases %standard-phases)
  237. #:allow-other-keys #:rest args)
  238. "Build the given Emacs package, applying all of PHASES in order."
  239. (apply gnu:gnu-build
  240. #:inputs inputs #:phases phases
  241. args))
  242. ;;; emacs-build-system.scm ends here