From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:35210 helo=eggs1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jQGS3-0008SU-9D for guix-patches@gnu.org; Sun, 19 Apr 2020 16:22:03 -0400 Received: from Debian-exim by eggs1p.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jQGS2-0004ZM-H9 for guix-patches@gnu.org; Sun, 19 Apr 2020 16:22:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:34522) by eggs1p.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jQGS2-0004ZE-4m for guix-patches@gnu.org; Sun, 19 Apr 2020 16:22:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jQGS1-0007vW-W3 for guix-patches@gnu.org; Sun, 19 Apr 2020 16:22:01 -0400 Subject: [bug#40724] sylpheed: New package Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:58322 helo=eggs1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jQG4S-0002B0-8p for guix-patches@gnu.org; Sun, 19 Apr 2020 15:57:40 -0400 Received: from Debian-exim by eggs1p.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jQG4R-00072J-3m for guix-patches@gnu.org; Sun, 19 Apr 2020 15:57:40 -0400 Received: from 216-80-121-173.s13.demp-ubr2.chi-demp.il.static.cable.rcncustomer.com ([216.80.121.173]:63369 helo=ericcbrown.com) by eggs1p.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jQG4Q-00070r-JI for guix-patches@gnu.org; Sun, 19 Apr 2020 15:57:38 -0400 Received: from localhost (unknown [192.168.1.1]) by ericcbrown.com (Postfix) with ESMTPSA id 97970495FFD5 for ; Sun, 19 Apr 2020 14:57:36 -0500 (CDT) From: Eric Brown Date: Sun, 19 Apr 2020 14:57:35 -0500 Message-ID: <87h7xftfio.fsf@ericcbrown.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: 40724@debbugs.gnu.org --=-=-= Content-Type: text/plain Dear Guix, Attached is a diff for Syplheed, a graphical email client. Best regards, Eric --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline; filename=0001-gnu-Add-sylpheed.patch Content-Transfer-Encoding: quoted-printable Content-Description: sylpheed diff >From cb1b5e6af8f118801e00c30a9cee3e76b2a5aa6c Mon Sep 17 00:00:00 2001 From: Eric Brown Date: Sun, 19 Apr 2020 14:54:51 -0500 Subject: [PATCH] gnu: Add sylpheed. * gnu/packages/mail.scm (sylpheed): New variable. --- gnu/packages/mail.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index d2ec51f27a..a69ec70334 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -31,6 +31,7 @@ ;;; Copyright =C2=A9 2019 Tanguy Le Carrour ;;; Copyright =C2=A9 2020 Vincent Legoll ;;; Copyright =C2=A9 2020 Justus Winter +;;; Copyright =C2=A9 2020 Eric Brown ;;; ;;; This file is part of GNU Guix. ;;; @@ -3181,3 +3182,36 @@ related tools to process winmail.dat files.") complement or replace traditional mailing lists. Readers may read via NNT= P, Atom feeds or HTML archives.") (license agpl3+)))) + +(define-public sylpheed + (package + (name "sylpheed") + (version "3.7.0") + (source (origin + (method url-fetch) + (uri (string-append "https://sylpheed.sraoss.jp/sylpheed/v3.= 7/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "0j9y5vdzch251s264diw9clrn88dn20bqqkwfmis9l7m8vmwasqd")))) + (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("bogofilter" ,bogofilter) + ("compface" ,compface) + ("gnupg" ,gnupg-1) + ("gpgme" ,gpgme) + ("gtk+-2.0" ,gtk+-2) + ("gtkspell" ,gtkspell3) + ("libnsl" ,libnsl) + ("openldap" ,openldap) + ("openssl" ,openssl))) + (home-page "http://sylpheed.sraoss.jp/") + (synopsis "Lightweight GTK+ email client") + (description + "Sylpheed is a simple, lightweight but featureful, and easy-to-use e-= mail +client. Sylpheed provides intuitive user-interface. Sylpheed is also desig= ned +for keyboard-oriented operation, so Sylpheed can be widely used from begin= ners +to power users.") + (license gpl2+))) --=20 2.26.1 --=-=-=--