From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marius Bakke Subject: Re: [PATCH 2/2] gnu: Add mcabber. Date: Wed, 18 Jan 2017 20:28:27 +0100 Message-ID: <877f5s88x0.fsf@kirby.i-did-not-set--mail-host-address--so-tickle-me> References: <20170118123425.13773-1-contact.ng0@cryptolab.net> <20170118123425.13773-3-contact.ng0@cryptolab.net> Mime-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39064) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cTvuM-0004pa-PI for guix-devel@gnu.org; Wed, 18 Jan 2017 14:28:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cTvuI-0004qi-E3 for guix-devel@gnu.org; Wed, 18 Jan 2017 14:28:34 -0500 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:55941) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cTvuI-0004pq-9O for guix-devel@gnu.org; Wed, 18 Jan 2017 14:28:30 -0500 In-Reply-To: <20170118123425.13773-3-contact.ng0@cryptolab.net> 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: contact.ng0@cryptolab.net, guix-devel@gnu.org Cc: ng0 --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable contact.ng0@cryptolab.net writes: > From: ng0 > > * gnu/packages/messaging.scm (mcabber): New variable. > --- > gnu/packages/messaging.scm | 33 +++++++++++++++++++++++++++++++++ > 1 file changed, 33 insertions(+) > > diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm > index d6b0d4bbc..bf351bdc2 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,36 @@ and yet extensible to let you do anything the Jabb= er protocol allows.") > (synopsis "Asynchronous XMPP library") > (license license:lgpl2.1))) >=20=20 > +(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://mcabber.com") > + (description > + "Mcabber is a small XMPP (Jabber) console client, which includes fe= atures > +such as SASL and TLS support, @dfn{Multi-User Chat (MUC)} support, loggi= ng, > +command-completion, OpenPGP encryption, @dfn{Off-the-Record Messaging (O= TR)} > +support, and more.") > + (synopsis "Small XMPP console client") > + (license license:gpl2+))) AFAICT the parenthesis comes after @dfn{...}. I also noticed libotr and aspell was not referenced, and had to explicitly enable them as configure flags. Home page was corrected to HTTPS too. Pushed! --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEu7At3yzq9qgNHeZDoqBt8qM6VPoFAlh/wdsACgkQoqBt8qM6 VPrH1Af+KTNZJSRQPmztrrjtTc454BEpgvknZbQJvzmtdcLBPRqbyMPIF5K15LPf p2NAwD6TJji416fVN0wqodF7BMxYrCMWmcNsSMxKpCMhiAE3emaztYlhooQmojzm 8hDKQ7SV6HFrBlql2OpXKnQE9ThXvBRlcr+/tBZolSlDpPJyPEGJDuP9mzZlDtOI G0mCMrTMoc8CIh3olEq6WQskLFp7tTo70/ed7fTLI5qQgvlkDv8GsI/hONEl9WYS qGf5B06mxWiCFYA5Buc0WNlkW2IoKaL1QaV6PXdQZMfBTjPJQK8bPekpf+KHAW58 ONZKJvOWe6lhu6+eij+SPGle4CvHZw== =byDP -----END PGP SIGNATURE----- --=-=-=--