From dc97ef3dbe7e4bb80d245c8bf9534dea7da843a8 Mon Sep 17 00:00:00 2001 From: Kuan-Yi Li Date: Mon, 15 Feb 2016 15:44:11 +0800 Subject: [PATCH] Add anaconda[23]-2.5.0 --- .../share/python-build/anaconda2-2.5.0 | 19 +++++++++++++++++++ .../share/python-build/anaconda3-2.5.0 | 19 +++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 plugins/python-build/share/python-build/anaconda2-2.5.0 create mode 100644 plugins/python-build/share/python-build/anaconda3-2.5.0 diff --git a/plugins/python-build/share/python-build/anaconda2-2.5.0 b/plugins/python-build/share/python-build/anaconda2-2.5.0 new file mode 100644 index 00000000..8367c6b3 --- /dev/null +++ b/plugins/python-build/share/python-build/anaconda2-2.5.0 @@ -0,0 +1,19 @@ +case "$(anaconda_architecture 2>/dev/null || true)" in +"Linux-x86" ) + install_script "Anaconda2-2.5.0-Linux-x86" "https://repo.continuum.io/archive/Anaconda2-2.5.0-Linux-x86.sh#4911047df51c46661f551d6022aee21a7e5d31df051d3433b8ff3ea3c2e771bb" "anaconda" verify_py27 + ;; +"Linux-x86_64" ) + install_script "Anaconda2-2.5.0-Linux-x86_64" "https://repo.continuum.io/archive/Anaconda2-2.5.0-Linux-x86_64.sh#e10abf459cde4a838bd6fc5ca03023c3401b81ad470627acde5a298d56715321" "anaconda" verify_py27 + ;; +"MacOSX-x86_64" ) + install_script "Anaconda2-2.5.0-MacOSX-x86_64" "https://repo.continuum.io/archive/Anaconda2-2.5.0-MacOSX-x86_64.sh#e7aa3b41210ee7ccf3c12e5b5ea43190d1811b58eaeca8584ccffa468ac8a346" "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-2.5.0 b/plugins/python-build/share/python-build/anaconda3-2.5.0 new file mode 100644 index 00000000..394ff8b1 --- /dev/null +++ b/plugins/python-build/share/python-build/anaconda3-2.5.0 @@ -0,0 +1,19 @@ +case "$(anaconda_architecture 2>/dev/null || true)" in +"Linux-x86" ) + install_script "Anaconda3-2.5.0-Linux-x86" "https://repo.continuum.io/archive/Anaconda3-2.5.0-Linux-x86.sh#22ac26c8bde7c4153ea859f6f6d8aca93bbf1e213d800167ad5ea530c62959af" "anaconda" verify_py35 + ;; +"Linux-x86_64" ) + install_script "Anaconda3-2.5.0-Linux-x86_64" "https://repo.continuum.io/archive/Anaconda3-2.5.0-Linux-x86_64.sh#addadcb927f15cb0b5b6e36890563d3352a8ff6a901ea753d389047d274a29a9" "anaconda" verify_py35 + ;; +"MacOSX-x86_64" ) + install_script "Anaconda3-2.5.0-MacOSX-x86_64" "https://repo.continuum.io/archive/Anaconda3-2.5.0-MacOSX-x86_64.sh#9bb0f926927db210f8c2a8de881213d1a44c7b3d6dbcb93dfa6b99ed4bbd3e61" "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