diff options
author | Philippe Chaintreuil <gentoo_bugs_peep@parallaxshift.com> | 2024-04-01 15:40:08 -0400 |
---|---|---|
committer | Philippe Chaintreuil <gentoo_bugs_peep@parallaxshift.com> | 2024-04-01 16:57:39 -0400 |
commit | aca7bd0aeeb579d11334b9360fc791ad9f26275a (patch) | |
tree | 02ab57e22c866915af8c145392b89831dc35c7e1 /net-mail | |
parent | app-misc/anki-bin: add 24.04 (diff) | |
download | guru-aca7bd0aeeb579d11334b9360fc791ad9f26275a.tar.gz guru-aca7bd0aeeb579d11334b9360fc791ad9f26275a.tar.bz2 guru-aca7bd0aeeb579d11334b9360fc791ad9f26275a.zip |
net-mail/dovecot-fts-xapian: Patch Base64 debug verbosity
Signed-off-by: Philippe Chaintreuil <gentoo_bugs_peep@parallaxshift.com>
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/dovecot-fts-xapian/dovecot-fts-xapian-1.7.10.ebuild | 1 | ||||
-rw-r--r-- | net-mail/dovecot-fts-xapian/files/20240401_verbosity-fix.patch | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/net-mail/dovecot-fts-xapian/dovecot-fts-xapian-1.7.10.ebuild b/net-mail/dovecot-fts-xapian/dovecot-fts-xapian-1.7.10.ebuild index 5287bc2d2..c3dcbbef8 100644 --- a/net-mail/dovecot-fts-xapian/dovecot-fts-xapian-1.7.10.ebuild +++ b/net-mail/dovecot-fts-xapian/dovecot-fts-xapian-1.7.10.ebuild @@ -26,6 +26,7 @@ BDEPEND="virtual/pkgconfig" PATCHES=( "${FILESDIR}/bug-887887_allow-O2-override.patch" + "${FILESDIR}/20240401_verbosity-fix.patch" ) src_prepare() { diff --git a/net-mail/dovecot-fts-xapian/files/20240401_verbosity-fix.patch b/net-mail/dovecot-fts-xapian/files/20240401_verbosity-fix.patch new file mode 100644 index 000000000..7f62757db --- /dev/null +++ b/net-mail/dovecot-fts-xapian/files/20240401_verbosity-fix.patch @@ -0,0 +1,10 @@ +--- a/src/fts-backend-xapian-functions.cpp ++++ b/src/fts-backend-xapian-functions.cpp +@@ -383,7 +383,6 @@ class XNGram + { + ok=std::regex_match(s, base64Regex); + } +- if(ok) syslog(LOG_INFO,"Testing Base64 (%s) -> %ld",s.c_str(),(long)ok); + return ok; + } + |