git-download.scm 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. ;;; GNU Guix --- Functional package management for GNU
  2. ;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès <ludo@gnu.org>
  3. ;;; Copyright © 2017 Mathieu Lirzin <mthl@gnu.org>
  4. ;;; Copyright © 2017 Christopher Baines <mail@cbaines.net>
  5. ;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
  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 git-download)
  22. #:use-module (guix gexp)
  23. #:use-module (guix store)
  24. #:use-module (guix monads)
  25. #:use-module (guix records)
  26. #:use-module (guix packages)
  27. #:use-module (guix modules)
  28. #:autoload (guix build-system gnu) (standard-packages)
  29. #:autoload (git bindings) (libgit2-init!)
  30. #:autoload (git repository) (repository-open
  31. repository-close!
  32. repository-discover
  33. repository-head
  34. repository-working-directory)
  35. #:autoload (git submodule) (repository-submodules
  36. submodule-lookup
  37. submodule-path)
  38. #:autoload (git commit) (commit-lookup commit-tree)
  39. #:autoload (git reference) (reference-target)
  40. #:autoload (git tree) (tree-list)
  41. #:use-module (ice-9 match)
  42. #:use-module (ice-9 vlist)
  43. #:use-module (srfi srfi-1)
  44. #:use-module (srfi srfi-34)
  45. #:use-module (srfi srfi-35)
  46. #:export (git-reference
  47. git-reference?
  48. git-reference-url
  49. git-reference-commit
  50. git-reference-recursive?
  51. git-fetch
  52. git-version
  53. git-file-name
  54. git-predicate))
  55. ;;; Commentary:
  56. ;;;
  57. ;;; An <origin> method that fetches a specific commit from a Git repository.
  58. ;;; The repository URL and commit hash are specified with a <git-reference>
  59. ;;; object.
  60. ;;;
  61. ;;; Code:
  62. (define-record-type* <git-reference>
  63. git-reference make-git-reference
  64. git-reference?
  65. (url git-reference-url)
  66. (commit git-reference-commit)
  67. (recursive? git-reference-recursive? ; whether to recurse into sub-modules
  68. (default #f)))
  69. (define (git-package)
  70. "Return the default Git package."
  71. (let ((distro (resolve-interface '(gnu packages version-control))))
  72. (module-ref distro 'git-minimal)))
  73. (define* (git-fetch ref hash-algo hash
  74. #:optional name
  75. #:key (system (%current-system)) (guile (default-guile))
  76. (git (git-package)))
  77. "Return a fixed-output derivation that fetches REF, a <git-reference>
  78. object. The output is expected to have recursive hash HASH of type
  79. HASH-ALGO (a symbol). Use NAME as the file name, or a generic name if #f."
  80. (define inputs
  81. ;; When doing 'git clone --recursive', we need sed, grep, etc. to be
  82. ;; available so that 'git submodule' works.
  83. (if (git-reference-recursive? ref)
  84. (standard-packages)
  85. ;; The 'swh-download' procedure requires tar and gzip.
  86. `(("gzip" ,(module-ref (resolve-interface '(gnu packages compression))
  87. 'gzip))
  88. ("tar" ,(module-ref (resolve-interface '(gnu packages base))
  89. 'tar)))))
  90. (define guile-json
  91. (module-ref (resolve-interface '(gnu packages guile)) 'guile-json-4))
  92. (define guile-zlib
  93. (module-ref (resolve-interface '(gnu packages guile)) 'guile-zlib))
  94. (define gnutls
  95. (module-ref (resolve-interface '(gnu packages tls)) 'gnutls))
  96. (define glibc-locales
  97. ;; Note: pick the '-final' variant to avoid circular dependency on
  98. ;; i586-gnu, where 'glibc-utf8-locales' indirectly depends on Git.
  99. (module-ref (resolve-interface '(gnu packages commencement))
  100. 'glibc-utf8-locales-final))
  101. (define modules
  102. (delete '(guix config)
  103. (source-module-closure '((guix build git)
  104. (guix build utils)
  105. (guix build download-nar)
  106. (guix swh)))))
  107. (define build
  108. (with-imported-modules modules
  109. (with-extensions (list guile-json gnutls ;for (guix swh)
  110. guile-zlib)
  111. #~(begin
  112. (use-modules (guix build git)
  113. (guix build utils)
  114. (guix build download-nar)
  115. (guix swh)
  116. (ice-9 match))
  117. (define recursive?
  118. (call-with-input-string (getenv "git recursive?") read))
  119. ;; Let Guile interpret file names as UTF-8, otherwise
  120. ;; 'delete-file-recursively' might fail to delete all of
  121. ;; '.git'--see <https://issues.guix.gnu.org/54893>.
  122. (setenv "GUIX_LOCPATH"
  123. #+(file-append glibc-locales "/lib/locale"))
  124. (setlocale LC_ALL "en_US.utf8")
  125. ;; The 'git submodule' commands expects Coreutils, sed,
  126. ;; grep, etc. to be in $PATH.
  127. (set-path-environment-variable "PATH" '("bin")
  128. (match '#+inputs
  129. (((names dirs outputs ...) ...)
  130. dirs)))
  131. (setvbuf (current-output-port) 'line)
  132. (setvbuf (current-error-port) 'line)
  133. (or (git-fetch (getenv "git url") (getenv "git commit")
  134. #$output
  135. #:recursive? recursive?
  136. #:git-command (string-append #+git "/bin/git"))
  137. (download-nar #$output)
  138. ;; As a last resort, attempt to download from Software Heritage.
  139. ;; Disable X.509 certificate verification to avoid depending
  140. ;; on nss-certs--we're authenticating the checkout anyway.
  141. ;; XXX: Currently recursive checkouts are not supported.
  142. (and (not recursive?)
  143. (parameterize ((%verify-swh-certificate? #f))
  144. (format (current-error-port)
  145. "Trying to download from Software Heritage...~%")
  146. (swh-download (getenv "git url") (getenv "git commit")
  147. #$output))))))))
  148. (mlet %store-monad ((guile (package->derivation guile system)))
  149. (gexp->derivation (or name "git-checkout") build
  150. ;; Use environment variables and a fixed script name so
  151. ;; there's only one script in store for all the
  152. ;; downloads.
  153. #:script-name "git-download"
  154. #:env-vars
  155. `(("git url" . ,(git-reference-url ref))
  156. ("git commit" . ,(git-reference-commit ref))
  157. ("git recursive?" . ,(object->string
  158. (git-reference-recursive? ref))))
  159. #:leaked-env-vars '("http_proxy" "https_proxy"
  160. "LC_ALL" "LC_MESSAGES" "LANG"
  161. "COLUMNS")
  162. #:system system
  163. #:local-build? #t ;don't offload repo cloning
  164. #:hash-algo hash-algo
  165. #:hash hash
  166. #:recursive? #t
  167. #:guile-for-build guile)))
  168. (define (git-version version revision commit)
  169. "Return the version string for packages using git-download."
  170. ;; git-version is almost exclusively executed while modules are being loaded.
  171. ;; This makes any errors hide their backtrace. Avoid the mysterious error
  172. ;; "Value out of range 0 to N: 7" when the commit ID is too short, which
  173. ;; can happen, for example, when the user swapped the revision and commit
  174. ;; arguments by mistake.
  175. (when (< (string-length commit) 7)
  176. (raise
  177. (condition
  178. (&message (message "git-version: commit ID unexpectedly short")))))
  179. (string-append version "-" revision "." (string-take commit 7)))
  180. (define (git-file-name name version)
  181. "Return the file-name for packages using git-download."
  182. (string-append name "-" version "-checkout"))
  183. ;;;
  184. ;;; 'git-predicate'.
  185. ;;;
  186. (define* (git-file-list directory #:optional prefix #:key (recursive? #t))
  187. "Return the list of files checked in in the Git repository at DIRECTORY.
  188. The result is similar to that of the 'git ls-files' command, except that it
  189. also includes directories, not just regular files.
  190. When RECURSIVE? is true, also list files in submodules, similar to the 'git
  191. ls-files --recurse-submodules' command. This is enabled by default.
  192. The returned file names are relative to DIRECTORY, which is not necessarily
  193. the root of the checkout. If a PREFIX is provided, it is prepended to each
  194. file name."
  195. (let* (;; 'repository-working-directory' always returns a trailing "/",
  196. ;; so add one here to ease the comparisons below.
  197. (directory (string-append (canonicalize-path directory) "/"))
  198. (dot-git (repository-discover directory))
  199. (repository (repository-open dot-git))
  200. (workdir (repository-working-directory repository))
  201. (head (repository-head repository))
  202. (oid (reference-target head))
  203. (commit (commit-lookup repository oid))
  204. (tree (commit-tree commit))
  205. (files (tree-list tree))
  206. (submodules (if recursive?
  207. (map (lambda (name)
  208. (submodule-path
  209. (submodule-lookup repository name)))
  210. (repository-submodules repository))
  211. '()))
  212. (relative (and (not (string=? workdir directory))
  213. (string-drop directory (string-length workdir))))
  214. (included? (lambda (path)
  215. (or (not relative)
  216. (string-prefix? relative path))))
  217. (make-relative (lambda (path)
  218. (if relative
  219. (string-drop path (string-length relative))
  220. path)))
  221. (add-prefix (lambda (path)
  222. (if prefix
  223. (string-append prefix "/" path)
  224. path)))
  225. (rectify (compose add-prefix make-relative)))
  226. (repository-close! repository)
  227. (append
  228. (if (or relative prefix)
  229. (filter-map (lambda (file)
  230. (and (included? file)
  231. (rectify file)))
  232. files)
  233. files)
  234. (append-map (lambda (submodule)
  235. (if (included? submodule)
  236. (git-file-list
  237. (string-append workdir submodule)
  238. (rectify submodule))
  239. '()))
  240. submodules))))
  241. (define* (git-predicate directory #:key (recursive? #t))
  242. "Return a predicate that returns true if a file is part of the Git checkout
  243. living at DIRECTORY. If DIRECTORY does not lie within a Git checkout, and
  244. upon Git errors, return #f instead of a predicate.
  245. When RECURSIVE? is true, the predicate also returns true if a file is part of
  246. any Git submodule under DIRECTORY. This is enabled by default.
  247. The returned predicate takes two arguments FILE and STAT where FILE is an
  248. absolute file name and STAT is the result of 'lstat'."
  249. (libgit2-init!)
  250. (catch 'git-error
  251. (lambda ()
  252. (let* ((files (git-file-list directory #:recursive? recursive?))
  253. (inodes (fold (lambda (file result)
  254. (let* ((file (string-append directory "/" file))
  255. (stat (false-if-exception (lstat file))))
  256. ;; Ignore FILE if it has been deleted.
  257. (if stat
  258. (vhash-consv (stat:ino stat) (stat:dev stat)
  259. result)
  260. result)))
  261. vlist-null
  262. files)))
  263. (lambda (file stat)
  264. ;; Comparing file names is always tricky business so we rely on inode
  265. ;; numbers instead.
  266. (match (vhash-assv (stat:ino stat) inodes)
  267. ((_ . dev) (= dev (stat:dev stat)))
  268. (#f #f)))))
  269. (const #f)))
  270. ;;; git-download.scm ends here