From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?B?5a6L5paH5q2m?= Subject: Re: [PATCH] gnu: Add getmail Date: Sun, 23 Nov 2014 13:22:00 +0800 Message-ID: <87wq6mtrt3.fsf@gmail.com> References: <87zjbits52.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38482) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XsPcl-000803-FD for guix-devel@gnu.org; Sun, 23 Nov 2014 00:22:19 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XsPcg-0001NZ-7s for guix-devel@gnu.org; Sun, 23 Nov 2014 00:22:15 -0500 Received: from mail-pa0-x235.google.com ([2607:f8b0:400e:c03::235]:52075) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XsPcg-0001NR-0x for guix-devel@gnu.org; Sun, 23 Nov 2014 00:22:10 -0500 Received: by mail-pa0-f53.google.com with SMTP id kq14so7526648pab.40 for ; Sat, 22 Nov 2014 21:22:09 -0800 (PST) Received: from akarin ([59.172.248.108]) by mx.google.com with ESMTPSA id pv7sm8837809pdb.69.2014.11.22.21.22.07 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 22 Nov 2014 21:22:08 -0800 (PST) In-Reply-To: <87zjbits52.fsf@gmail.com> 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 =E5=AE=8B=E6=96=87=E6=AD=A6 writes: > 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=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-versi= ons/" > + 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 = other > +useful features.") > + (license gpl2))) > + Sorry for the trailing whitespace here. > ;;; mail.scm ends here > --=20 > 2.1.2