emacs-build-system.scm 12 KB

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