mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
add pypy-2.0.1 and pypy-2.0.2
This commit is contained in:
parent
b03a4cde78
commit
f120551ef3
2 changed files with 50 additions and 0 deletions
25
plugins/python-build/share/python-build/pypy-2.0.1
Normal file
25
plugins/python-build/share/python-build/pypy-2.0.1
Normal file
|
@ -0,0 +1,25 @@
|
|||
case "$(uname -s)" in
|
||||
"Darwin" )
|
||||
install_package "pypy-2.0.1" "https://bitbucket.org/pypy/pypy/downloads/pypy-2.0.1-linux.tar.bz2#e666450bcfbd936b016a2dd7312f9853" "pypy"
|
||||
;;
|
||||
"Linux" )
|
||||
case "$(uname -m)" in
|
||||
"i386" | "i486" | "i586" | "i686" | "i786" )
|
||||
install_package "pypy-2.0.1" "https://bitbucket.org/pypy/pypy/downloads/pypy-2.0.1-linux.tar.bz2#8d11952e0356ea751321e7d2a1d4f17a" "pypy"
|
||||
;;
|
||||
"x86_64" )
|
||||
install_package "pypy-2.0.1" "https://bitbucket.org/pypy/pypy/downloads/pypy-2.0.1-linux64.tar.bz2#5c11d727579443d0834caadb4dfe53e3" "pypy"
|
||||
esac
|
||||
;;
|
||||
"CYGWIN"* | "MINGW"* )
|
||||
# FIXME: never tested on Windows
|
||||
install_zip "pypy-2.0.1" "https://bitbucket.org/pypy/pypy/downloads/pypy-2.0.1-win32.zip#4c40b19ea1ec5c8c8c2a1f94f59bdf02" "pypy"
|
||||
;;
|
||||
* )
|
||||
echo "pypy-2.0 is not available." 1>&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
install_package "distribute-0.6.43" "http://pypi.python.org/packages/source/d/distribute/distribute-0.6.43.tar.gz#a216a46dc9bec5835fa3c6041f1c77c2" python
|
||||
install_package "pip-1.3.1" "http://pypi.python.org/packages/source/p/pip/pip-1.3.1.tar.gz#cbb27a191cebc58997c4da8513863153" python
|
25
plugins/python-build/share/python-build/pypy-2.0.2
Normal file
25
plugins/python-build/share/python-build/pypy-2.0.2
Normal file
|
@ -0,0 +1,25 @@
|
|||
case "$(uname -s)" in
|
||||
"Darwin" )
|
||||
install_package "pypy-2.0.2" "https://bitbucket.org/pypy/pypy/downloads/pypy-2.0.2-osx64.tar.bz2#a7da45a3161c198de6f662e3c40629ff" "pypy"
|
||||
;;
|
||||
"Linux" )
|
||||
case "$(uname -m)" in
|
||||
"i386" | "i486" | "i586" | "i686" | "i786" )
|
||||
install_package "pypy-2.0.2" "https://bitbucket.org/pypy/pypy/downloads/pypy-2.0.2-linux.tar.bz2#51ac0aa37a8255acbc71eca23ea29609" "pypy"
|
||||
;;
|
||||
"x86_64" )
|
||||
install_package "pypy-2.0.2" "https://bitbucket.org/pypy/pypy/downloads/pypy-2.0.2-linux64.tar.bz2#9d9f512ab2f114bfb4f165c71181a511" "pypy"
|
||||
esac
|
||||
;;
|
||||
"CYGWIN"* | "MINGW"* )
|
||||
# FIXME: never tested on Windows
|
||||
install_zip "pypy-2.0.2" "https://bitbucket.org/pypy/pypy/downloads/pypy-2.0.2-win32.zip#3e51dce7ecfc8fb069d65d95e8de6fb2" "pypy"
|
||||
;;
|
||||
* )
|
||||
echo "pypy-2.0 is not available." 1>&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
install_package "distribute-0.6.43" "http://pypi.python.org/packages/source/d/distribute/distribute-0.6.43.tar.gz#a216a46dc9bec5835fa3c6041f1c77c2" python
|
||||
install_package "pip-1.3.1" "http://pypi.python.org/packages/source/p/pip/pip-1.3.1.tar.gz#cbb27a191cebc58997c4da8513863153" python
|
Loading…
Reference in a new issue