ports/databases/cassandra4/files/patch-bin_cqlsh
Lapo Luchini 678ef46e3a databases/cassandra4: Update to 4.0.8
- Add pre-fetch target to download Maven dependencies to avoid
  network access during build

PR:		265478
Approved by:	Angelo Polo <language.devel@gmail.com> (maintainer)
2023-05-15 23:23:57 +02:00

11 lines
446 B
Text

--- bin/cqlsh.orig 2022-05-06 16:40:06 UTC
+++ bin/cqlsh
@@ -88,7 +88,7 @@ if [ "$USER_SPECIFIED_PYTHON" != "" ]; then
# run a user specified Python interpreter
run_if_supported_version "$USER_SPECIFIED_PYTHON" "$@"
else
- for interpreter in python3 python python2.7; do
+ for interpreter in python3 python3.9 python3.8 python3.7 python3.6 python python2.7; do
run_if_supported_version "$interpreter" "$@"
done
fi