blob: 428589e3d2fc763b164eb531485f04e79ea11ddf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
;;; guix-forge --- Guix software forge meta-service
;;; Copyright © 2022 Arun Isaac <arunisaac@systemreboot.net>
;;;
;;; This file is part of guix-forge.
;;;
;;; guix-forge is free software: you can redistribute it and/or modify
;;; it under the terms of the GNU General Public License as published
;;; by the Free Software Foundation, either version 3 of the License,
;;; or (at your option) any later version.
;;;
;;; guix-forge is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;;; General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with guix-forge. If not, see
;;; <https://www.gnu.org/licenses/>.
(define-module (forge build git)
#:use-module (rnrs exceptions)
#:use-module (guix build utils)
#:use-module (guix store)
#:use-module (guix utils)
#:export (download-git-to-store
latest-git-checkout))
;;;
;;; Commentary:
;;;
;;; This module provides build-side code to download a git repository
;;; to the store.
;;;
;;; Code:
(define (hline)
"Print a horizontal line 50 '=' characters long."
(display (make-string 50 #\=))
(newline)
(force-output))
(define* (download-git-to-store store name url branch #:key show-commit?)
"Download BRANCH of git repository from URL to STORE under NAME and
return store path. git and certificates should be in the environment."
(call-with-temporary-directory
(lambda (directory)
(with-directory-excursion directory
(guard (condition ((invoke-error? condition)
(format (current-error-port)
"'~a~{ ~a~}' failed with exit code ~a~%"
(invoke-error-program condition)
(invoke-error-arguments condition)
(invoke-error-exit-status condition))
(exit #f)))
(invoke "git" "clone" "--quiet" "--depth" "1" "--branch" branch url "."))
(when show-commit?
(hline)
(invoke "git" "--no-pager" "log")
(hline))
(delete-file-recursively ".git"))
(add-to-store store name #t "sha256" directory))))
(define latest-git-checkout
(store-lift download-git-to-store))
|