From 962fdd974d17008dbbf20282f9fa4b3c1db1731a Mon Sep 17 00:00:00 2001 From: Anton Petrov Date: Thu, 27 Dec 2018 08:41:39 +0300 Subject: [PATCH] Added new Anaconda 2018.12 installers. new file: plugins/python-build/share/python-build/anaconda2-2018.12 new file: plugins/python-build/share/python-build/anaconda3-2018.12 Close #123 --- .../share/python-build/anaconda2-2018.12 | 19 +++++++++++++++++++ .../share/python-build/anaconda3-2018.12 | 19 +++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 plugins/python-build/share/python-build/anaconda2-2018.12 create mode 100644 plugins/python-build/share/python-build/anaconda3-2018.12 diff --git a/plugins/python-build/share/python-build/anaconda2-2018.12 b/plugins/python-build/share/python-build/anaconda2-2018.12 new file mode 100644 index 00000000..04ac4e69 --- /dev/null +++ b/plugins/python-build/share/python-build/anaconda2-2018.12 @@ -0,0 +1,19 @@ +case "$(anaconda_architecture 2>/dev/null || true)" in +"Linux-x86" ) + install_script "Anaconda2-2018.12-Linux-x86.sh" "https://repo.anaconda.com/archive/Anaconda2-2018.12-Linux-x86.sh#e086c041695c0e50642aee8f4e7adad3185c6ce1d11737665653497d2edd78fd" "anaconda" verify_py27 + ;; +"Linux-x86_64" ) + install_script "Anaconda2-2018.12-Linux-x86_64.sh" "https://repo.anaconda.com/archive/Anaconda2-2018.12-Linux-x86_64.sh#1821d4b623ed449e0acb6df3ecbabd3944cffa98f96a5234b7a102a7c0853dc6" "anaconda" verify_py27 + ;; +"MacOSX-x86_64" ) + install_script "Anaconda2-2018.12-MacOSX-x86_64.sh" "https://repo.anaconda.com/archive/Anaconda2-2018.12-MacOSX-x86_64.sh#5c590b1b3cdc2eedd52edce0caabbce6665d84084d31b913e789e8c46a94859d" "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-2018.12 b/plugins/python-build/share/python-build/anaconda3-2018.12 new file mode 100644 index 00000000..6aa8dc83 --- /dev/null +++ b/plugins/python-build/share/python-build/anaconda3-2018.12 @@ -0,0 +1,19 @@ +case "$(anaconda_architecture 2>/dev/null || true)" in +"Linux-x86" ) + install_script "Anaconda3-2018.12-Linux-x86.sh" "https://repo.anaconda.com/archive/Anaconda3-2018.12-Linux-x86.sh#7895052814921d45ed0585d1fb19f8edd6fbd02b61639310f770e2ebe85cd975" "anaconda" verify_py37 + ;; +"Linux-x86_64" ) + install_script "Anaconda3-2018.12-Linux-x86_64.sh" "https://repo.anaconda.com/archive/Anaconda3-2018.12-Linux-x86_64.sh#1019d0857e5865f8a6861eaf15bfe535b87e92b72ce4f531000dc672be7fce00" "anaconda" verify_py37 + ;; +"MacOSX-x86_64" ) + install_script "Anaconda3-2018.12-MacOSX-x86_64.sh" "https://repo.anaconda.com/archive/Anaconda3-2018.12-MacOSX-x86_64.sh#4ccd3944d994fd47e5701c341725a63e984f8c042bf4dc19c9dfc7c135e7d8e4" "anaconda" verify_py37 + ;; +* ) + { 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