GNU bug report logs -
#73993
[PATCH] gnu: git-sizer: Pin git version.
Previous Next
Reported by: Greg Hogan <code <at> greghogan.com>
Date: Thu, 24 Oct 2024 19:14:02 UTC
Severity: normal
Tags: patch
Done: Ludovic Courtès <ludo <at> gnu.org>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 73993 in the body.
You can then email your comments to 73993 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#73993
; Package
guix-patches
.
(Thu, 24 Oct 2024 19:14:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Greg Hogan <code <at> greghogan.com>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Thu, 24 Oct 2024 19:14:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
When I submitted this package the placement of git in native-inputs was
incorrect. This patch switches that dependency to the pinned version of
git in inputs and therefore hard-codes the path.
* gnu/packages/version-control.scm (git-sizer)
[arguments]<#:phases>: Use gexps and hard-code git path in 'fix-paths.
[propagated-inputs]: Remove git.
[native-inputs]: Add git-minimal/pinned.
Change-Id: Ide0c5a3df7c0cf0ecdaa5446b5d13970dae96560
---
gnu/packages/version-control.scm | 44 +++++++++++++++++---------------
1 file changed, 24 insertions(+), 20 deletions(-)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 6bd37fee82..78342fbe31 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -4364,26 +4364,30 @@ (define-public git-sizer
"1b4sl4djnfaxwph41y4bh9yal4bpd1nz4403ryp7nzna7h2x0zis"))))
(build-system go-build-system)
(arguments
- '(#:import-path "github.com/github/git-sizer"
- #:install-source? #f
- #:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'fix-paths
- (lambda* (#:key outputs #:allow-other-keys)
- (substitute* '("src/github.com/github/git-sizer/git_sizer_test.go")
- (("bin/git-sizer")
- (string-append (assoc-ref outputs "out")
- "/bin/git-sizer")))))
- (replace 'check
- (lambda* (#:key tests? import-path #:allow-other-keys)
- (when tests?
- (for-each (lambda (test)
- (invoke "go" "test" "-v" "-run" test import-path))
- ;; TestExec and TestSubmodule require a copy of the
- ;; Git repository.
- '("TestBomb" "TestFromSubdir" "TestRefgroups"
- "TestRefSelections" "TestTaggedTags"))))))))
- (native-inputs (list git))
+ (list
+ #:import-path "github.com/github/git-sizer"
+ #:install-source? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'fix-paths
+ (lambda _
+ (let ((git #$git-minimal/pinned))
+ (substitute* '("src/github.com/github/git-sizer/git_sizer_test.go")
+ (("bin/git-sizer")
+ (string-append #$output "/bin/git-sizer")))
+ (substitute* '("src/github.com/github/git-sizer/git/git.go")
+ (("gitBin, err := findGitBin\\(\\)")
+ (string-append "gitBin := \"" git "/bin/git\"\n\tvar err error"))))))
+ (replace 'check
+ (lambda* (#:key tests? import-path #:allow-other-keys)
+ (when tests?
+ (for-each (lambda (test)
+ (invoke "go" "test" "-v" "-run" test import-path))
+ ;; TestExec and TestSubmodule require a copy of the
+ ;; Git repository.
+ '("TestBomb" "TestFromSubdir" "TestRefgroups"
+ "TestRefSelections" "TestTaggedTags"))))))))
+ (inputs (list git-minimal/pinned))
(propagated-inputs
(list go-github-com-cli-safeexec
go-github-com-davecgh-go-spew
base-commit: ac19ae37b5000c224c4cd167b239cc3027d01b30
--
2.46.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#73993
; Package
guix-patches
.
(Fri, 29 Nov 2024 09:42:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 73993 <at> debbugs.gnu.org (full text, mbox):
Am Donnerstag, dem 24.10.2024 um 19:05 +0000 schrieb Greg Hogan:
> When I submitted this package the placement of git in native-inputs
> was incorrect. This patch switches that dependency to the pinned
> version of git in inputs and therefore hard-codes the path.
>
> * gnu/packages/version-control.scm (git-sizer)
> [arguments]<#:phases>: Use gexps and hard-code git path in 'fix-
> paths.
> [propagated-inputs]: Remove git.
> [native-inputs]: Add git-minimal/pinned.
The ChangeLog here is wrong. git is removed from native-inputs and
git-minimal/pinned added to inputs.
I would suggest making the change to G-Expressions in a separate patch
for easier review.
Cheers
Information forwarded
to
guix-patches <at> gnu.org
:
bug#73993
; Package
guix-patches
.
(Thu, 05 Dec 2024 21:06:01 GMT)
Full text and
rfc822 format available.
Message #11 received at 73993 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/version-control.scm (git-sizer)
[arguments]<#:phases>: Hard-code git path in 'fix-paths.
[propagated-inputs]: Remove git.
[inputs]: Add git-minimal/pinned.
Change-Id: Icc21f92e0261ff05f3411970e6f4792763a94f80
---
gnu/packages/version-control.scm | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 37ee819688..8c7d817523 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -4468,10 +4468,13 @@ (define-public git-sizer
#~(modify-phases %standard-phases
(add-after 'unpack 'fix-paths
(lambda _
- (let ((git #$git))
+ (let ((git #$git-minimal/pinned))
(substitute* '("src/github.com/github/git-sizer/git_sizer_test.go")
(("bin/git-sizer")
- (string-append #$output "/bin/git-sizer"))))))
+ (string-append #$output "/bin/git-sizer")))
+ (substitute* '("src/github.com/github/git-sizer/git/git.go")
+ (("gitBin, err := findGitBin\\(\\)")
+ (string-append "gitBin := \"" git "/bin/git\"\n\tvar err error"))))))
(replace 'check
(lambda* (#:key tests? import-path #:allow-other-keys)
(when tests?
@@ -4481,9 +4484,9 @@ (define-public git-sizer
;; Git repository.
'("TestBomb" "TestFromSubdir" "TestRefgroups"
"TestRefSelections" "TestTaggedTags"))))))))
+ (inputs (list git-minimal/pinned))
(propagated-inputs
- (list git
- go-github-com-cli-safeexec
+ (list go-github-com-cli-safeexec
go-github-com-davecgh-go-spew
go-github-com-pmezard-go-difflib
go-github-com-spf13-pflag
--
2.47.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#73993
; Package
guix-patches
.
(Thu, 05 Dec 2024 21:06:02 GMT)
Full text and
rfc822 format available.
Message #14 received at 73993 <at> debbugs.gnu.org (full text, mbox):
The git package can be updated more readily if we reduce the number of
dependent packages. As in this patchset, we can depend on the pinned
version of git if we hard-code the location of the git executable and
do not propagate the dependency, which could cause profile conflicts.
The first patch fixes the issue where git was neither hard-coded nor
propagated and only worked because git is typically available in a user
profile. This can be tested with "guix shell --container git-sizer".
Greg Hogan (3):
gnu: git-sizer: Propagate git.
gnu: git-sizer: Use gexps.
gnu: git-sizer: Pin git version.
gnu/packages/version-control.scm | 44 +++++++++++++++++---------------
1 file changed, 24 insertions(+), 20 deletions(-)
base-commit: 006679d1e6ca7acea0629b4f019c8cf89cde08be
--
2.47.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#73993
; Package
guix-patches
.
(Thu, 05 Dec 2024 21:06:03 GMT)
Full text and
rfc822 format available.
Message #17 received at 73993 <at> debbugs.gnu.org (full text, mbox):
Fix the current version of this package, which depends on git from PATH.
* gnu/packages/version-control.scm (git-sizer)
[native-inputs]: Move git ...
[propagated-inputs]: ... to here.
Change-Id: Iea70a16845e93f5c3740da5596e61cc2d7fd17b9
---
gnu/packages/version-control.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 289b981911..86e241ad27 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -4480,9 +4480,9 @@ (define-public git-sizer
;; Git repository.
'("TestBomb" "TestFromSubdir" "TestRefgroups"
"TestRefSelections" "TestTaggedTags"))))))))
- (native-inputs (list git))
(propagated-inputs
- (list go-github-com-cli-safeexec
+ (list git
+ go-github-com-cli-safeexec
go-github-com-davecgh-go-spew
go-github-com-pmezard-go-difflib
go-github-com-spf13-pflag
--
2.47.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#73993
; Package
guix-patches
.
(Thu, 05 Dec 2024 21:06:03 GMT)
Full text and
rfc822 format available.
Message #20 received at 73993 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/version-control.scm (git-sizer)
[arguments]<#:phases>: Use gexps.
Change-Id: Ic2c797c59b7f5f0d30b4b799eb293be4973f7e13
---
gnu/packages/version-control.scm | 39 ++++++++++++++++----------------
1 file changed, 20 insertions(+), 19 deletions(-)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 86e241ad27..37ee819688 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -4461,25 +4461,26 @@ (define-public git-sizer
"1b4sl4djnfaxwph41y4bh9yal4bpd1nz4403ryp7nzna7h2x0zis"))))
(build-system go-build-system)
(arguments
- '(#:import-path "github.com/github/git-sizer"
- #:install-source? #f
- #:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'fix-paths
- (lambda* (#:key outputs #:allow-other-keys)
- (substitute* '("src/github.com/github/git-sizer/git_sizer_test.go")
- (("bin/git-sizer")
- (string-append (assoc-ref outputs "out")
- "/bin/git-sizer")))))
- (replace 'check
- (lambda* (#:key tests? import-path #:allow-other-keys)
- (when tests?
- (for-each (lambda (test)
- (invoke "go" "test" "-v" "-run" test import-path))
- ;; TestExec and TestSubmodule require a copy of the
- ;; Git repository.
- '("TestBomb" "TestFromSubdir" "TestRefgroups"
- "TestRefSelections" "TestTaggedTags"))))))))
+ (list
+ #:import-path "github.com/github/git-sizer"
+ #:install-source? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'fix-paths
+ (lambda _
+ (let ((git #$git))
+ (substitute* '("src/github.com/github/git-sizer/git_sizer_test.go")
+ (("bin/git-sizer")
+ (string-append #$output "/bin/git-sizer"))))))
+ (replace 'check
+ (lambda* (#:key tests? import-path #:allow-other-keys)
+ (when tests?
+ (for-each (lambda (test)
+ (invoke "go" "test" "-v" "-run" test import-path))
+ ;; TestExec and TestSubmodule require a copy of the
+ ;; Git repository.
+ '("TestBomb" "TestFromSubdir" "TestRefgroups"
+ "TestRefSelections" "TestTaggedTags"))))))))
(propagated-inputs
(list git
go-github-com-cli-safeexec
--
2.47.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#73993
; Package
guix-patches
.
(Thu, 05 Dec 2024 21:09:01 GMT)
Full text and
rfc822 format available.
Message #23 received at 73993 <at> debbugs.gnu.org (full text, mbox):
On Fri, Nov 29, 2024 at 4:40 AM Liliana Marie Prikler
<liliana.prikler <at> gmail.com> wrote:
>
> Am Donnerstag, dem 24.10.2024 um 19:05 +0000 schrieb Greg Hogan:
> > When I submitted this package the placement of git in native-inputs
> > was incorrect. This patch switches that dependency to the pinned
> > version of git in inputs and therefore hard-codes the path.
> >
> > * gnu/packages/version-control.scm (git-sizer)
> > [arguments]<#:phases>: Use gexps and hard-code git path in 'fix-
> > paths.
> > [propagated-inputs]: Remove git.
> > [native-inputs]: Add git-minimal/pinned.
> The ChangeLog here is wrong. git is removed from native-inputs and
> git-minimal/pinned added to inputs.
>
> I would suggest making the change to G-Expressions in a separate patch
> for easier review.
>
> Cheers
Thanks for reviewing and catching the errors in the commit message. I
have split v2 into three commits because the current package is broken
as git needs to be either propagated or hard-coded. The git dependency
should have been in propagated-inputs, and is now in inputs.
Information forwarded
to
guix-patches <at> gnu.org
:
bug#73993
; Package
guix-patches
.
(Fri, 06 Dec 2024 21:20:02 GMT)
Full text and
rfc822 format available.
Message #26 received at 73993 <at> debbugs.gnu.org (full text, mbox):
Am Donnerstag, dem 05.12.2024 um 21:04 +0000 schrieb Greg Hogan:
> * gnu/packages/version-control.scm (git-sizer)
> [arguments]<#:phases>: Hard-code git path in 'fix-paths.
> [propagated-inputs]: Remove git.
> [inputs]: Add git-minimal/pinned.
>
> Change-Id: Icc21f92e0261ff05f3411970e6f4792763a94f80
> ---
General note: when someone comments on your patch, don't forget to CC
them in upcoming revisions :)
> gnu/packages/version-control.scm | 11 +++++++----
> 1 file changed, 7 insertions(+), 4 deletions(-)
>
> diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-
> control.scm
> index 37ee819688..8c7d817523 100644
> --- a/gnu/packages/version-control.scm
> +++ b/gnu/packages/version-control.scm
> @@ -4468,10 +4468,13 @@ (define-public git-sizer
> #~(modify-phases %standard-phases
> (add-after 'unpack 'fix-paths
> (lambda _
> - (let ((git #$git))
> + (let ((git #$git-minimal/pinned))
I'd rather avoid binding git per gexp here.
> (substitute* '("src/github.com/github/git-
> sizer/git_sizer_test.go")
> (("bin/git-sizer")
> - (string-append #$output "/bin/git-sizer"))))))
> + (string-append #$output "/bin/git-sizer")))
> + (substitute* '("src/github.com/github/git-
> sizer/git/git.go")
> + (("gitBin, err := findGitBin\\(\\)")
> + (string-append "gitBin := \"" git
> "/bin/git\"\n\tvar err error"))))))
You can use (search-input-file …) instead.
> (replace 'check
> (lambda* (#:key tests? import-path #:allow-other-keys)
> (when tests?
> @@ -4481,9 +4484,9 @@ (define-public git-sizer
> ;; Git repository.
> '("TestBomb" "TestFromSubdir"
> "TestRefgroups"
> "TestRefSelections"
> "TestTaggedTags"))))))))
> + (inputs (list git-minimal/pinned))
> (propagated-inputs
> - (list git
> - go-github-com-cli-safeexec
> + (list go-github-com-cli-safeexec
> go-github-com-davecgh-go-spew
> go-github-com-pmezard-go-difflib
> go-github-com-spf13-pflag
I don't see a good reason to move git first to propagated-inputs and
then to inputs. I would squash this and 1/3 into one patch that
doesn't necessarily rely on G-Expressions in the middle :)
Cheers
Information forwarded
to
guix-patches <at> gnu.org
:
bug#73993
; Package
guix-patches
.
(Mon, 09 Dec 2024 15:40:02 GMT)
Full text and
rfc822 format available.
Message #29 received at 73993 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/version-control.scm (git-sizer)
[arguments]<#:phases>: Hard-code git path in 'fix-paths.
[native-inputs]: Remove git.
[inputs]: Add git-minimal/pinned.
Change-Id: If6178a0e1c453ea47a1f70cd507639b5be2142b0
---
gnu/packages/version-control.scm | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 3339e79390..eb9dcfa198 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -4479,7 +4479,12 @@ (define-public git-sizer
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'fix-paths
- (lambda* (#:key outputs #:allow-other-keys)
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (substitute* '("src/github.com/github/git-sizer/git/git.go")
+ (("gitBin, err := findGitBin\\(\\)")
+ (string-append "gitBin := \""
+ (search-input-file inputs "bin/git")
+ "\"\n\tvar err error")))
(substitute* '("src/github.com/github/git-sizer/git_sizer_test.go")
(("bin/git-sizer")
(string-append (assoc-ref outputs "out")
@@ -4493,7 +4498,7 @@ (define-public git-sizer
;; Git repository.
'("TestBomb" "TestFromSubdir" "TestRefgroups"
"TestRefSelections" "TestTaggedTags"))))))))
- (native-inputs (list git))
+ (inputs (list git-minimal/pinned))
(propagated-inputs
(list go-github-com-cli-safeexec
go-github-com-davecgh-go-spew
base-commit: 9d09b0cf841fb657a1aec12e9bab68e00c2b493c
--
2.46.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#73993
; Package
guix-patches
.
(Wed, 18 Dec 2024 11:03:02 GMT)
Full text and
rfc822 format available.
Message #32 received at 73993 <at> debbugs.gnu.org (full text, mbox):
Greg Hogan <code <at> greghogan.com> skribis:
> Fix the current version of this package, which depends on git from PATH.
>
> * gnu/packages/version-control.scm (git-sizer)
> [native-inputs]: Move git ...
> [propagated-inputs]: ... to here.
>
> Change-Id: Iea70a16845e93f5c3740da5596e61cc2d7fd17b9
[...]
> (propagated-inputs
> - (list go-github-com-cli-safeexec
> + (list git
Instead of propagating, it would be nice to record the absolute file
name in the source.
Information forwarded
to
guix-patches <at> gnu.org
:
bug#73993
; Package
guix-patches
.
(Wed, 18 Dec 2024 11:04:01 GMT)
Full text and
rfc822 format available.
Message #35 received at 73993 <at> debbugs.gnu.org (full text, mbox):
Greg Hogan <code <at> greghogan.com> skribis:
> * gnu/packages/version-control.scm (git-sizer)
> [arguments]<#:phases>: Use gexps.
>
> Change-Id: Ic2c797c59b7f5f0d30b4b799eb293be4973f7e13
[...]
> + (add-after 'unpack 'fix-paths
> + (lambda _
> + (let ((git #$git))
This variable is unused. If it were used, it should instead be:
(let ((git #$(this-package-input "git")))
…)
Ludo’.
Information forwarded
to
guix-patches <at> gnu.org
:
bug#73993
; Package
guix-patches
.
(Thu, 26 Dec 2024 19:37:02 GMT)
Full text and
rfc822 format available.
Message #38 received at 73993 <at> debbugs.gnu.org (full text, mbox):
On Wed, Dec 18, 2024 at 6:02 AM Ludovic Courtès <ludo <at> gnu.org> wrote:
>
> Greg Hogan <code <at> greghogan.com> skribis:
>
> > Fix the current version of this package, which depends on git from PATH.
> >
> > * gnu/packages/version-control.scm (git-sizer)
> > [native-inputs]: Move git ...
> > [propagated-inputs]: ... to here.
> >
> > Change-Id: Iea70a16845e93f5c3740da5596e61cc2d7fd17b9
>
> [...]
>
> > (propagated-inputs
> > - (list go-github-com-cli-safeexec
> > + (list git
>
> Instead of propagating, it would be nice to record the absolute file
> name in the source.
Ludo',
Thanks for reviewing this. There was already a v3 which consolidated
the patches (I had separated the bugfix from the patch) and is greatly
simplified per Liliana's recommendations.
Greg
bug closed, send any further explanations to
73993 <at> debbugs.gnu.org and Greg Hogan <code <at> greghogan.com>
Request was from
Ludovic Courtès <ludo <at> gnu.org>
to
control <at> debbugs.gnu.org
.
(Thu, 26 Dec 2024 22:08:02 GMT)
Full text and
rfc822 format available.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Fri, 24 Jan 2025 12:24:14 GMT)
Full text and
rfc822 format available.
This bug report was last modified 206 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.