[PATCH] gnu: libgit2-1.8: Update to 1.8.1.

  • Done
  • quality assurance status badge
Details
2 participants
  • ashish.is
  • Ludovic Courtès
Owner
unassigned
Submitted by
ashish.is
Severity
normal
A
A
ashish.is wrote on 19 Jul 14:37 +0200
(address . guix-patches@gnu.org)(name . Ashish SHUKLA)(address . ashish.is@lostca.se)
cbf156348d49f8e988364b1f343a14c16f532e97.1721392652.git.ashish.is@lostca.se
From: Ashish SHUKLA <ashish.is@lostca.se>

* gnu/packages/version-control.scm (libgit2-1.8): Update to 1.8.1.
[source]: deps/http-parser does not exist so update the list
[arguments]: semantics of -DUSE_HTTP_PARSER has changed, so
update configure-flags to reflect the same

Change-Id: Ifd9694a93326f7c3d368bd354a5fadf4e4b93119
---
gnu/packages/version-control.scm | 20 ++++++++++++++++++--
1 file changed, 18 insertions(+), 2 deletions(-)

Toggle diff (42 lines)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 3267a541a1..813f0cfdd1 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -978,7 +978,7 @@ (define-public libgit2-1.7
(define-public libgit2-1.8
(package
(inherit libgit2-1.7)
- (version "1.8.0")
+ (version "1.8.1")
(source (origin
(inherit (package-source libgit2-1.7))
(uri (git-reference
@@ -987,7 +987,23 @@ (define-public libgit2-1.8
(file-name (git-file-name "libgit2" version))
(sha256
(base32
- "0f0vqml6fp94z07xkpim2sdj2xvpxnsrwbm1q1dibx4vqjd7mh3q"))))))
+ "1mh55804cvxl2cyl4clinajzgfn3zmlhacnv1pdvdj4w6z2w4si7"))
+ (snippet
+ '(begin
+ (for-each delete-file-recursively
+ '("deps/chromium-zlib"
+ "deps/llhttp"
+ "deps/ntlmclient"
+ "deps/pcre"
+ "deps/winhttp"
+ "deps/zlib"))))))
+ (arguments (substitute-keyword-arguments (package-arguments libgit2-1.7)
+ ((#:configure-flags flags #~(list))
+ #~(map (lambda (arg)
+ (if (string= "-DUSE_HTTP_PARSER=system" arg)
+ "-DUSE_HTTP_PARSER=http-parser"
+ arg))
+ #$flags))))))
(define-public libgit2-1.6
(package

base-commit: 1aa8dfaeec3c6e4e587aadf7440246f7c5c04b9f
--
2.45.2
L
L
Ludovic Courtès wrote on 19 Aug 12:34 +0200
(address . ashish.is@lostca.se)(address . 72194-done@debbugs.gnu.org)
875xrwx0m2.fsf@gnu.org
ashish.is@lostca.se skribis:

Toggle quote (9 lines)
> From: Ashish SHUKLA <ashish.is@lostca.se>
>
> * gnu/packages/version-control.scm (libgit2-1.8): Update to 1.8.1.
> [source]: deps/http-parser does not exist so update the list
> [arguments]: semantics of -DUSE_HTTP_PARSER has changed, so
> update configure-flags to reflect the same
>
> Change-Id: Ifd9694a93326f7c3d368bd354a5fadf4e4b93119

Applied, thanks!
Closed
?
Your comment

Commenting via the web interface is currently disabled.

To comment on this conversation send an email to 72194@debbugs.gnu.org

To respond to this issue using the mumi CLI, first switch to it
mumi current 72194
Then, you may apply the latest patchset in this issue (with sign off)
mumi am -- -s
Or, compose a reply to this issue
mumi compose
Or, send patches to this issue
mumi send-email *.patch