mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
git: Factorize 'commit-id?' predicate.
* guix/git.scm (commit-id?): New procedure, copied from (guix swh). (resolve-reference): Use it instead of inline code. * guix/inferior.scm (channel-full-commit): Likewise.
This commit is contained in:
parent
7d9fd1d7b7
commit
602527ab97
2 changed files with 10 additions and 4 deletions
10
guix/git.scm
10
guix/git.scm
|
@ -62,6 +62,7 @@ (define-module (guix git)
|
|||
commit-difference
|
||||
commit-relation
|
||||
commit-descendant?
|
||||
commit-id?
|
||||
|
||||
remote-refs
|
||||
|
||||
|
@ -219,6 +220,12 @@ (define (url+commit->name url sha1)
|
|||
(last (string-split url #\/)) ".git" "")
|
||||
"-" (string-take sha1 7)))
|
||||
|
||||
(define (commit-id? str)
|
||||
"Return true if STR is likely a Git commit ID, false otherwise---e.g., if it
|
||||
is a tag name. This is based on a simple heuristic so use with care!"
|
||||
(and (= (string-length str) 40)
|
||||
(string-every char-set:hex-digit str)))
|
||||
|
||||
(define (resolve-reference repository ref)
|
||||
"Resolve the branch, commit or tag specified by REF, and return the
|
||||
corresponding Git object."
|
||||
|
@ -254,8 +261,7 @@ (define (resolve-reference repository ref)
|
|||
#f))
|
||||
(_ #f)))
|
||||
=> (lambda (commit) (resolve `(commit . ,commit))))
|
||||
((or (> (string-length str) 40)
|
||||
(not (string-every char-set:hex-digit str)))
|
||||
((not (commit-id? str))
|
||||
(resolve `(tag . ,str))) ;definitely a tag
|
||||
(else
|
||||
(catch 'git-error
|
||||
|
|
|
@ -40,7 +40,7 @@ (define-module (guix inferior)
|
|||
#:use-module (guix search-paths)
|
||||
#:use-module (guix profiles)
|
||||
#:use-module (guix channels)
|
||||
#:use-module ((guix git) #:select (update-cached-checkout))
|
||||
#:use-module ((guix git) #:select (update-cached-checkout commit-id?))
|
||||
#:use-module (guix monads)
|
||||
#:use-module (guix store)
|
||||
#:use-module (guix derivations)
|
||||
|
@ -833,7 +833,7 @@ (define (channel-full-commit channel)
|
|||
prefix, resolve it; and if 'commit' is unset, fetch CHANNEL's branch tip."
|
||||
(let ((commit (channel-commit channel))
|
||||
(branch (channel-branch channel)))
|
||||
(if (and commit (= (string-length commit) 40))
|
||||
(if (and commit (commit-id? commit))
|
||||
commit
|
||||
(let* ((ref (if commit `(commit . ,commit) `(branch . ,branch)))
|
||||
(cache commit relation
|
||||
|
|
Loading…
Reference in a new issue