From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?B?5a6L5paH5q2m?= Subject: [PATCH] gnu: Add getmail Date: Sun, 23 Nov 2014 13:14:49 +0800 Message-ID: <87zjbits52.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/x-patch; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37861) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XsPVs-0007Tn-FZ for guix-devel@gnu.org; Sun, 23 Nov 2014 00:15:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XsPVm-0007TY-I1 for guix-devel@gnu.org; Sun, 23 Nov 2014 00:15:08 -0500 Received: from mail-pd0-x231.google.com ([2607:f8b0:400e:c02::231]:43708) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XsPVm-0007Rg-AU for guix-devel@gnu.org; Sun, 23 Nov 2014 00:15:02 -0500 Received: by mail-pd0-f177.google.com with SMTP id ft15so7811693pdb.36 for ; Sat, 22 Nov 2014 21:15:01 -0800 (PST) Received: from akarin ([59.172.248.108]) by mx.google.com with ESMTPSA id fm9sm6927150pab.40.2014.11.22.21.14.58 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 22 Nov 2014 21:15:00 -0800 (PST) Content-Disposition: attachment; filename=0001-gnu-Add-getmail.patch 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org >From b26fe8c0c4f6517cfacedc6cfd48441c4aaa28dd Mon Sep 17 00:00:00 2001 From: =3D?UTF-8?q?=3DE5=3DAE=3D8B=3DE6=3D96=3D87=3DE6=3DAD=3DA6?=3D Date: Sun, 23 Nov 2014 13:07:42 +0800 Subject: [PATCH] gnu: Add getmail. * gnu/packages/mail.scm (getmail): New variable. --- gnu/packages/mail.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 46c2409..cb16663 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -2,6 +2,7 @@ ;;; Copyright =C2=A9 2013, 2014 Ludovic Court=C3=A8s ;;; Copyright =C2=A9 2014 Mark H Weaver ;;; Copyright =C2=A9 2014 Ian Denhardt +;;; Copyright =C2=A9 2014 Sou Bunnbu ;;; ;;; This file is part of GNU Guix. ;;; @@ -365,4 +366,29 @@ attachments, create new maildirs, and so on.") ing, and tagging large collections of email messages.") (license gpl3+))) =20 +(define-public getmail + (package + (name "getmail") + (version "4.46.0") + (source + (origin + (method url-fetch) + (uri (string-append "http://pyropus.ca/software/getmail/old-version= s/" + name "-" version ".tar.gz")) + (sha256 + (base32 + "15rqmm25pq6ll8aaqh8h6pfdkpqs7y6yismb3h3w1bz8j292c8zl")))) + (build-system python-build-system) + (arguments + `(#:tests? #f ; no tests + #:python ,python-2)) + (home-page "http://pyropus.ca/software/getmail/") + (synopsis "Mail retriever") + (description + "A flexible, extensible mail retrieval system with support for +POP3, IMAP4, SSL variants of both, maildirs, mboxrd files, external MDAs, +arbitrary message filtering, single-user and domain-mailboxes, and many ot= her +useful features.") + (license gpl2))) +=20=20=20=20 ;;; mail.scm ends here --=20 2.1.2