GNU bug report logs - #32294
[PATCH] gnu: Add imapfilter.

Previous Next

Package: guix-patches;

Reported by: Jelle Licht <jlicht <at> fsfe.org>

Date: Fri, 27 Jul 2018 16:20:01 UTC

Severity: normal

Tags: patch

Done: Jelle Licht <jlicht <at> fsfe.org>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: Jelle Licht <jlicht <at> fsfe.org>
Subject: bug#32294: closed (Re: [bug#32294] [PATCH] gnu: Add imapfilter.)
Date: Fri, 03 Aug 2018 01:22:02 +0000
[Message part 1 (text/plain, inline)]
Your bug report

#32294: [PATCH] gnu: Add imapfilter.

which was filed against the guix-patches package, has been closed.

The explanation is attached below, along with your original report.
If you require more details, please reply to 32294 <at> debbugs.gnu.org.

-- 
32294: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=32294
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Jelle Licht <jlicht <at> fsfe.org>
To: Ludovic Courtès <ludo <at> gnu.org>
Cc: 32294-done <at> debbugs.gnu.org
Subject: Re: [bug#32294] [PATCH] gnu: Add imapfilter.
Date: Fri, 3 Aug 2018 03:21:35 +0200
[Message part 3 (text/plain, inline)]
2018-07-29 16:00 GMT+02:00 Ludovic Courtès <ludo <at> gnu.org>:

> Hi,
>
> Jelle Licht <jlicht <at> fsfe.org> skribis:
>
> > * gnu/packages/mail.scm (imapfilter): New variable.
>
> [...]
>
> > +    (home-page "https://github.com/lefcha/imapfilter")
> > +    (synopsis "IMAP mail filtering utility")
> > +    (description "@code{IMAPFilter} is a mail filtering utility.  It
> connects
>
> I think you can omit @code here (since “IMAPFilter” is a proper name and
> not an identifier or command name), but otherwise LGTM.  Thanks!
>
> Ludo’.
>

done, and pushed as ae7c1c3704187405a1c4e7c039bf70df9327e6a6
[Message part 4 (text/html, inline)]
[Message part 5 (message/rfc822, inline)]
From: Jelle Licht <jlicht <at> fsfe.org>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: Add imapfilter.
Date: Fri, 27 Jul 2018 18:19:23 +0200
* gnu/packages/mail.scm (imapfilter): New variable.
---
 gnu/packages/mail.scm | 44 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)

diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 3d7b0e463..fc02fa50e 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -2554,3 +2554,47 @@ and binaries. It supports offline reading, scoring and killfiles, yEnc, NZB,
 PGP handling, multiple servers, and secure connections.")
     ;; License of the docs: fdl-1.1; Others: gpl2.
     (license (list fdl1.1+ gpl2))))
+
+(define-public imapfilter
+  (package
+    (name "imapfilter")
+    (version "2.6.11")
+    (source
+     (origin
+       (method url-fetch)
+       (uri
+        (string-append "https://github.com/lefcha/imapfilter/archive/"
+                       "v" version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1yslvwr3w5fnl06gfrp0lim8zdlasx3cvgd2fsqi0695xnb9bsms"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f
+       #:make-flags
+       (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
+             "CC=gcc")
+       #:phases
+       (modify-phases %standard-phases
+         (delete 'configure)
+         (add-after 'unpack 'fix-include-path
+           (lambda* (#:key inputs #:allow-other-keys)
+             (let ((pcre (assoc-ref inputs "pcre")))
+               (substitute* "src/Makefile"
+                 (("INCDIRS =")
+                  (string-append "INCDIRS ="
+                                 "-I" pcre "/include")))
+               #t))))))
+    (native-inputs
+     `(("lua" ,lua)
+       ("pcre" ,pcre)
+       ("openssl" ,openssl)))
+    (home-page "https://github.com/lefcha/imapfilter")
+    (synopsis "IMAP mail filtering utility")
+    (description "@code{IMAPFilter} is a mail filtering utility.  It connects
+to remote mail servers using IMAP, sends searching queries to the server and
+processes mailboxes based on the results.  It can be used to delete, copy,
+move, flag, etc. messages residing in mailboxes at the same or different mail
+servers.  The 4rev1 and 4 versions of IMAP are supported.")
+    (license license:expat)))
-- 
2.18.0



This bug report was last modified 6 years and 296 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.