From eb6e24cef1b80446d58ccb20753823ce6ef60354 Mon Sep 17 00:00:00 2001 From: SNakano Date: Sat, 9 Apr 2016 10:35:52 +0900 Subject: [PATCH] Add Anaconda 4.0.0 --- .../share/python-build/anaconda-4.0.0 | 1 + .../share/python-build/anaconda2-4.0.0 | 19 +++++++++++++++++++ .../share/python-build/anaconda3-4.0.0 | 19 +++++++++++++++++++ 3 files changed, 39 insertions(+) create mode 100644 plugins/python-build/share/python-build/anaconda-4.0.0 create mode 100644 plugins/python-build/share/python-build/anaconda2-4.0.0 create mode 100644 plugins/python-build/share/python-build/anaconda3-4.0.0 diff --git a/plugins/python-build/share/python-build/anaconda-4.0.0 b/plugins/python-build/share/python-build/anaconda-4.0.0 new file mode 100644 index 00000000..41241bbd --- /dev/null +++ b/plugins/python-build/share/python-build/anaconda-4.0.0 @@ -0,0 +1 @@ +source "${BASH_SOURCE%/*}/anaconda2-4.0.0" diff --git a/plugins/python-build/share/python-build/anaconda2-4.0.0 b/plugins/python-build/share/python-build/anaconda2-4.0.0 new file mode 100644 index 00000000..d7ed2db7 --- /dev/null +++ b/plugins/python-build/share/python-build/anaconda2-4.0.0 @@ -0,0 +1,19 @@ +case "$(anaconda_architecture 2>/dev/null || true)" in +"Linux-x86" ) + install_script "Anaconda2-4.0.0-Linux-x86" "https://repo.continuum.io/archive/Anaconda2-4.0.0-Linux-x86.sh#f87d5a014499bd9a579ada3939eb22b1" "anaconda" verify_py27 + ;; +"Linux-x86_64" ) + install_script "Anaconda2-4.0.0-Linux-x86_64" "https://repo.continuum.io/archive/Anaconda2-4.0.0-Linux-x86_64.sh#31ed3ef07435d7068e1e03be49381b13" "anaconda" verify_py27 + ;; +"MacOSX-x86_64" ) + install_script "Anaconda2-4.0.0-MacOSX-x86_64" "https://repo.continuum.io/archive/Anaconda2-4.0.0-MacOSX-x86_64.sh#a3443b46f99bc6680c77c688af1b1f5a" "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-4.0.0 b/plugins/python-build/share/python-build/anaconda3-4.0.0 new file mode 100644 index 00000000..8b02b91d --- /dev/null +++ b/plugins/python-build/share/python-build/anaconda3-4.0.0 @@ -0,0 +1,19 @@ +case "$(anaconda_architecture 2>/dev/null || true)" in +"Linux-x86" ) + install_script "Anaconda3-4.0.0-Linux-x86" "https://repo.continuum.io/archive/Anaconda3-4.0.0-Linux-x86.sh#c88cbe27cc8fb4976e6bd38068cc57d6" "anaconda" verify_py35 + ;; +"Linux-x86_64" ) + install_script "Anaconda3-4.0.0-Linux-x86_64" "https://repo.continuum.io/archive/Anaconda3-4.0.0-Linux-x86_64.sh#546d1f02597587c685fa890c1d713b51" "anaconda" verify_py35 + ;; +"MacOSX-x86_64" ) + install_script "Anaconda3-4.0.0-MacOSX-x86_64" "https://repo.continuum.io/archive/Anaconda3-4.0.0-MacOSX-x86_64.sh#efd870aa3fabc8f4865a1b9567e69b69" "anaconda" verify_py35 + ;; +* ) + { 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