Quellcode durchsuchen

Merge pull request #2012 from dmrlawson/pyston-2.3

Add Pyston 2.3
pull/2017/head
Anton Petrov vor 5 Jahren
committed von GitHub
Ursprung
Commit
56fe98bfed
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden GPG-Schlüssel-ID: 4AEE18F83AFDEB23
1 geänderte Dateien mit 19 neuen und 0 gelöschten Zeilen
  1. +19
    -0
      plugins/python-build/share/python-build/pyston-2.3

+ 19
- 0
plugins/python-build/share/python-build/pyston-2.3 Datei anzeigen

@ -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.3" "https://github.com/pyston/pyston/releases/download/v2.3/pyston_2.3_portable.tar.gz#1d3885ede2d112c8087ec3c3ebf185782562ee5867a2cf15f6ea74e70f2d1db6" "pyston" verify_py38 get_pip
;;
* )
{ echo
colorize 1 "ERROR"
echo ": A Pyston 2.3 binary is not available for $(pyston_architecture 2>/dev/null || true)."
echo
} >&2
exit 1
;;
esac

Laden…
Abbrechen
Speichern