Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/mongodb/files/
Date: Mon, 04 Mar 2019 03:14:27
Message-Id: 1551669102.aa98e596a87ca9ff7fd46d39e748b06956c9f777.bman@gentoo
1 commit: aa98e596a87ca9ff7fd46d39e748b06956c9f777
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sat Mar 2 11:53:46 2019 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 4 03:11:42 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa98e596
7
8 dev-db/mongodb: remove unused patch
9
10 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
11 Closes: https://github.com/gentoo/gentoo/pull/11210
12 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
13
14 dev-db/mongodb/files/mongodb-3.2.10-boost-1.62.patch | 15 ---------------
15 1 file changed, 15 deletions(-)
16
17 diff --git a/dev-db/mongodb/files/mongodb-3.2.10-boost-1.62.patch b/dev-db/mongodb/files/mongodb-3.2.10-boost-1.62.patch
18 deleted file mode 100644
19 index 30a3bdff45f..00000000000
20 --- a/dev-db/mongodb/files/mongodb-3.2.10-boost-1.62.patch
21 +++ /dev/null
22 @@ -1,15 +0,0 @@
23 -Derived from http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/databases/mongodb/patches/patch-src_mongo_db_fts_unicode_string.cpp v1.1
24 -
25 -* Fix build with boost 1.62.0
26 -
27 ---- a/src/mongo/db/fts/unicode/string.cpp 2016-09-26 12:10:04.000000000 +0000
28 -+++ b/src/mongo/db/fts/unicode/string.cpp
29 -@@ -274,7 +274,7 @@ bool String::substrMatch(const std::stri
30 -
31 - // Case sensitive and diacritic sensitive.
32 - return boost::algorithm::boyer_moore_search(
33 -- haystack.begin(), haystack.end(), needle.begin(), needle.end()) != haystack.end();
34 -+ haystack.begin(), haystack.end(), needle.begin(), needle.end()) != std::make_pair(haystack.end(), haystack.end());
35 - }
36 -
37 - } // namespace unicode