View | Details | Raw Unified | Return to bug 255588 | Differences between
and this patch

Collapse All | Expand All

(-)databases/mongodb50/Makefile (-2 / +2 lines)
Lines 1-6 Link Here
1
PORTNAME=	mongodb
1
PORTNAME=	mongodb
2
DISTVERSIONPREFIX=	r
2
DISTVERSIONPREFIX=	r
3
DISTVERSION=	4.9.0-rc1
3
DISTVERSION=	5.0.0-rc0
4
CATEGORIES=	databases net
4
CATEGORIES=	databases net
5
MASTER_SITES=	https://fastdl.mongodb.org/src/ \
5
MASTER_SITES=	https://fastdl.mongodb.org/src/ \
6
		http://fastdl.mongodb.org/src/
6
		http://fastdl.mongodb.org/src/
Lines 8-14 Link Here
8
DISTNAME=	mongodb-src-${DISTVERSIONPREFIX}${DISTVERSION}
8
DISTNAME=	mongodb-src-${DISTVERSIONPREFIX}${DISTVERSION}
9
9
10
MAINTAINER=	ronald-lists@klop.ws
10
MAINTAINER=	ronald-lists@klop.ws
11
COMMENT=	Distributed document-oriented "NoSQL" database (4.9.x Branch)
11
COMMENT=	Distributed document-oriented "NoSQL" database (5.0.x Branch)
12
12
13
# mongodb is SSPLv1, C++ driver is APACHE20
13
# mongodb is SSPLv1, C++ driver is APACHE20
14
LICENSE=	SSPLv1 APACHE20
14
LICENSE=	SSPLv1 APACHE20
(-)databases/mongodb50/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1620215774
1
TIMESTAMP = 1622204953
2
SHA256 (mongodb-src-r4.9.0-rc1.tar.gz) = 07daca716db93326fc76a897ebcb02a4202fe12c07361fe6a3f64507ca67ed70
2
SHA256 (mongodb-src-r5.0.0-rc0.tar.gz) = 9ebf1de0a9e1d436928e69cd75a99f385e6cde83f2d60e72ac5c1d714646751c
3
SIZE (mongodb-src-r4.9.0-rc1.tar.gz) = 52373560
3
SIZE (mongodb-src-r5.0.0-rc0.tar.gz) = 54327208
(-)databases/mongodb50/files/patch-SConstruct (-13 / +4 lines)
Lines 1-6 Link Here
1
--- SConstruct.orig	2021-03-23 15:33:12 UTC
1
--- SConstruct.orig	2021-04-29 23:06:52 UTC
2
+++ SConstruct
2
+++ SConstruct
3
@@ -1261,9 +1261,9 @@ if has_option('variables-help'):
3
@@ -1324,9 +1324,9 @@ if has_option('variables-help'):
4
     print(env_vars.GenerateHelpText(env))
4
     print(env_vars.GenerateHelpText(env))
5
     Exit(0)
5
     Exit(0)
6
 
6
 
Lines 13-19 Link Here
13
 
13
 
14
 if get_option('install-action') != 'default' and get_option('ninja') != "disabled":
14
 if get_option('install-action') != 'default' and get_option('ninja') != "disabled":
15
     env.FatalError("Cannot use non-default install actions when generating Ninja.")
15
     env.FatalError("Cannot use non-default install actions when generating Ninja.")
16
@@ -2419,7 +2419,7 @@ if env.TargetOSIs('posix'):
16
@@ -2498,7 +2498,7 @@ if env.TargetOSIs('posix'):
17
             # If runtime hardening is requested, then build anything
17
             # If runtime hardening is requested, then build anything
18
             # destined for an executable with the necessary flags for PIE.
18
             # destined for an executable with the necessary flags for PIE.
19
             env.AppendUnique(
19
             env.AppendUnique(
Lines 22-37 Link Here
22
                 PROGLINKFLAGS=['-pie'],
22
                 PROGLINKFLAGS=['-pie'],
23
             )
23
             )
24
 
24
 
25
@@ -2433,7 +2433,7 @@ if env.TargetOSIs('posix'):
25
@@ -2675,8 +2675,12 @@ if not env.TargetOSIs('windows') and (env.ToolchainIs(
26
                          "-Wno-unknown-pragmas",
27
                          "-Winvalid-pch"] )
28
     # env.Append( " -Wconversion" ) TODO: this doesn't really work yet
29
-    if env.TargetOSIs('linux', 'darwin', 'solaris'):
30
+    if env.TargetOSIs('linux', 'darwin', 'solaris', 'freebsd'):
31
         if not has_option("disable-warnings-as-errors"):
32
             env.Append( CCFLAGS=["-Werror"] )
33
 
34
@@ -2528,8 +2528,12 @@ if not env.TargetOSIs('windows') and (env.ToolchainIs(
35
     # setting it for both C and C++ by setting both of CFLAGS and
26
     # setting it for both C and C++ by setting both of CFLAGS and
36
     # CXXFLAGS.
27
     # CXXFLAGS.
37
 
28
 
(-)databases/mongodb50/pkg-descr (-6 / +1 lines)
Lines 2-10 Link Here
2
schema-free, document-oriented database. A common name in the
2
schema-free, document-oriented database. A common name in the
3
"NOSQL" community.
3
"NOSQL" community.
4
4
5
MongoDB 4.9 is a developer preview. It is not guaranteed to
5
WWW: https://docs.mongodb.com/v5.0/
6
become an official release. It probably will become the 5.0
7
version in the future.
8
See: https://developer.mongodb.com/community/forums/t/mongodb-4-9-on-rpi4-does-not-run/101249/2
9
10
WWW: https://docs.mongodb.com/v4.9/

Return to bug 255588