svn commit: r414442 - in head/databases/mongodb: . files

Alex Dupre ale at FreeBSD.org
Mon May 2 12:40:55 UTC 2016


Author: ale
Date: Mon May  2 12:40:53 2016
New Revision: 414442
URL: https://svnweb.freebsd.org/changeset/ports/414442

Log:
  Update to 2.6.12 release.
  
  PR:		209150
  Submitted by:	demon

Modified:
  head/databases/mongodb/Makefile
  head/databases/mongodb/distinfo
  head/databases/mongodb/files/patch-SConstruct
  head/databases/mongodb/files/patch-src_mongo_SConscript
  head/databases/mongodb/files/patch-src_mongo_db_kill_current_op.cpp
  head/databases/mongodb/files/patch-src_mongo_db_ops_modifier_push.cpp
  head/databases/mongodb/files/patch-src_third_party_boost_libs_filesystem_v3_src_path.cpp

Modified: head/databases/mongodb/Makefile
==============================================================================
--- head/databases/mongodb/Makefile	Mon May  2 12:40:09 2016	(r414441)
+++ head/databases/mongodb/Makefile	Mon May  2 12:40:53 2016	(r414442)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	mongodb
-PORTVERSION=	2.6.7
+PORTVERSION=	2.6.12
 CATEGORIES=	databases net
 MASTER_SITES=	http://downloads.mongodb.org/src/
 DISTNAME=	${PORTNAME}-src-r${PORTVERSION}

Modified: head/databases/mongodb/distinfo
==============================================================================
--- head/databases/mongodb/distinfo	Mon May  2 12:40:09 2016	(r414441)
+++ head/databases/mongodb/distinfo	Mon May  2 12:40:53 2016	(r414442)
@@ -1,2 +1,2 @@
-SHA256 (mongodb-src-r2.6.7.tar.gz) = 512254d1adeaf19cc8188032ac75ce01ac114811b5a27ef3a95dc79eeedd6bc9
-SIZE (mongodb-src-r2.6.7.tar.gz) = 14540119
+SHA256 (mongodb-src-r2.6.12.tar.gz) = 2dd51eabcfcd133573be74c0131c85b67764042833e7d94077e86adc0b9406dc
+SIZE (mongodb-src-r2.6.12.tar.gz) = 16462842

Modified: head/databases/mongodb/files/patch-SConstruct
==============================================================================
--- head/databases/mongodb/files/patch-SConstruct	Mon May  2 12:40:09 2016	(r414441)
+++ head/databases/mongodb/files/patch-SConstruct	Mon May  2 12:40:53 2016	(r414442)
@@ -1,6 +1,21 @@
---- SConstruct.orig	2014-05-05 02:29:43.000000000 +0000
-+++ SConstruct	2014-05-12 09:50:56.999470711 +0000
-@@ -843,7 +843,7 @@
+--- SConstruct.orig	2016-03-21 17:09:46.000000000 +0100
++++ SConstruct	2016-05-02 12:45:18.685329078 +0200
+@@ -483,10 +483,10 @@ env = Environment( variables=env_vars,
+                    )
+ 
+ # Report any unknown variables as an error.
+-unknown_vars = env_vars.UnknownVariables()
+-if unknown_vars:
+-    print "Unknown variables specified: {0}".format(", ".join(unknown_vars.keys()))
+-    Exit(1)
++#unknown_vars = env_vars.UnknownVariables()
++#if unknown_vars:
++#    print "Unknown variables specified: {0}".format(", ".join(unknown_vars.keys()))
++#    Exit(1)
+ 
+ if has_option("cache"):
+     EnsureSConsVersion( 2, 3, 0 )
+@@ -867,7 +867,7 @@ if nix:
      env.Append( LIBS=[] )
  
      #make scons colorgcc friendly

Modified: head/databases/mongodb/files/patch-src_mongo_SConscript
==============================================================================
--- head/databases/mongodb/files/patch-src_mongo_SConscript	Mon May  2 12:40:09 2016	(r414441)
+++ head/databases/mongodb/files/patch-src_mongo_SConscript	Mon May  2 12:40:53 2016	(r414442)
@@ -1,15 +1,15 @@
---- src/mongo/SConscript.orig	2013-03-22 20:55:25.000000000 +0100
-+++ src/mongo/SConscript	2013-03-25 17:46:04.000000000 +0100
+--- src/mongo/SConscript.orig	2016-03-21 17:09:46.000000000 +0100
++++ src/mongo/SConscript	2016-05-02 12:44:35.405331527 +0200
 @@ -13,7 +13,7 @@ Import("has_option")
- Import("usesm usev8")
- Import("installSetup")
+ Import("get_option")
+ Import("usev8")
  Import("enforce_glibc")
 -Import("darwin windows solaris linux nix")
 +Import("darwin windows solaris linux freebsd nix")
  
  env.SConscript(['base/SConscript',
                  'db/auth/SConscript',
-@@ -765,7 +765,7 @@ def installBinary( e, name ):
+@@ -1183,7 +1183,7 @@ def installBinary( e, name ):
      if enforce_glibc:
          e.AddPostAction( name, checkGlibc )
  

Modified: head/databases/mongodb/files/patch-src_mongo_db_kill_current_op.cpp
==============================================================================
--- head/databases/mongodb/files/patch-src_mongo_db_kill_current_op.cpp	Mon May  2 12:40:09 2016	(r414441)
+++ head/databases/mongodb/files/patch-src_mongo_db_kill_current_op.cpp	Mon May  2 12:40:53 2016	(r414442)
@@ -1,6 +1,6 @@
---- src/mongo/db/kill_current_op.cpp.orig	2014-05-15 15:30:33.100157820 +0000
-+++ src/mongo/db/kill_current_op.cpp	2014-05-15 15:35:12.714138934 +0000
-@@ -152,7 +152,7 @@
+--- src/mongo/db/kill_current_op.cpp.orig	2016-03-21 17:09:46.000000000 +0100
++++ src/mongo/db/kill_current_op.cpp	2016-05-02 12:44:35.406331476 +0200
+@@ -152,7 +152,7 @@ namespace {
          }
  
          // Return true with (approx) probability p = "chance".  Recall: 0 <= chance <= 1.

Modified: head/databases/mongodb/files/patch-src_mongo_db_ops_modifier_push.cpp
==============================================================================
--- head/databases/mongodb/files/patch-src_mongo_db_ops_modifier_push.cpp	Mon May  2 12:40:09 2016	(r414441)
+++ head/databases/mongodb/files/patch-src_mongo_db_ops_modifier_push.cpp	Mon May  2 12:40:53 2016	(r414442)
@@ -1,6 +1,6 @@
---- src/mongo/db/ops/modifier_push.cpp.orig	2014-05-15 15:24:21.650184430 +0000
-+++ src/mongo/db/ops/modifier_push.cpp	2014-05-15 15:25:51.014179801 +0000
-@@ -646,7 +646,7 @@
+--- src/mongo/db/ops/modifier_push.cpp.orig	2016-03-21 17:09:46.000000000 +0100
++++ src/mongo/db/ops/modifier_push.cpp	2016-05-02 12:44:35.408331153 +0200
+@@ -646,7 +646,7 @@ namespace mongo {
              }
  
              const int64_t numChildren = mutablebson::countChildren(_preparedState->elemFound);

Modified: head/databases/mongodb/files/patch-src_third_party_boost_libs_filesystem_v3_src_path.cpp
==============================================================================
--- head/databases/mongodb/files/patch-src_third_party_boost_libs_filesystem_v3_src_path.cpp	Mon May  2 12:40:09 2016	(r414441)
+++ head/databases/mongodb/files/patch-src_third_party_boost_libs_filesystem_v3_src_path.cpp	Mon May  2 12:40:53 2016	(r414442)
@@ -1,5 +1,5 @@
---- src/third_party/boost/libs/filesystem/v3/src/path.cpp.orig	2013-04-22 16:48:39.000000000 +0200
-+++ src/third_party/boost/libs/filesystem/v3/src/path.cpp	2013-05-03 14:46:44.000000000 +0200
+--- src/third_party/boost/libs/filesystem/v3/src/path.cpp.orig	2016-03-21 17:09:46.000000000 +0100
++++ src/third_party/boost/libs/filesystem/v3/src/path.cpp	2016-05-02 12:44:35.410331831 +0200
 @@ -35,7 +35,7 @@
  #ifdef BOOST_WINDOWS_API
  # include "windows_file_codecvt.hpp"
@@ -9,7 +9,7 @@
  # include <boost/filesystem/detail/utf8_codecvt_facet.hpp>
  #endif
  
-@@ -766,7 +766,7 @@
+@@ -766,7 +766,7 @@ namespace
      codecvt_facet(&std::use_facet<std::codecvt<wchar_t, char, std::mbstate_t> >
        (path_locale));
  
@@ -18,7 +18,7 @@
  
    // "All BSD system functions expect their string parameters to be in UTF-8 encoding
    // and nothing else." See
-@@ -822,7 +822,7 @@
+@@ -822,7 +822,7 @@ namespace filesystem3
    const path::codecvt_type*& path::wchar_t_codecvt_facet()
    {
  #   if defined(BOOST_POSIX_API) && \


More information about the svn-ports-all mailing list