Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 10 Jul 2017 01:09:54 +0000 (UTC)
From:      Richard Gallamore <ultima@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r445417 - in head/databases/mongodb34: . files
Message-ID:  <201707100109.v6A19sk5096856@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ultima
Date: Mon Jul 10 01:09:54 2017
New Revision: 445417
URL: https://svnweb.freebsd.org/changeset/ports/445417

Log:
  * Updated to 3.4.6
  
  portlint complains about *_DEPENDS has to appear earlier.
  This is a false positive, ONLY_FOR_ARCHS*(13.1.5) comes
  before *_DEPENDS(13.1.6).[1]
  
  [1] https://www.freebsd.org/doc/en/books/porters-handbook/porting-samplem.html#porting-samplem-order
  
  PR:		220526
  Submitted by:	Eric Camachat <eric@camachat.org> (maintainer)
  Reviewed by:	matthew (mentor)
  Approved by:	matthew (mentor)
  Differential Revision:	https://reviews.freebsd.org/D11526

Added:
  head/databases/mongodb34/files/patch-src_mongo_crypto_sha1__block__openssl.cpp   (contents, props changed)
Deleted:
  head/databases/mongodb34/files/patch-src_mongo_crypto_crypto__openssl.cpp
Modified:
  head/databases/mongodb34/Makefile
  head/databases/mongodb34/distinfo

Modified: head/databases/mongodb34/Makefile
==============================================================================
--- head/databases/mongodb34/Makefile	Mon Jul 10 00:57:22 2017	(r445416)
+++ head/databases/mongodb34/Makefile	Mon Jul 10 01:09:54 2017	(r445417)
@@ -2,7 +2,7 @@
 
 PORTNAME=	mongodb
 DISTVERSIONPREFIX=	r
-DISTVERSION=	3.4.5
+DISTVERSION=	3.4.6
 CATEGORIES=	databases net
 MASTER_SITES=	https://fastdl.mongodb.org/src/ \
 		http://fastdl.mongodb.org/src/ \

Modified: head/databases/mongodb34/distinfo
==============================================================================
--- head/databases/mongodb34/distinfo	Mon Jul 10 00:57:22 2017	(r445416)
+++ head/databases/mongodb34/distinfo	Mon Jul 10 01:09:54 2017	(r445417)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1498771362
-SHA256 (mongodb-src-r3.4.5.tar.gz) = 84806e5496a1a0a8fe9a59d6eab0acfab0e68476437e94e2772f898677bb21f0
-SIZE (mongodb-src-r3.4.5.tar.gz) = 39905053
+TIMESTAMP = 1499359915
+SHA256 (mongodb-src-r3.4.6.tar.gz) = 8170360f6dfede9c19c131f3d76831e952b3f1494925aa7e2a3a2f95b58ad901
+SIZE (mongodb-src-r3.4.6.tar.gz) = 39922209

Added: head/databases/mongodb34/files/patch-src_mongo_crypto_sha1__block__openssl.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/mongodb34/files/patch-src_mongo_crypto_sha1__block__openssl.cpp	Mon Jul 10 01:09:54 2017	(r445417)
@@ -0,0 +1,11 @@
+--- src/mongo/crypto/sha1_block_openssl.cpp.orig	2017-06-27 19:02:43 UTC
++++ src/mongo/crypto/sha1_block_openssl.cpp
+@@ -42,7 +42,7 @@
+ #include <openssl/evp.h>
+ #include <openssl/hmac.h>
+ #include <openssl/sha.h>
+-#if OPENSSL_VERSION_NUMBER < 0x10100000L
++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined (LIBRESSL_VERSION_NUMBER)
+ namespace {
+ // Copies of OpenSSL after 1.1.0 define new EVP digest routines. We must
+ // polyfill used definitions to interact with older OpenSSL versions.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201707100109.v6A19sk5096856>