From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= Subject: Re: Rename GNU Jami Package in Guix? Date: Thu, 25 Jul 2019 19:05:32 +0200 Message-ID: <87k1c6t57n.fsf@gnu.org> References: <87blxmtomd.fsf@ambrevar.xyz> <4910a7068dd25983f28643c8dda53d620114620f.camel@disroot.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:56192) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hqhBQ-00022P-Gs for guix-devel@gnu.org; Thu, 25 Jul 2019 13:05:37 -0400 In-Reply-To: <4910a7068dd25983f28643c8dda53d620114620f.camel@disroot.org> (Raghav Gururajan's message of "Mon, 22 Jul 2019 16:07:10 -0400") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Raghav Gururajan Cc: guix-devel@gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello, Raghav Gururajan skribis: >> Error verifying signature: Failed to execute gpg. >> I agree, it's a GNOME app although the ring.cx launcher supports KDE >> explicitly. Anyways, I see no need to leave the "-client-gnome" >> part. > > Thanks :-). Well, if we leave that part, it will be straight-forward > that it can used with any DE and not just GNOME right? I=E2=80=99ll push the patch below if nobody beats me at it. :-) Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/telephony.scm b/gnu/packages/telephony.scm index b5c14143a8..cf37756503 100644 --- a/gnu/packages/telephony.scm +++ b/gnu/packages/telephony.scm @@ -847,10 +847,10 @@ This package provides a library common to all Jami clients.") (home-page "https://jami.net") (license license:gpl3+))) -(define-public jami-client-gnome +(define-public jami (package (inherit libring) - (name "jami-client-gnome") + (name "jami") (build-system cmake-build-system) (inputs `(("libringclient" ,libringclient) @@ -906,3 +906,6 @@ IAX protocols, as well as decentralized calling using P2P-DHT. This package provides the Jami client for the GNOME desktop.") (home-page "https://jami.net") (license license:gpl3+))) + +(define-public jami-client-gnome + (deprecated-package "jami-client-gnome" jami)) --=-=-=--