From c17489124e39a2f8ec502e97ff3efc1d512684f1 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Sun, 3 Jul 2016 07:21:56 +0300 Subject: gnu: libetpan: Update to 1.7.2. * gnu/packages/mail.scm (libetpan): Update to 1.7.2. [inputs]: Add zlib. --- gnu/packages/mail.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'gnu/packages/mail.scm') diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index c3baa728ec..58b46d8f67 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -546,14 +546,14 @@ (define-public getmail (define-public libetpan (package (name "libetpan") - (version "1.6") + (version "1.7.2") (source (origin (method url-fetch) (uri (string-append "https://github.com/dinhviethoa/" name "/archive/" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "05qyqx2c1ppb1jnrs3m52i60f9xlxfxdmb9dnwg4vqjv8kwv2qkr")))) + (base32 "081ixgj3skglq9i7v0jb835lmfx21zi4i5b7997igwr0lj174y9j")))) (build-system gnu-build-system) (native-inputs `(("autoconf" ,(autoconf-wrapper)) ("automake" ,automake) @@ -566,7 +566,8 @@ (define-public libetpan ("openssl" ,openssl))) (inputs `(("curl" ,curl) - ("expat" ,expat))) + ("expat" ,expat) + ("zlib" ,zlib))) (arguments '(#:phases (alist-cons-after 'unpack 'autogen -- cgit v1.2.3 From a2cb16b0c6bbb5558f6cce6a4c7c273126c9438f Mon Sep 17 00:00:00 2001 From: Troy Sankey Date: Sat, 2 Jul 2016 14:28:35 -0400 Subject: gnu: Add alot. * gnu/packages/mail.scm (alot): New variable. Signed-off-by: Leo Famulari --- gnu/packages/mail.scm | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) (limited to 'gnu/packages/mail.scm') diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 58b46d8f67..24f8e3d02a 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -14,6 +14,7 @@ ;;; Copyright © 2016 Leo Famulari ;;; Copyright © 2016 Lukas Gradl ;;; Copyright © 2016 Alex Kost +;;; Copyright © 2016 Troy Sankey ;;; ;;; This file is part of GNU Guix. ;;; @@ -397,6 +398,40 @@ (define-public mu attachments, create new maildirs, and so on.") (license gpl3+))) +(define-public alot + (package + (name "alot") + (version "0.3.7") + (source (origin + (method url-fetch) + ; v0.3.7 not on PyPi yet, so use github instead + (uri (string-append "https://github.com/pazz/alot/archive/" + version ".tar.gz")) + (file-name (string-append "alot-" version ".tar.gz")) + (sha256 + (base32 + "09md9llg38r6xby8l0y0zf8nhlh91cr4xs0r15b294hhp8hl2bgx")))) + (build-system python-build-system) + (arguments + `(#:tests? #f ; no tests + ; python 3 is unsupported, more info: + ; https://github.com/pazz/alot/blob/0.3.7/docs/source/faq.rst + #:python ,python-2)) + (inputs + `(("python2-magic" ,python2-magic) + ("python2-configobj" ,python2-configobj) + ("python2-twisted" ,python2-twisted) + ("python2-urwid" ,python2-urwid) + ("python2-urwidtrees" ,python2-urwidtrees) + ("python2-pygpgme" ,python2-pygpgme) + ("python2-notmuch" ,python2-notmuch))) + (home-page "https://github.com/pazz/alot") + (synopsis "Commandline MUA using notmuch") + (description + "Alot is an experimental terminal mail user agent (MUA) based on +@code{notmuch} mail. It is written in Python using the @code{urwid} toolkit.") + (license gpl3+))) + (define-public notmuch (package (name "notmuch") -- cgit v1.2.3 From 1a5fd02a829132d3cf3a95db5521c83d0a16d3c1 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Thu, 7 Jul 2016 20:02:11 +0300 Subject: gnu: getmail: Update to 4.49.0. * gnu/packages/mail.scm (getmail): Update to 4.49.0. --- gnu/packages/mail.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/mail.scm') diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 24f8e3d02a..5a3ebf0f29 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -554,7 +554,7 @@ (define-public python2-notmuch (define-public getmail (package (name "getmail") - (version "4.48.0") + (version "4.49.0") (source (origin (method url-fetch) @@ -562,7 +562,7 @@ (define-public getmail name "-" version ".tar.gz")) (sha256 (base32 - "0k5rm5kag14izng2ajcagvli9sns5mzvkyfa65ri4xymxs91wi29")))) + "1m0yzxd05fklwbmjj1n2q4sx397c1j5qi9a0r5fv3h8pplz4lv0w")))) (build-system python-build-system) (arguments `(#:tests? #f ; no tests -- cgit v1.2.3