From b6b761f9f102f539a70f1f2dfdb29e201851be9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20=C5=A0im=C3=A1=C4=8Dek?= Date: Fri, 29 Apr 2022 19:30:31 +0200 Subject: [PATCH] Add GraalPython 22.1.0 (#2346) --- .../share/python-build/graalpython-22.1.0 | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 plugins/python-build/share/python-build/graalpython-22.1.0 diff --git a/plugins/python-build/share/python-build/graalpython-22.1.0 b/plugins/python-build/share/python-build/graalpython-22.1.0 new file mode 100644 index 00000000..d3d938be --- /dev/null +++ b/plugins/python-build/share/python-build/graalpython-22.1.0 @@ -0,0 +1,48 @@ +# Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved. +# +# Permission is hereby granted, free of charge, to any person obtaining a copy of +# this software and associated documentation files (the "Software"), to deal in +# the Software without restriction, including without limitation the rights to +# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +# of the Software, and to permit persons to whom the Software is furnished to do +# so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. +VERSION='22.1.0' +BUILD='' + +case "$(pypy_architecture 2>/dev/null || true)" in +"linux64" ) + graalpython_arch="linux" + checksum="06862993573b64bd64c802aace9135192a4ba28a15d8260c42c5de632ad616bc" + ;; +"osx64" ) + graalpython_arch="macos" + checksum="88b22ea4a5cb8345b680d15cc385dff7a8ab858fdf0e182c79c6c3b74755de6c" + ;; +* ) + { echo + colorize 1 "ERROR" + echo ": No binary distribution of GraalPython is available for $(pypy_architecture 2>/dev/null || true)." + echo + } >&2 + exit 1 + ;; +esac + +if [ -n "${BUILD}" ]; then + urlprefix="https://github.com/graalvm/graalvm-ce-dev-builds/releases/download/${VERSION}-${BUILD}" +else + urlprefix="https://github.com/oracle/graalpython/releases/download/vm-${VERSION}" +fi + +install_package "graalpython-${VERSION}${BUILD}" "${urlprefix}/graalpython-${VERSION}-${graalpython_arch}-amd64.tar.gz#${checksum}" "graalpython" ensurepip