diff --git a/plugins/python-build/share/python-build/anaconda2-5.3.1 b/plugins/python-build/share/python-build/anaconda2-5.3.1 new file mode 100644 index 00000000..2229f3e9 --- /dev/null +++ b/plugins/python-build/share/python-build/anaconda2-5.3.1 @@ -0,0 +1,19 @@ +case "$(anaconda_architecture 2>/dev/null || true)" in +"Linux-x86" ) + install_script "Anaconda2-5.3.1-Linux-x86" "https://repo.continuum.io/archive/Anaconda2-5.3.1-Linux-x86.sh#5685ac1d4a14c4c254cbafc612c77e77" "anaconda" verify_py27 + ;; +"Linux-x86_64" ) + install_script "Anaconda2-5.3.1-Linux-x86_64" "https://repo.continuum.io/archive/Anaconda2-5.3.1-Linux-x86_64.sh#4da47b83b1eeac1ca8df0a43f6f580c8" "anaconda" verify_py27 + ;; +"MacOSX-x86_64" ) + install_script "Anaconda2-5.3.1-MacOSX-x86_64" "https://repo.continuum.io/archive/Anaconda2-5.3.1-MacOSX-x86_64.sh#559606f0dda021daa1afd612b2e3e37c" "anaconda" verify_py27 + ;; +* ) + { echo + colorize 1 "ERROR" + echo ": The binary distribution of Anaconda2 is not available for $(anaconda_architecture 2>/dev/null || true)." + echo + } >&2 + exit 1 + ;; +esac diff --git a/plugins/python-build/share/python-build/anaconda3-5.3.1 b/plugins/python-build/share/python-build/anaconda3-5.3.1 new file mode 100644 index 00000000..91422d57 --- /dev/null +++ b/plugins/python-build/share/python-build/anaconda3-5.3.1 @@ -0,0 +1,19 @@ +case "$(anaconda_architecture 2>/dev/null || true)" in +"Linux-x86" ) + install_script "Anaconda3-5.3.1-Linux-x86.sh" "https://repo.continuum.io/archive/Anaconda3-5.3.1-Linux-x86.sh#6878b6393add83e5fe77d7a1a27ee789" "anaconda" verify_py36 + ;; +"Linux-x86_64" ) + install_script "Anaconda3-5.3.1-Linux-x86_64.sh" "https://repo.continuum.io/archive/Anaconda3-5.3.1-Linux-x86_64.sh#334b43d5e8468507f123dbfe7437078f" "anaconda" verify_py36 + ;; +"MacOSX-x86_64" ) + install_script "Anaconda3-5.3.1-MacOSX-x86_64.sh" "https://repo.continuum.io/archive/Anaconda3-5.3.1-MacOSX-x86_64.sh#3c9d849a305653f67edfefdbacddce4d" "anaconda" verify_py36 + ;; +* ) + { echo + colorize 1 "ERROR" + echo ": The binary distribution of Anaconda3 is not available for $(anaconda_architecture 2>/dev/null || true)." + echo + } >&2 + exit 1 + ;; +esac