From 187e4df880b18b3606c61154bb9039bcbf2774e3 Mon Sep 17 00:00:00 2001 From: Raghav Gururajan Date: Mon, 15 Mar 2021 16:24:20 -0400 Subject: [PATCH 13/53] gnu: belcard: Update to 4.4.34. * gnu/packages/linphone.scm (belcard) [source]: Switch to git repository. [version]: Update to 4.4.34. [native-inputs]: Add python-wrapper. [inputs]: Add eudev. --- gnu/packages/linphone.scm | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm index 8767662050..25cfe6de94 100644 --- a/gnu/packages/linphone.scm +++ b/gnu/packages/linphone.scm @@ -236,23 +236,27 @@ IETF.") (define-public belcard (package (name "belcard") - (version "1.0.2") + (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/belcard") + (commit version))) + (file-name (git-file-name name version)) (sha256 - (base32 "0iiyrll1shnbb0561pkvdqcmx9b2cdr76xpsbaqdirc3s4xzcl0k")))) + (base32 "16x2xp8d0a115132zhy1kpxkyj86ia7vrsnpjdg78fnbvmvysc8m")))) (build-system cmake-build-system) (arguments `(#:tests? #f ; No test target #:configure-flags (list "-DENABLE_STATIC=OFF"))) ; Not required + (native-inputs + `(("python" ,python-wrapper))) (inputs `(("bctoolbox" ,bctoolbox) - ("belr" ,belr))) + ("belr" ,belr) + ("libudev" ,eudev))) (synopsis "Belledonne Communications VCard Library") (description "Belcard is a C++ library to manipulate VCard standard format.") -- 2.31.0