GNU bug report logs -
#77873
[PATCH] gnu: git-repo: Update to 2.54.
Previous Next
Full log
Message #11 received at 77873 <at> debbugs.gnu.org (full text, mbox):
Hi,
Jakob Kirsch <jakob.kirsch <at> web.de> writes:
> * gnu/packages/android.scm (git-repo): Update to 2.54.
>
> Change-Id: I241ba0acb19c72272780500b593ea4d3b5b9ddf6
Please mention all the changes made in the commit log: phases
added/remove, use of gexps, etc.
> - (lambda* (#:key outputs #:allow-other-keys)
> - ;; Setting the REPO_MAIN variable to an absolute file name is
> - ;; enough to have _FindRepo return the store main.py file. The
> - ;; self update mechanism is activated with the call to _Init() in
> - ;; main(), so we bypass it.
> -
> - ;; Ticket requesting upstream to provide a mean to disable the
> - ;; self update mechanism:
> - ;; https://bugs.chromium.org/p/gerrit/issues/detail?id=12407.
Did this become unnecessary?
> + #~(modify-phases %standard-phases
> + (add-before 'build 'set-executable-paths
> + (lambda* (#:key inputs outputs #:allow-other-keys)
> + (begin
You can remove ‘begin’.
> + (substitute* '("repo" "git_command.py")
> + (("^GIT = 'git'")
> + (string-append "GIT = '"
> + #$git "/bin/git'")))
Instead, write: (search-input-file inputs "/bin/git").
> + (substitute* "git_config.py"
> + ((" command_base = \\['ssh',")
> + (string-append " command_base = ['"
> + #$openssh "/bin/ssh',"))) #t)))
Likewise.
Please also remove the trailing #t.
> + (wrap-program (string-append bin-dir "/repo")
> + '("REPO_SKIP_SELF_UPDATE" =
> + ("1"))
> + '("REPO_TRACE" =
> + ("0")))
> + #t))))))
Please remove the trailing #t as well.
Could you send an updated patch?
Thanks,
Ludo’.
This bug report was last modified 20 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.