unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
blob a84b79dfe73c27a0a8f25119c6be99a1e85055f9 2394 bytes (raw)
name: build-aux/git-authenticate.scm 	 # note: path name is non-authoritative(*)

 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
66
67
68
69
70
71
72
73
 
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2019, 2020 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2020 Tobias Geerinckx-Rice <me@tobias.gr>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix 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.
;;;
;;; GNU Guix 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 GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

;;;
;;; Authenticate a range of commits.
;;;

(use-modules (git)
             (guix base16)
             (guix git)
             (guix git-authenticate)
             (guix channels)
             (guix i18n)
             ((guix openpgp)
              #:select (openpgp-public-key-fingerprint
                        openpgp-format-fingerprint))
             (guix progress)
             (srfi srfi-1)
             (srfi srfi-26)
             (ice-9 match)
             (ice-9 format)
             (ice-9 pretty-print))

\f

(define %commits-with-bad-signature
  ;; Commits with a known-bad signature.
  '("6a34f4ccc8a5d4a48e25ad3c9c512f8634928b91"))  ;2016-12-29

(define %unsigned-commits
  ;; Commits lacking a signature.
  '())

\f
;;;
;;; Entry point.
;;;

(define (git-authenticate args)
  (let loop ((args args))
    (match args
      ((_ start end)
       (authenticate-channel (car %default-channels) "." end
                             ;; Require users to have a local 'keyring'
                             ;; branch.
                             #:keyring-reference-prefix ""))
      ((command start)
       (let* ((repository (repository-open "."))
              (head       (repository-head repository))
              (end        (oid->string (reference-target head))))
         (repository-close! repository)
         (loop (list command start end))))
      (_
       (format (current-error-port)
               (G_ "Usage: git-authenticate START [END]

Authenticate commits START to END or the current head.\n"))))))

debug log:

solving a84b79dfe7 ...
found a84b79dfe7 in https://yhetil.org/guix-bugs/20200608215415.2871-9-ludo@gnu.org/
found a3d4b40ccf in https://git.savannah.gnu.org/cgit/guix.git
preparing index
index prepared:
100644 a3d4b40ccfc896ea0d7e119fbea36603d1e342c7	build-aux/git-authenticate.scm

applying [1/1] https://yhetil.org/guix-bugs/20200608215415.2871-9-ludo@gnu.org/
diff --git a/build-aux/git-authenticate.scm b/build-aux/git-authenticate.scm
index a3d4b40ccf..a84b79dfe7 100644

Checking patch build-aux/git-authenticate.scm...
Applied patch build-aux/git-authenticate.scm cleanly.

index at:
100644 a84b79dfe73c27a0a8f25119c6be99a1e85055f9	build-aux/git-authenticate.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).