diff options
author | Ronald Klop <ronald@FreeBSD.org> | 2024-08-18 12:08:09 +0200 |
---|---|---|
committer | Ronald Klop <ronald@FreeBSD.org> | 2024-09-03 09:23:46 +0200 |
commit | adc03306916b49eb837e0e2ca24f783179640e19 (patch) | |
tree | e73a7a7cbe49e2efbc396d790a3d84efd9449e59 /databases/mongodb70/files | |
parent | textproc/docproj: Update gohugo dependency (diff) |
databases/mongodb70: update to 7.0.14
Changes:
https://www.mongodb.com/docs/manual/release-notes/7.0/#7.0.14---aug-26--2024
NB: 7.0.13 was tagged, but never released.
Sync with improvements in mongodb80:
from commit b44fe228ca :
Removed SSL from OPTIONS. It was inherited from the first versions
of databases/mongodb, long before I became maintainer.
Currently disabling the SSL option does not disable ssl as ssl is
auto-detected and disabling ssl needs explicit --ssl=off which is
not implemented in the port. I never had a request for this in years
so I decided to just remove the option and have ssl enabled always.
from commit 5d8274d264 :
Also found some manual pages in the src tree.
from commit f2c9ba7c53 :
- add pre-configure check if downloaded mozjs version matches
get-sources.sh.
- change comment to how the upstream project names the open source
variant.
Diffstat (limited to 'databases/mongodb70/files')
-rwxr-xr-x | databases/mongodb70/files/make.test.sh | 4 | ||||
-rw-r--r-- | databases/mongodb70/files/patch-SConstruct | 8 |
2 files changed, 5 insertions, 7 deletions
diff --git a/databases/mongodb70/files/make.test.sh b/databases/mongodb70/files/make.test.sh index 3d74258a446a..c42bb1973e6b 100755 --- a/databases/mongodb70/files/make.test.sh +++ b/databases/mongodb70/files/make.test.sh @@ -18,8 +18,8 @@ DBDIR=$( mktemp -d -t tmp.mongodb ) trap 'rm -rf "$DBDIR"' EXIT # Trivial check if the binaries execute at all. -mongod -version -mongos -version +mongod --version +mongos --version # Check if an empty database can be created. mkdir "$DBDIR/db" diff --git a/databases/mongodb70/files/patch-SConstruct b/databases/mongodb70/files/patch-SConstruct index 816aa6946300..4ccd299adcaf 100644 --- a/databases/mongodb70/files/patch-SConstruct +++ b/databases/mongodb70/files/patch-SConstruct @@ -29,12 +29,10 @@ print(env_vars.GenerateHelpText(env)) Exit(0) --unknown_vars = env_vars.UnknownVariables() --if unknown_vars: + unknown_vars = env_vars.UnknownVariables() + if unknown_vars: - env.FatalError("Unknown variables specified: {0}", ", ".join(list(unknown_vars.keys()))) -+#unknown_vars = env_vars.UnknownVariables() -+#if unknown_vars: -+# env.FatalError("Unknown variables specified: {0}", ", ".join(list(unknown_vars.keys()))) ++ print("Unknown variables specified: {0}", ", ".join(list(unknown_vars.keys()))) install_actions.setup(env, get_option('install-action')) |