MFH: r514327

databases/mongodb40: upgrade 4.0.8 -> 4.0.12

PR:		241210
Approved by:	Andrew Shevchuk <dev.ashevchuk@gmail.com> (maintainer)
Relnotes:	https://docs.mongodb.com/manual/release-notes/4.0/
Security:	CVE-2019-2386, CVE-2019-2389, CVE-2019-2390
Approved by:	ports-secteam (miwi, implicit)
This commit is contained in:
Kurt Jaeger 2019-10-12 10:34:44 +00:00
parent a7d4a3a600
commit 52fe9ed484
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/branches/2019Q4/; revision=514328
3 changed files with 4 additions and 30 deletions

View File

@ -2,8 +2,7 @@
PORTNAME= mongodb
DISTVERSIONPREFIX= r
DISTVERSION= 4.0.8
PORTREVISION= 2
DISTVERSION= 4.0.12
CATEGORIES= databases net
MASTER_SITES= https://fastdl.mongodb.org/src/ \
http://fastdl.mongodb.org/src/ \

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1553817480
SHA256 (mongodb-src-r4.0.8.tar.gz) = 83e694405b72002588a64275be00bf1e36e12f5955451171645f45cb3f16f251
SIZE (mongodb-src-r4.0.8.tar.gz) = 49841488
TIMESTAMP = 1570817575
SHA256 (mongodb-src-r4.0.12.tar.gz) = 2132def2478c7d45b028a9b79db346a19f9c56f456b52c0ff243982c89c20dc9
SIZE (mongodb-src-r4.0.12.tar.gz) = 49937644

View File

@ -1,25 +0,0 @@
In file included from src/third_party/yaml-cpp-0.5.3/src/nodebuilder.cpp:5:
In file included from src/third_party/yaml-cpp-0.5.3/include/yaml-cpp/node/detail/node.h:14:
In file included from src/third_party/yaml-cpp-0.5.3/include/yaml-cpp/node/detail/node_ref.h:13:
In file included from src/third_party/yaml-cpp-0.5.3/include/yaml-cpp/node/detail/node_data.h:20:
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 2018-02-16 21:50:58 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 {