diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-09-14 22:30:36 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-11-09 21:33:47 +0000 |
commit | 9399db35c2105157407fd4a59aeb0cacc58a0c54 (patch) | |
tree | 3ae9bc2eb169bd09baf87032b71ba690d53a447d /gnu | |
parent | a4ca819384e851b8de3f67351c2857a4466c95e2 (diff) | |
download | guix-9399db35c2105157407fd4a59aeb0cacc58a0c54.tar.gz guix-9399db35c2105157407fd4a59aeb0cacc58a0c54.zip |
gnu: go-github-com-go-git-go-billy: Rename variable.
* gnu/packages/golang.scm (go-github-com-go-git-go-billy): Rename
variable to go-github-com-go-git-go-billy-v5 to reflect go.mod import path.
* gnu/packages/golang-xyz.scm (go-github-com-go-git-go-git-fixtures-v4)
[propagated-inputs]: Remove go-github-com-go-git-go-billy; add
go-github-com-go-git-go-billy-v5.
* gnu/packages/version-control.scm (go-github-go-git): Likewise.
Change-Id: I49a776ba4db859bdebc1aa93cdf78e4c4903ed78
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 4 | ||||
-rw-r--r-- | gnu/packages/golang.scm | 4 | ||||
-rw-r--r-- | gnu/packages/version-control.scm | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 5857762a10..8e025a16fc 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -1844,7 +1844,7 @@ metrics to Graphite.") (origin (method git-fetch) (uri (git-reference - (url "https://github.com/cyphar/filepath-securejoin") + (url "https://github.com/cyphar/filepatv-securejoin") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -2948,7 +2948,7 @@ Differentiation between text and binary files}. (native-inputs (list go-github-com-stretchr-testify)) (propagated-inputs - (list go-github-com-go-git-go-billy + (list go-github-com-go-git-go-billy-v5 go-gopkg-in-check-v1)) (home-page "https://github.com/go-git/go-git-fixtures/") (synopsis "Fixtures used by @code{go-git}") diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 170dd44c00..7d6e3d2371 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -6056,9 +6056,9 @@ errors (warnings).") (description "Gcfg reads INI-style configuration files into Go structs.") (license license:bsd-3))) -(define-public go-github-com-go-git-go-billy +(define-public go-github-com-go-git-go-billy-v5 (package - (name "go-github-com-go-git-go-billy") + (name "go-github-com-go-git-go-billy-v5") (version "5.5.0") (source (origin (method git-fetch) diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index 057f4fa391..02782ff838 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -3957,7 +3957,7 @@ defects faster.") (list go-github-com-alcortesm-tgz go-github-com-emirpasic-gods go-github-com-go-git-gcfg - go-github-com-go-git-go-billy + go-github-com-go-git-go-billy-v5 go-github-com-go-git-go-git-fixtures-v4 go-github-com-imdario-mergo go-github-com-jbenet-go-context |