From a6776562c14ed642c72521fc2a9c899d5e91ec21 Mon Sep 17 00:00:00 2001 From: John Regan Date: Wed, 1 Feb 2017 16:28:44 +0000 Subject: [PATCH] Add Anaconda 4.3.0 --- .../share/python-build/anaconda2-4.3.0 | 19 +++++++++++++++++++ .../share/python-build/anaconda3-4.3.0 | 19 +++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 plugins/python-build/share/python-build/anaconda2-4.3.0 create mode 100644 plugins/python-build/share/python-build/anaconda3-4.3.0 diff --git a/plugins/python-build/share/python-build/anaconda2-4.3.0 b/plugins/python-build/share/python-build/anaconda2-4.3.0 new file mode 100644 index 00000000..1d01df0c --- /dev/null +++ b/plugins/python-build/share/python-build/anaconda2-4.3.0 @@ -0,0 +1,19 @@ +case "$(anaconda_architecture 2>/dev/null || true)" in +"Linux-x86" ) + install_script "Anaconda2-4.3.0-Linux-x86" "https://repo.continuum.io/archive/Anaconda2-4.3.0-Linux-x86.sh#b80d471839e8cf7b100e59308720cc13c141deb1ba903a4776c9a05f613e5078" "anaconda" verify_py27 + ;; +"Linux-x86_64" ) + install_script "Anaconda2-4.3.0-Linux-x86_64" "https://repo.continuum.io/archive/Anaconda2-4.3.0-Linux-x86_64.sh#7c52e6e99aabb24a49880130615a48e685da444c3c14eb48d6a65f3313bf745c" "anaconda" verify_py27 + ;; +"MacOSX-x86_64" ) + install_script "Anaconda2-4.2.1-MacOSX-x86_64" "https://repo.continuum.io/archive/Anaconda2-4.3.0-MacOSX-x86_64.sh#834ac0287062929ab5930661735ee617fd379bdfe79f3e0a20aebd614835b6c5" "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.3.0 b/plugins/python-build/share/python-build/anaconda3-4.3.0 new file mode 100644 index 00000000..ebe9ea4e --- /dev/null +++ b/plugins/python-build/share/python-build/anaconda3-4.3.0 @@ -0,0 +1,19 @@ +case "$(anaconda_architecture 2>/dev/null || true)" in +"Linux-x86" ) + install_script "Anaconda3-4.3.0-Linux-x86" "https://repo.continuum.io/archive/Anaconda3-4.3.0-Linux-x86.sh#f7ce2eeec3e42c2ba1ee3b9fcd670478fd30f4be547c6e0a675d183c4ca9dd9b" "anaconda" verify_py36 + ;; +"Linux-x86_64" ) + install_script "Anaconda3-4.3.0-Linux-x86_64" "https://repo.continuum.io/archive/Anaconda3-4.3.0-Linux-x86_64.sh#e9169c3a5029aa820393ac92704eb9ee0701778a085ca7bdc3c57b388ac1beb6" "anaconda" verify_py36 + ;; +"MacOSX-x86_64" ) + install_script "Anaconda3-4.3.0-MacOSX-x86_64" "https://repo.continuum.io/archive/Anaconda3-4.3.0-MacOSX-x86_64.sh#c53059b810c5e7a9a5ef9c46a7ed76675dfc7183f4ea867b4d81449cbd5a093d" "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