emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#32294: closed ([PATCH] gnu: Add imapfilter.)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#32294: closed ([PATCH] gnu: Add imapfilter.)
Date: Fri, 03 Aug 2018 01:22:02 +0000

Your message dated Fri, 3 Aug 2018 03:21:35 +0200
with message-id <address@hidden>
and subject line Re: [bug#32294] [PATCH] gnu: Add imapfilter.
has caused the debbugs.gnu.org bug report #32294,
regarding [PATCH] gnu: Add imapfilter.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
32294: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=32294
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add imapfilter. Date: Fri, 27 Jul 2018 18:19:23 +0200 User-agent: mu4e 1.0; emacs 26.1
* 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



--- End Message ---
--- Begin Message --- Subject: Re: [bug#32294] [PATCH] gnu: Add imapfilter. Date: Fri, 3 Aug 2018 03:21:35 +0200


2018-07-29 16:00 GMT+02:00 Ludovic Courtès <address@hidden>:
Hi,

Jelle Licht <address@hidden> 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

--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]