From dfa4c6c2dcf6b5e643cc76fedf4263e4cf93de64 Mon Sep 17 00:00:00 2001 From: Raghav Gururajan Date: Tue, 16 Mar 2021 12:40:05 -0400 Subject: [PATCH 26/53] gnu: belle-sip: Update to 4.4.34. * gnu/packages/linphone.scm (belle-sip) [source]: Switch to git repository. [version]: Update to 4.4.34. [native-iputs]: Add python-wrapper. --- gnu/packages/linphone.scm | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm index 7261dbe1d8..cc2ab09db0 100644 --- a/gnu/packages/linphone.scm +++ b/gnu/packages/linphone.scm @@ -472,15 +472,16 @@ including both ARM and x86.") (define-public belle-sip (package (name "belle-sip") - (version "1.6.3") + (version "4.4.34") (source (origin - (method url-fetch) - (uri - (string-append "https://www.linphone.org/releases/sources/" name - "/" name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "git://git.linphone.org/belle-sip") + (commit version))) + (file-name (git-file-name name version)) (sha256 - (base32 "0s55kggmgxap54dkw5856bgk4xg7yvbzialpxnjm0zhpic3hff1z")))) + (base32 "1kknnlczq7dpqaj1dwxvy092dzrqjy11ndkv90rqwmdryigkjk6z")))) (build-system cmake-build-system) (arguments `(#:tests? #f ; Requires network access @@ -495,6 +496,8 @@ including both ARM and x86.") ;; which would not be reproducible. (("-Xmultithreaded ") "")) #t))))) + (native-inputs + `(("python" ,python-wrapper))) (inputs `(("antlr3" ,antlr3-3.3) ("antlr3c" ,libantlr3c) -- 2.31.0