aboutsummaryrefslogtreecommitdiff
path: root/system/mongodb/patches/mongodb-5.0.2-skip-reqs-check.patch
diff options
context:
space:
mode:
authorWilly Sudiarto Raharjo <willysr@slackbuilds.org>2023-12-02 09:46:06 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2023-12-03 19:19:10 +0700
commit0df5d3baa5aa7d86acade79eb0e8fa98e36c9ce4 (patch)
tree9af85ff7bdb6dd6ce097c3840a1691fe7cdad118 /system/mongodb/patches/mongodb-5.0.2-skip-reqs-check.patch
parent6222c777ddf9b0f1d24a073ec04974634deb9992 (diff)
system/mongodb: Updated for version 7.0.4.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/mongodb/patches/mongodb-5.0.2-skip-reqs-check.patch')
-rw-r--r--system/mongodb/patches/mongodb-5.0.2-skip-reqs-check.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/system/mongodb/patches/mongodb-5.0.2-skip-reqs-check.patch b/system/mongodb/patches/mongodb-5.0.2-skip-reqs-check.patch
new file mode 100644
index 0000000000..823d481c20
--- /dev/null
+++ b/system/mongodb/patches/mongodb-5.0.2-skip-reqs-check.patch
@@ -0,0 +1,24 @@
+diff --git a/buildscripts/scons.py b/buildscripts/scons.py
+index 534fca32..c38f64df 100755
+--- a/buildscripts/scons.py
++++ b/buildscripts/scons.py
+@@ -19,13 +19,13 @@ SITE_TOOLS_DIR = os.path.join(MONGODB_ROOT, 'site_scons')
+ sys.path = [SCONS_DIR, SITE_TOOLS_DIR] + sys.path
+
+ # pylint: disable=C0413
+-from mongo.pip_requirements import verify_requirements, MissingRequirements
++#from mongo.pip_requirements import verify_requirements, MissingRequirements
+
+-try:
+- verify_requirements('etc/pip/compile-requirements.txt')
+-except MissingRequirements as ex:
+- print(ex)
+- sys.exit(1)
++#try:
++# verify_requirements('etc/pip/compile-requirements.txt')
++#except MissingRequirements as ex:
++# print(ex)
++# sys.exit(1)
+
+ try:
+ import SCons.Script