From d3832de763777759eb1f56e20731cb39da4c7b5b Mon Sep 17 00:00:00 2001 From: Ashish SHUKLA Date: Fri, 19 Jul 2024 14:37:32 +0200 Subject: gnu: libgit2-1.8: Update to 1.8.1. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 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 Signed-off-by: Ludovic Courtès --- gnu/packages/version-control.scm | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) (limited to 'gnu/packages/version-control.scm') diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index a295974d4e..dae8770a27 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -1025,7 +1025,7 @@ write native speed custom Git applications in any language with bindings.") (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 @@ -1034,7 +1034,23 @@ write native speed custom Git applications in any language with bindings.") (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 -- cgit v1.2.3