[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#42899] [PATCH v2 01/10] gnu: dovecot: Add lucene library to support
From: |
Alexey Abramov |
Subject: |
[bug#42899] [PATCH v2 01/10] gnu: dovecot: Add lucene library to support fts indexing. |
Date: |
Tue, 18 Aug 2020 14:00:29 +0200 |
* gnu/packages/mail.scm (dovecot)[inputs]: Add ice4c and clucene libraries.
* gnu/packages/mail.scm (dovecot)[arguments]: Add --with-lucene configuration
switch.
Signed-off-by: Alexey Abramov <levenson@mmer.org>
---
gnu/packages/mail.scm | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 6792b9b4a9..98e75fa90f 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -87,6 +87,7 @@
#:use-module (gnu packages guile-xyz)
#:use-module (gnu packages flex)
#:use-module (gnu packages haskell-xyz)
+ #:use-module (gnu packages icu4c)
#:use-module (gnu packages kerberos)
#:use-module (gnu packages libcanberra)
#:use-module (gnu packages libevent)
@@ -113,6 +114,7 @@
#:use-module (gnu packages python-web)
#:use-module (gnu packages python-xyz)
#:use-module (gnu packages readline)
+ #:use-module (gnu packages rdf)
#:use-module (gnu packages ruby)
#:use-module (gnu packages search)
#:use-module (gnu packages serialization)
@@ -1425,11 +1427,14 @@ facilities for checking incoming mail.")
("lz4" ,lz4)
("openssl" ,openssl)
("sqlite" ,sqlite)
- ("zlib" ,zlib)))
+ ("zlib" ,zlib)
+ ("icu4c" ,icu4c)
+ ("clucene" ,clucene)))
(arguments
`(#:configure-flags '("--sysconfdir=/etc"
"--localstatedir=/var"
- "--with-sqlite") ; not auto-detected
+ "--with-sqlite" ; not auto-detected
+ "--with-lucene")
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'patch-file-names
--
2.27.0
- [bug#42899] [PATCH 03/10] services: dovecot: Use modules via symlink to system profile., (continued)
- [bug#42899] [PATCH 03/10] services: dovecot: Use modules via symlink to system profile., Alexey Abramov, 2020/08/17
- [bug#42899] [PATCH 04/10] gnu: dovecot-pigeonhole: Add new variable., Alexey Abramov, 2020/08/17
- [bug#42899] [PATCH 05/10] services: dovecot: Serialize global settings first., Alexey Abramov, 2020/08/17
- [bug#42899] [PATCH 06/10] services: dovecot: Only serialize settings with non-empty values., Alexey Abramov, 2020/08/17
- [bug#42899] [PATCH 10/10] services: dovecot: Add 'managesieve-sieve-capability' option., Alexey Abramov, 2020/08/17
- [bug#42899] [PATCH 08/10] services: dovecot: Add 'imap-metadata?' protocol configuration option., Alexey Abramov, 2020/08/17
- [bug#42899] [PATCH 02/10] gnu: dovecot: Patch and provide a static path for module directory., Alexey Abramov, 2020/08/17
- [bug#42899] [PATCH 09/10] services: dovecot: Add 'managesieve-notify-capability' configuration., Alexey Abramov, 2020/08/17
- [bug#42899] [PATCH 07/10] services: dovecot: Add 'mail-attribute-dict' configuration option., Alexey Abramov, 2020/08/17
- [bug#42899] [PATCH v2 01/10] gnu: dovecot: Add lucene library to support fts indexing.,
Alexey Abramov <=
- [bug#42899] [PATCH v2 08/10] services: dovecot: Add 'imap-metadata?' protocol configuration option., Alexey Abramov, 2020/08/18
- [bug#42899] [PATCH v2 07/10] services: dovecot: Add 'mail-attribute-dict' configuration option., Alexey Abramov, 2020/08/18
- [bug#42899] [PATCH v2 09/10] services: dovecot: Add 'managesieve-notify-capability' option., Alexey Abramov, 2020/08/18
- [bug#42899] [PATCH v2 02/10] gnu: dovecot: Patch and provide a static path for module directory., Alexey Abramov, 2020/08/18