Added current ActivePython versions 2.7.14, 3.5.4, 3.6.0

This commit is contained in:
Tim Savage 2018-03-09 12:12:56 +11:00
parent 3daed2e517
commit 296ce06d69
3 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,13 @@
case "$(activepython_architecture 2>/dev/null || true)" in
"linux-x86_64" )
install_package "ActivePython-2.7.14.2717-linux-x86_64-glibc-2.12-404899" "http://downloads.activestate.com/ActivePython/releases/2.7.14.2717/ActivePython-2.7.14.2717-linux-x86_64-glibc-2.12-404899.tar.gz" "activepython" verify_py27
;;
* )
{ echo
colorize 1 "ERROR"
echo ": The binary distribution of Active Python is not available for $(activepython_architecture 2>/dev/null || true)."
echo
} >&2
exit 1
;;
esac

View file

@ -0,0 +1,13 @@
case "$(activepython_architecture 2>/dev/null || true)" in
"linux-x86_64" )
install_package "ActivePython-3.5.4.3504-linux-x86_64-glibc-2.12-404899" "http://downloads.activestate.com/ActivePython/releases/3.5.4.3504/ActivePython-3.5.4.3504-linux-x86_64-glibc-2.12-404899.tar.gz" "activepython" verify_py35
;;
* )
{ echo
colorize 1 "ERROR"
echo ": The binary distribution of Active Python is not available for $(activepython_architecture 2>/dev/null || true)."
echo
} >&2
exit 1
;;
esac

View file

@ -0,0 +1,16 @@
case "$(activepython_architecture 2>/dev/null || true)" in
"linux-x86_64" )
install_package "ActivePython-3.6.0.3600-linux-x86_64-glibc-2.3.6-401834" "http://downloads.activestate.com/ActivePython/releases/3.6.0.3600/ActivePython-3.6.0.3600-linux-x86_64-glibc-2.3.6-401834.tar.gz" "activepython" verify_py36
;;
"linux-x86" )
install_package "ActivePython-3.6.0.3600-linux-x86-glibc-2.3.6-401834" "http://downloads.activestate.com/ActivePython/releases/3.6.0.3600/ActivePython-3.6.0.3600-linux-x86-glibc-2.3.6-401834.tar.gz" "activepython" verify_py36
;;
* )
{ echo
colorize 1 "ERROR"
echo ": The binary distribution of Active Python is not available for $(activepython_architecture 2>/dev/null || true)."
echo
} >&2
exit 1
;;
esac