From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:33178) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ixYo0-0006cV-98 for guix-patches@gnu.org; Fri, 31 Jan 2020 11:06:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ixYny-00007E-Vw for guix-patches@gnu.org; Fri, 31 Jan 2020 11:06:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:60186) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ixYny-00006y-Mo for guix-patches@gnu.org; Fri, 31 Jan 2020 11:06:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ixYny-0004hj-H6 for guix-patches@gnu.org; Fri, 31 Jan 2020 11:06:02 -0500 Subject: [bug#39312] gnu: Add chatty.[v2] Resent-Message-ID: From: Jonathan Brielmaier References: <77f67f99-44e6-6464-cf96-62eec29493d6@web.de> Message-ID: Date: Fri, 31 Jan 2020 17:04:52 +0100 MIME-Version: 1.0 In-Reply-To: <77f67f99-44e6-6464-cf96-62eec29493d6@web.de> Content-Type: multipart/mixed; boundary="------------F437483ACFB71BA77C5F975D" Content-Language: en-US List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 39312@debbugs.gnu.org This is a multi-part message in MIME format. --------------F437483ACFB71BA77C5F975D Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable This time patch v2 without purple-mm-sms, as it's not included yet. On 27.01.20 19:25, Jonathan Brielmaier wrote: > Hi, > > attached is a patch for Chatty. A GUI program for SMS and XMPP optimized > for mobile interfaces. XMPP works nicely already. SMS not yet: I have > the required package "purple-mm-sms" already in my local git, but > couldn't test it yet, because I lack the hardware. I'll submit it > separately as soon it's ready and tested :) > > ~Jonathan --------------F437483ACFB71BA77C5F975D Content-Type: text/x-patch; charset=UTF-8; name="0001-gnu-Add-chatty.patch" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="0001-gnu-Add-chatty.patch" =46rom 87e4b48eae543d53c7d80bf031dd93671186e45f Mon Sep 17 00:00:00 2001 From: Jonathan Brielmaier Date: Thu, 23 Jan 2020 21:32:39 +0100 Subject: [PATCH] gnu: Add chatty. * gnu/packages/messaging.scm (chatty): New variable. =2D-- gnu/packages/messaging.scm | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 5754c7ce08..1dba50d55c 100644 =2D-- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -2041,4 +2041,39 @@ support for high performance Telegram Bot creation.= ") (home-page "https://source.puri.sm/Librem5/purple-mm-sms") (license license:gpl2+))) +(define-public chatty + (package + (name "chatty") + (version "0.1.7") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://source.puri.sm/Librem5/chatty.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1prqd2dnib3j12pjiplzr2rim9q617vmvzv76lgmz0n3bmp7v7ma")))= ) + (build-system meson-build-system) + (native-inputs + `(("desktop-file-utils" ,desktop-file-utils) ; for update-desktop-da= tabase + ("evolution-data-server" ,evolution-data-server) ;libebook-contact= s + ("folks" ,folks) + ("gettext" ,gettext-minimal) + ("glib:bin" ,glib "bin") + ("gtk+:bin" ,gtk+ "bin") + ("libgcrypt" ,libgcrypt) + ("libgee" ,libgee) + ("libhandy" ,libhandy) + ("pidgin" ,pidgin) + ("pkg-config" ,pkg-config) + ("sqlite" ,sqlite))) + (propagated-inputs + `(("hicolor-icon-theme" ,hicolor-icon-theme))) + (synopsis "Mobile client for XMPP and SMS messaging") + (description "Chatty is a chat program for XMPP and SMS. It works on = mobile +as well as on desktop platforms. It's based on libpurple and ModemManage= r.") + (home-page "https://source.puri.sm/Librem5/chatty") + (license license:gpl3+))) + ;;; messaging.scm ends here =2D- 2.24.1 --------------F437483ACFB71BA77C5F975D--