From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: Re: [PATCH 2/2] gnu: Add mcabber. Date: Tue, 17 Jan 2017 04:52:31 -0500 Message-ID: <87k29u8140.fsf@netris.org> References: <20170116204557.31204-1-ng0@libertad.pw> <20170116204557.31204-3-ng0@libertad.pw> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60315) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cTQRs-0003M9-SD for guix-devel@gnu.org; Tue, 17 Jan 2017 04:53:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cTQRo-0007UW-QL for guix-devel@gnu.org; Tue, 17 Jan 2017 04:53:04 -0500 Received: from world.peace.net ([50.252.239.5]:58825) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cTQRo-0007TL-Lo for guix-devel@gnu.org; Tue, 17 Jan 2017 04:53:00 -0500 In-Reply-To: <20170116204557.31204-3-ng0@libertad.pw> (ng0@libertad.pw's message of "Mon, 16 Jan 2017 20:45:57 +0000") 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: ng0 Cc: guix-devel@gnu.org Hi, ng0 writes: > * gnu/packages/messaging.scm (mcabber): New variable. > --- > gnu/packages/messaging.scm | 32 ++++++++++++++++++++++++++++++++ > 1 file changed, 32 insertions(+) > > diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm > index d6b0d4bbc..67b359d01 100644 > --- a/gnu/packages/messaging.scm > +++ b/gnu/packages/messaging.scm > @@ -37,6 +37,7 @@ > #:use-module (guix build-system cmake) > #:use-module (gnu packages) > #:use-module (gnu packages aidc) > + #:use-module (gnu packages aspell) > #:use-module (gnu packages autotools) > #:use-module (gnu packages avahi) > #:use-module (gnu packages base) > @@ -1150,4 +1151,35 @@ and yet extensible to let you do anything the Jabber protocol allows.") > (synopsis "Asynchronous XMPP library") > (license license:lgpl2.1))) > > +(define-public mcabber > + (package > + (name "mcabber") > + (version "1.0.4") > + (source > + (origin > + (method url-fetch) > + (uri (string-append "https://mcabber.com/files/" > + name "-" version ".tar.bz2")) > + (sha256 > + (base32 > + "02nfn5r7cjpnacym95l6bvczii232v3x2gi79gfa9syc7w0brdk3")))) > + (build-system gnu-build-system) > + (inputs > + `(("gpgme" ,gpgme) > + ("libotr" ,libotr) > + ("aspell" ,aspell) > + ("libidn" ,libidn) > + ("glib" ,glib) > + ("ncurses" ,ncurses) > + ("loudmouth" ,loudmouth))) > + (native-inputs > + `(("pkg-config" ,pkg-config))) > + (home-page "http://about.psyc.eu/libpsyc") This home-page seems incorrect. Debian's mcabber package says that is its home page, which seems right. > + (description > + "Loudmouth is a lightweight and easy-to-use C library for programming > +with the Jabber protocol. It's designed to be easy to get started with > +and yet extensible to let you do anything the Jabber protocol allows.") This description field is apparently copied from the 'loudmouth' package, and doesn't match this one. > + (synopsis "Small XMPP console client") > + (license license:gpl2))) According to Debian's copyright file, the license is gpl2+, not gpl2. Mark