guix_mirror_bot pushed a commit to branch world-rebuild
in repository guix.

commit db808632b290f4c66eb54f0f9d446022566099d3
Author: Nguyễn Gia Phong <[email protected]>
AuthorDate: Mon Aug 31 10:10:20 2026 +0900

    gnu: libgit2-1.9: Ungraft.
    
    * gnu/packages/version-control.scm (libgit2-1.9): Update to 1.9.7.
      [replacement]: Unset.  [source]<snippet>: Update list of bundles.
      (libgit2-1.9.7): Delete variable.
    * gnu/packages/rust-apps.scm (radicle)[inputs]:
      Replace libgit2-1.9.7 with libgit2-1.9.
    
    References: 98d646431e4f ("gnu: libgit2-1.9: Graft to 1.9.7.")
---
 gnu/packages/rust-apps.scm       |  2 +-
 gnu/packages/version-control.scm | 29 +++--------------------------
 2 files changed, 4 insertions(+), 27 deletions(-)

diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm
index 522e5487302..946e8bba6fe 100644
--- a/gnu/packages/rust-apps.scm
+++ b/gnu/packages/rust-apps.scm
@@ -4857,7 +4857,7 @@ policies, and so on.
       (list pkg-config
             ;; for test
             git-minimal/pinned)))
-    (inputs (cons* libgit2-1.9.7 sqlite-next (cargo-inputs 'radicle)))
+    (inputs (cons* libgit2-1.9 sqlite-next (cargo-inputs 'radicle)))
     (home-page "https://radicle.dev/";)
     (synopsis "Peer-to-peer code collaboration stack")
     (description
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 706e06cc611..3152908c0b0 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -1416,8 +1416,7 @@ other git-like projects such as @code{libgit2}.")
 (define-public libgit2-1.9
   (package
     (name "libgit2")
-    (version "1.9.4")
-    (replacement libgit2-1.9.7)
+    (version "1.9.7")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -1425,8 +1424,7 @@ other git-like projects such as @code{libgit2}.")
                     (commit (string-append "v" version))))
               (file-name (git-file-name "libgit2" version))
               (sha256
-               (base32
-                "07gfycsmq3hdaic3x3ldgnry3gnam1yxsy8q5f94s52xgb7j59b4"))
+               (base32 "0jhm723bc9v18yanlqvmwn9kpmnvbcavnlhd4jcw0n082d7jl54h"))
               (patches
                (search-patches "libgit2-proxy-reconnection.patch"
                                "libgit2-path-max.patch"))
@@ -1437,7 +1435,7 @@ other git-like projects such as @code{libgit2}.")
                              '("deps/chromium-zlib"
                                "deps/llhttp"
                                "deps/ntlmclient"
-                               "deps/pcre"
+                               "deps/pcre2"
                                "deps/winhttp"
                                "deps/zlib"))))))
     (build-system cmake-build-system)
@@ -1483,27 +1481,6 @@ write native speed custom Git applications in any 
language with bindings.")
     ;; GPLv2 with linking exception
     (license license:gpl2)))
 
-(define-public libgit2-1.9.7
-  (package
-    (inherit libgit2-1.9)
-    (name "libgit2")
-    (version "1.9.7")
-    (source
-     (origin
-       (inherit (package-source libgit2-1.9))
-       (uri (git-reference
-             (url "https://github.com/libgit2/libgit2";)
-             (commit (string-append "v" version))))
-       (file-name (git-file-name "libgit2" version))
-       (sha256 (base32 "0jhm723bc9v18yanlqvmwn9kpmnvbcavnlhd4jcw0n082d7jl54h"))
-       (snippet #~(for-each delete-file-recursively
-                    '("deps/chromium-zlib"
-                      "deps/llhttp"
-                      "deps/ntlmclient"
-                      "deps/pcre2"
-                      "deps/winhttp"
-                      "deps/zlib")))))))
-
 (define-public libgit2-1.9/pinned
   ;; This is a pinned version used as a dependency for 'rust-cargo-c'.
   ;; Update periodically.

Reply via email to