me
/
guix
Archived
1
0
Fork 0

git: 'resolve-reference' handles 'git describe'-style commit IDs.

* guix/git.scm (resolve-reference): Rewrite tag-or-commit case to recognize
'git describe' style identifiers and resolve them as commits.
* doc/guix.texi (origin Reference): Mention it.
master
Marius Bakke 2021-09-06 00:21:51 +02:00
parent 47d3585e96
commit 1dc3825e99
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
2 changed files with 29 additions and 13 deletions

View File

@ -47,7 +47,7 @@ Copyright @copyright{} 2017, 2018 Carlo Zancanaro@*
Copyright @copyright{} 2017 Thomas Danckaert@* Copyright @copyright{} 2017 Thomas Danckaert@*
Copyright @copyright{} 2017 humanitiesNerd@* Copyright @copyright{} 2017 humanitiesNerd@*
Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@* Copyright @copyright{} 2017, 2021 Christine Lemmer-Webber@*
Copyright @copyright{} 2017, 2018, 2019, 2020 Marius Bakke@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021 Marius Bakke@*
Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@* Copyright @copyright{} 2017, 2019, 2020 Hartmut Goebel@*
Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@* Copyright @copyright{} 2017, 2019, 2020, 2021 Maxim Cournoyer@*
Copyright @copyright{} 2017, 2018, 2019, 2020, 2021 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017, 2018, 2019, 2020, 2021 Tobias Geerinckx-Rice@*
@ -7010,9 +7010,10 @@ retrieve.
The URL of the Git repository to clone. The URL of the Git repository to clone.
@item @code{commit} @item @code{commit}
This string denotes either the commit to fetch (a hexadecimal string, This string denotes either the commit to fetch (a hexadecimal string),
either the full SHA1 commit or a ``short'' commit string; the latter is or the tag to fetch. You can also use a ``short'' commit ID or a
not recommended) or the tag to fetch. @command{git describe} style identifier such as
@code{v1.0.1-10-g58d7909c97}.
@item @code{recursive?} (default: @code{#f}) @item @code{recursive?} (default: @code{#f})
This Boolean indicates whether to recursively fetch Git sub-modules. This Boolean indicates whether to recursively fetch Git sub-modules.

View File

@ -2,6 +2,7 @@
;;; Copyright © 2017, 2020 Mathieu Othacehe <m.othacehe@gmail.com> ;;; Copyright © 2017, 2020 Mathieu Othacehe <m.othacehe@gmail.com>
;;; Copyright © 2018, 2019, 2020, 2021 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2018, 2019, 2020, 2021 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2021 Kyle Meyer <kyle@kyleam.com> ;;; Copyright © 2021 Kyle Meyer <kyle@kyleam.com>
;;; Copyright © 2021 Marius Bakke <marius@gnu.org>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -223,15 +224,29 @@ corresponding Git object."
(object-lookup-prefix repository (string->oid commit) len) (object-lookup-prefix repository (string->oid commit) len)
(object-lookup repository (string->oid commit))))) (object-lookup repository (string->oid commit)))))
(('tag-or-commit . str) (('tag-or-commit . str)
(if (or (> (string-length str) 40) (cond ((and (string-contains str "-g")
(not (string-every char-set:hex-digit str))) (match (string-split str #\-)
(resolve `(tag . ,str)) ;definitely a tag ((version ... revision g+commit)
(catch 'git-error (if (and (> (string-length g+commit) 4)
(lambda () (string-every char-set:digit revision)
(resolve `(tag . ,str))) (string-every char-set:hex-digit
(lambda _ (string-drop g+commit 1)))
;; There's no such tag, so it must be a commit ID. (string-drop g+commit 1)
(resolve `(commit . ,str)))))) #f))
(_ #f)))
;; Looks like a 'git describe' style ID, like
;; v1.3.0-7-gaa34d4d28d.
=> (lambda (commit) (resolve `(commit . ,commit))))
((or (> (string-length str) 40)
(not (string-every char-set:hex-digit str)))
(resolve `(tag . ,str))) ;definitely a tag
(else
(catch 'git-error
(lambda ()
(resolve `(tag . ,str)))
(lambda _
;; There's no such tag, so it must be a commit ID.
(resolve `(commit . ,str)))))))
(('tag . tag) (('tag . tag)
(let ((oid (reference-name->oid repository (let ((oid (reference-name->oid repository
(string-append "refs/tags/" tag)))) (string-append "refs/tags/" tag))))