From 16508177fb7fd53e6726ba847443285e66cea9f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9sar=20Rom=C3=A1n?= Date: Thu, 17 Jul 2025 11:40:12 -0700 Subject: [PATCH] Add Jython 2.7.4 (#3290) --- .../python-build/share/python-build/jython-2.7.4 | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 plugins/python-build/share/python-build/jython-2.7.4 diff --git a/plugins/python-build/share/python-build/jython-2.7.4 b/plugins/python-build/share/python-build/jython-2.7.4 new file mode 100644 index 00000000..e84ba426 --- /dev/null +++ b/plugins/python-build/share/python-build/jython-2.7.4 @@ -0,0 +1,14 @@ +require_java +unrequire_python27 +install_jar "jython-2.7.4" "https://repo1.maven.org/maven2/org/python/jython-installer/2.7.4/jython-installer-2.7.4.jar#6001f0741ed5f4a474e5c5861bcccf38dc65819e25d46a258cbc0278394a070b" jython + +case "$(pypy_architecture 2>/dev/null || true)" in +"osx64"|"win32" ) + # Jython does not seem to work properly on OSX/windows unless JAVA_HOME is set + if [ -z "${JAVA_HOME+defined}" ]; then + colorize 1 "WARNING: " + echo "Please ensure that your JAVA_HOME environment variable is set correctly!" + echo "See http://bugs.jython.org/issue2346 for details." + fi + ;; +esac