guix_mirror_bot pushed a commit to branch mesa-updates
in repository guix.

commit 9427cbc447d03002f9a54895f61fa4af1c32576d
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Tue Sep 30 00:15:00 2025 +0900

    gnu: openldap-for-linphone: Update to 2.6.4-0.8511a0f.
    
    * gnu/packages/openldap.scm (openldap-for-linphone): Update to 
2.6.4-0.8511a0f.
    
    Change-Id: I8f5cccf1e3fa346a5b9c4426ba372ec8127f6edd
---
 gnu/packages/openldap.scm | 49 +++++++++++++++++++++++++----------------------
 1 file changed, 26 insertions(+), 23 deletions(-)

diff --git a/gnu/packages/openldap.scm b/gnu/packages/openldap.scm
index bfbdaad2b6..5b8370dc50 100644
--- a/gnu/packages/openldap.scm
+++ b/gnu/packages/openldap.scm
@@ -7,7 +7,7 @@
 ;;; Copyright © 2019 Mathieu Othacehe <[email protected]>
 ;;; Copyright © 2020 Lars-Dominik Braun <[email protected]>
 ;;; Copyright © 2020 Efraim Flashner <[email protected]>
-;;; Copyright © 2021, 2023 Maxim Cournoyer <[email protected]>
+;;; Copyright © 2021, 2023, 2025 Maxim Cournoyer <[email protected]>
 ;;; Copyright © 2022 Marius Bakke <[email protected]>
 ;;; Copyright © 2023 Brian Cully <[email protected]>
 ;;; Copyright © 2024, 2025 Janneke Nieuwenhuizen <[email protected]>
@@ -119,28 +119,31 @@
 ;; This is an incompatible fork of openldap that adds types needed for
 ;; liblinphone.
 (define-public openldap-for-linphone
-  (hidden-package
-   (package
-     (inherit openldap)
-     (name "openldap")
-     (version "2.6.4")
-     (source (origin
-               (method git-fetch)
-               (uri (git-reference
-                     (url 
"https://gitlab.linphone.org/BC/public/external/openldap/";)
-                     (commit "8a885896a3fb88098d970ab96316c0b7f18367b8")))
-               (file-name (git-file-name name version))
-               (sha256
-                (base32
-                 "1yd3cnngr5z3nymnml8fynspxgdzap7y7glp601nbkdj67wyg0k8"))))
-     (arguments
-      (substitute-keyword-arguments (package-arguments openldap)
-        ((#:configure-flags flags)
-         #~(append
-            (list #$(string-append "CFLAGS=-g -O2"
-                                   " -Wno-error=implicit-int"
-                                   " -Wno-error=int-conversion"))
-            #$flags)))))))
+  (let ((commit "8511a0f54d270ff529d83b4a8ba113819b18b856")
+        (revision "0"))
+    (hidden-package
+     (package
+       (inherit openldap)
+       (name "openldap")
+       (version (git-version "2.6.4" revision commit))
+       (source
+        (origin
+          (method git-fetch)
+          (uri (git-reference
+                 (url 
"https://gitlab.linphone.org/BC/public/external/openldap/";)
+                 (commit commit)))
+          (file-name (git-file-name name version))
+          (sha256
+           (base32
+            "06qf8lcalvgzr3w1m697xrj12ikav5im00wjmxa62qdmsg5rvji1"))))
+       (arguments
+        (substitute-keyword-arguments (package-arguments openldap)
+          ((#:configure-flags flags)
+           #~(append
+              (list #$(string-append "CFLAGS=-g -O2"
+                                     " -Wno-error=implicit-int"
+                                     " -Wno-error=int-conversion"))
+              #$flags))))))))
 
 (define-public nss-pam-ldapd
   (package

Reply via email to