From 296ce06d690b006ee1ac0a8e55e0c6b3602fef79 Mon Sep 17 00:00:00 2001 From: Tim Savage Date: Fri, 9 Mar 2018 12:12:56 +1100 Subject: [PATCH] Added current ActivePython versions 2.7.14, 3.5.4, 3.6.0 --- .../share/python-build/activepython-2.7.14 | 13 +++++++++++++ .../share/python-build/activepython-3.5.4 | 13 +++++++++++++ .../share/python-build/activepython-3.6.0 | 16 ++++++++++++++++ 3 files changed, 42 insertions(+) create mode 100644 plugins/python-build/share/python-build/activepython-2.7.14 create mode 100644 plugins/python-build/share/python-build/activepython-3.5.4 create mode 100644 plugins/python-build/share/python-build/activepython-3.6.0 diff --git a/plugins/python-build/share/python-build/activepython-2.7.14 b/plugins/python-build/share/python-build/activepython-2.7.14 new file mode 100644 index 00000000..1f5f6ea7 --- /dev/null +++ b/plugins/python-build/share/python-build/activepython-2.7.14 @@ -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 diff --git a/plugins/python-build/share/python-build/activepython-3.5.4 b/plugins/python-build/share/python-build/activepython-3.5.4 new file mode 100644 index 00000000..3e8e9234 --- /dev/null +++ b/plugins/python-build/share/python-build/activepython-3.5.4 @@ -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 diff --git a/plugins/python-build/share/python-build/activepython-3.6.0 b/plugins/python-build/share/python-build/activepython-3.6.0 new file mode 100644 index 00000000..95d23f7f --- /dev/null +++ b/plugins/python-build/share/python-build/activepython-3.6.0 @@ -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