guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

09/26: gnu: lime: Update to 5.2.49.


From: guix-commits
Subject: 09/26: gnu: lime: Update to 5.2.49.
Date: Sun, 9 Apr 2023 05:06:37 -0400 (EDT)

rekado pushed a commit to branch core-updates
in repository guix.

commit d5e32420365204e3037aeb023e60602d9ad79454
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sat Apr 8 13:35:07 2023 +0200

    gnu: lime: Update to 5.2.49.
    
    * gnu/packages/linphone.scm (lime): Update to 5.2.49.
    [arguments]: Enable building of documentation; disable server and 
multidomains
    tests as they require networking.
---
 gnu/packages/linphone.scm | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 896e0b6dfc..135ec70541 100644
--- a/gnu/packages/linphone.scm
+++ b/gnu/packages/linphone.scm
@@ -687,7 +687,7 @@ including media capture, encoding and decoding, and 
rendering.")
 (define-public lime
   (package
     (name "lime")
-    (version "4.4.34")
+    (version "5.2.49")
     (source
      (origin
        (method git-fetch)
@@ -696,12 +696,13 @@ including media capture, encoding and decoding, and 
rendering.")
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "14jg1zisjbzflw3scfqdbwy48wq3cp93l867vigb8l40lkc6n26z"))))
+        (base32 "1mglnypxl3glwvwf2h5q4ikbm6wbcd9pb7kdws8zajjhk9q803jr"))))
     (build-system cmake-build-system)
     (outputs '("out" "doc"))
     (arguments
      `(#:configure-flags (list "-DENABLE_STATIC=NO"
-                               "-DENABLE_C_INTERFACE=YES")
+                               "-DENABLE_C_INTERFACE=YES"
+                               "-DENABLE_DOC=YES")
        #:phases
        (modify-phases %standard-phases
          (add-after 'unpack 'patch-source
@@ -710,7 +711,9 @@ including media capture, encoding and decoding, and 
rendering.")
              (substitute* "tester/CMakeLists.txt"
                (("add_test\\(?.*\"Hello World\"\\)") "")
                (("add_test\\(?.*\"lime\"\\)") "")
-               (("add_test\\(?.*\"FFI\"\\)") ""))))
+               (("add_test\\(?.*\"FFI\"\\)") "")
+               (("add_test\\(?.*\"Multidomains\"\\)") "")
+               (("add_test\\(?.*\"Lime server\"\\)") ""))))
          (add-after 'build 'build-doc
            (lambda _
              (invoke "make" "doc")))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]