From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54221) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d0XMI-0002L6-Tt for guix-patches@gnu.org; Tue, 18 Apr 2017 13:56:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d0XMA-0001T9-Hs for guix-patches@gnu.org; Tue, 18 Apr 2017 13:56:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:56869) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d0XMA-0001T3-Eb for guix-patches@gnu.org; Tue, 18 Apr 2017 13:56:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d0XMA-0004uH-7b for guix-patches@gnu.org; Tue, 18 Apr 2017 13:56:02 -0400 Subject: bug#26555: [PATCH] gnu: Add balsa. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53863) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d0XLW-0002E6-By for guix-patches@gnu.org; Tue, 18 Apr 2017 13:55:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d0XLS-0001EY-Jk for guix-patches@gnu.org; Tue, 18 Apr 2017 13:55:22 -0400 Received: from lb1.openmailbox.org ([5.79.108.160]:51043 helo=mail.openmailbox.org) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d0XLS-0001DU-Ap for guix-patches@gnu.org; Tue, 18 Apr 2017 13:55:18 -0400 Date: Tue, 18 Apr 2017 12:54:59 -0500 From: rennes Message-Id: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-dSC4igXCIWKNPGn35+d3" 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: 26555@debbugs.gnu.org --=-dSC4igXCIWKNPGn35+d3 Content-Type: text/plain; charset=us-ascii; DelSp=Yes; Format=Flowed Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Balsa is an e-mail client, supports POP/IMAP protocols. License: some libraries are under gpl3+, the COPYNG file says gpl3. Lint and tested.= --=-dSC4igXCIWKNPGn35+d3 Content-Type: text/x-patch; charset=UTF-8; name=0001-gnu-Add-balsa.patch Content-Disposition: attachment; filename=0001-gnu-Add-balsa.patch Content-Transfer-Encoding: quoted-printable =46rom 1a7b56056154b0db77ce88d08ce7ae1567f169a3 Mon Sep 17 00:00:00 2001 From: rennes Date: Tue, 18 Apr 2017 12:35:41 -0500 Subject: [PATCH] gnu: Add balsa. * gnu/packages/mail.scm (balsa): New variable. --- gnu/packages/mail.scm | 58 +++++++++++++++++++++++++++++++++++++++++++++++= ++++ 1 file changed, 58 insertions(+) diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 983629f85..6eaca8e3c 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -23,6 +23,7 @@ ;;; Copyright =C2=A9 2017 Thomas Danckaert ;;; Copyright =C2=A9 2017 Kyle Meyer ;;; Copyright =C2=A9 2017 Tobias Geerinckx-Rice +;;; Copyright =C2=A9 2017 Rene Saavedra ;;; ;;; This file is part of GNU Guix. ;;; @@ -94,6 +95,7 @@ #:use-module (gnu packages tls) #:use-module (gnu packages networking) #:use-module (gnu packages web) + #:use-module (gnu packages webkit) #:use-module (gnu packages xml) #:use-module (gnu packages xorg) #:use-module (gnu packages docbook) @@ -2284,3 +2286,59 @@ tools and applications: @item pilot, the standalone file system navigator @end enumerate\n") (license asl2.0))) + +(define-public balsa + (package + (name "balsa") + (version "2.5.3") + (source + (origin + (method url-fetch) + (uri (string-append "https://pawsa.fedorapeople.org/balsa/" + name "-" version ".tar.bz2")) + (sha256 + (base32 + "15jkwp3ylbwd8iha4dr37z1xb6mkk31ym90vv3h2a5xk2rmym5mq")))) + (build-system gnu-build-system) + (arguments + `(#:configure-flags (list + ;; Balsa tries to install additional MIME icons + ;; under gtk+ directory. + "--enable-extra-mimeicons=3Dno" + "--with-gtksourceview" + "--with-canberra" + "--with-spell-checker=3Dgtkspell" + "--with-gpgme" + "--with-sqlite" + "--with-compface" + "--with-ldap"))) + (native-inputs + `(("compface" ,compface) + ("glib" ,glib "bin") + ("intltool" ,intltool) + ("pkg-config" ,pkg-config) + ("yelp-tools" ,yelp-tools))) + (inputs + `(("cyrus-sasl" ,cyrus-sasl) + ("enchant" ,enchant) + ("gdk-pixbuf" ,gdk-pixbuf) + ("gmime" ,gmime) + ("gnutls" ,gnutls) + ("gpgme" ,gpgme) + ("gtk+" ,gtk+) + ("gtksourceview" ,gtksourceview) + ("gtkspell3" ,gtkspell3) + ("libcanberra" ,libcanberra) + ("libesmtp" ,libesmtp) + ("libnotify" ,libnotify) + ("openldap" ,openldap) + ("sqlite" ,sqlite) + ("webkitgtk" ,webkitgtk))) + (home-page "https://pawsa.fedorapeople.org/balsa") + (synopsis "E-mail client for GNOME") + (description + "Balsa is a highly configurable and robust mail client for the +GNOME desktop. It supports both POP3 and IMAP servers as well as the mbox= , +maildir and mh local mailbox formats. +Balsa also supports SMTP and/or the use of a local MTA such as Sendemail."= ) + (license gpl3+))) --=20 2.12.0 = --=-dSC4igXCIWKNPGn35+d3--