aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKurt Jaeger <pi@FreeBSD.org>2019-10-11 17:27:20 +0000
committerKurt Jaeger <pi@FreeBSD.org>2019-10-11 17:27:20 +0000
commit1d77d19a10248bbc3f34e44e611b2f7e78c04594 (patch)
treebd81f26b755465b5934b530afe9a85a405349928
parent613a1ad4f3a0fa990c5840b25974b67749939797 (diff)
downloadports-1d77d19a10248bbc3f34e44e611b2f7e78c04594.tar.gz
ports-1d77d19a10248bbc3f34e44e611b2f7e78c04594.zip
MFH: r514207
databases/mongodb34: upgrade 3.4.21 -> 3.4.22 PR: 239717 Submitted by: Ronald Klop <ronald-lists@klop.ws> (maintainer) Relnotes: https://docs.mongodb.com/manual/release-notes/3.4/#aug-6-2019 Security: CVE-2019-2386, CVE-2019-2389, CVE-2019-2390 Approved by: ports-secteam (miwi)
Notes
Notes: svn path=/branches/2019Q4/; revision=514292
-rw-r--r--databases/mongodb34/Makefile3
-rw-r--r--databases/mongodb34/distinfo6
-rw-r--r--databases/mongodb34/files/patch-boost-1.6724
3 files changed, 4 insertions, 29 deletions
diff --git a/databases/mongodb34/Makefile b/databases/mongodb34/Makefile
index 833006daeaf9..8ddb98691026 100644
--- a/databases/mongodb34/Makefile
+++ b/databases/mongodb34/Makefile
@@ -2,8 +2,7 @@
PORTNAME= mongodb
DISTVERSIONPREFIX= r
-DISTVERSION= 3.4.21
-PORTREVISION= 2
+DISTVERSION= 3.4.22
CATEGORIES= databases net
MASTER_SITES= https://fastdl.mongodb.org/src/ \
http://fastdl.mongodb.org/src/ \
diff --git a/databases/mongodb34/distinfo b/databases/mongodb34/distinfo
index 98c290391671..cd7cad1495b1 100644
--- a/databases/mongodb34/distinfo
+++ b/databases/mongodb34/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1560876613
-SHA256 (mongodb-src-r3.4.21.tar.gz) = 189afe4fecca1d408ba3a71dc406f6fb889e0f743d7bc15334a17e4f07af28d7
-SIZE (mongodb-src-r3.4.21.tar.gz) = 40151763
+TIMESTAMP = 1565266677
+SHA256 (mongodb-src-r3.4.22.tar.gz) = de46ef5a6cb2fde1889a1c3dfc7b1d4e1f342614c58e93963bde88954cce3fe6
+SIZE (mongodb-src-r3.4.22.tar.gz) = 40172095
diff --git a/databases/mongodb34/files/patch-boost-1.67 b/databases/mongodb34/files/patch-boost-1.67
deleted file mode 100644
index a8ccacbf3499..000000000000
--- a/databases/mongodb34/files/patch-boost-1.67
+++ /dev/null
@@ -1,24 +0,0 @@
-In file included from src/third_party/yaml-cpp-0.5.3/src/convert.cpp:3:
-In file included from src/third_party/yaml-cpp-0.5.3/include/yaml-cpp/node/convert.h:17:
-In file included from src/third_party/yaml-cpp-0.5.3/include/yaml-cpp/node/impl.h:11:
-In file included from src/third_party/yaml-cpp-0.5.3/include/yaml-cpp/node/iterator.h:13:
-src/third_party/yaml-cpp-0.5.3/include/yaml-cpp/node/detail/iterator.h:48:54: error: no member named 'next' in namespace 'boost'
- void increment() { this->base_reference() = boost::next(this->base()); }
- ~~~~~~~^
-
---- src/third_party/yaml-cpp-0.5.3/include/yaml-cpp/node/detail/iterator.h.orig 2017-09-07 19:28:48 UTC
-+++ src/third_party/yaml-cpp-0.5.3/include/yaml-cpp/node/detail/iterator.h
-@@ -11,7 +11,13 @@
- #include "yaml-cpp/node/ptr.h"
- #include "yaml-cpp/node/detail/node_iterator.h"
- #include <boost/iterator/iterator_adaptor.hpp>
-+
-+#include <boost/version.hpp>
-+#if BOOST_VERSION < 106700
- #include <boost/utility.hpp>
-+#else
-+#include <boost/next_prior.hpp>
-+#endif
-
- namespace YAML {
- namespace detail {