| @ -0,0 +1,54 @@ | |||
| # Copyright (c) 2023, 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='23.0.0' | |||
| BUILD='' | |||
| graalpy_arch="$(graalpy_architecture 2>/dev/null || true)" | |||
| case "$graalpy_arch" in | |||
| "linux-amd64" ) | |||
| checksum="25e4fa7c1d45db6dcac5bfa4d1a0aa9ef5581623dc5903ce98d246c5d394639c" | |||
| ;; | |||
| "linux-aarch64" ) | |||
| checksum="e2a00b2b6485282b4a04aa382e30d696e00d20eb2fe1736debbe2d9df2a8737a" | |||
| ;; | |||
| "macos-amd64" ) | |||
| checksum="1578902976e6aaf45b9758931f0bddbb29c5c9bdca62c67591d6e153340c2a4f" | |||
| ;; | |||
| "macos-aarch64" ) | |||
| checksum="cc40e1d47610c5f4a825a1a7c3ffe8b163c71b5d042d16aebd1a65451d4309a5" | |||
| ;; | |||
| * ) | |||
| { echo | |||
| colorize 1 "ERROR" | |||
| echo ": No binary distribution of GraalPy is available for $(uname -sm)." | |||
| 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/graal-${VERSION}" | |||
| fi | |||
| install_package "graalpy-${VERSION}${BUILD}" "${urlprefix}/graalpython-${VERSION}-${graalpy_arch}.tar.gz#${checksum}" "copy" ensurepip | |||