Browse Source

Create pyston-2.2

pull/1905/head
Anton Petrov 5 years ago
committed by GitHub
parent
commit
58b09b7461
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 19 additions and 0 deletions
  1. +19
    -0
      plugins/python-build/share/python-build/pyston-2.2

+ 19
- 0
plugins/python-build/share/python-build/pyston-2.2 View File

@ -0,0 +1,19 @@
echo
colorize 1 "WARNING"
echo ": Pyston only runs on x86_64 platforms, and only has been tested on Ubuntu"
echo "so, your mileage may vary with other Linux distributions."
echo
case "$(pyston_architecture 2>/dev/null || true)" in
"linux64" )
install_package "pyston_2.2" "https://github.com/pyston/pyston/releases/download/pyston_2.2/pyston_2.2_portable.tar.gz#d113cc4d1f6821c0f117f7a84978823d8ac751d7970fa7841eb994663ec5a59f" "pyston" verify_py38
;;
* )
{ echo
colorize 1 "ERROR"
echo ": A Pyston 2.2 binary is not available for $(pyston_architecture 2>/dev/null || true)."
echo
} >&2
exit 1
;;
esac

Loading…
Cancel
Save