From 68a77df0fde84452976c44bebf9f319c4d69e314 Mon Sep 17 00:00:00 2001 From: Anton Petrov Date: Wed, 16 Oct 2019 19:32:23 +0300 Subject: [PATCH] Add anaconda3-2019.10 (#1427) --- .../share/python-build/anaconda3-2019.10 | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 plugins/python-build/share/python-build/anaconda3-2019.10 diff --git a/plugins/python-build/share/python-build/anaconda3-2019.10 b/plugins/python-build/share/python-build/anaconda3-2019.10 new file mode 100644 index 00000000..5f201aa1 --- /dev/null +++ b/plugins/python-build/share/python-build/anaconda3-2019.10 @@ -0,0 +1,19 @@ +case "$(anaconda_architecture 2>/dev/null || true)" in +"Linux-ppc64le" ) + install_script "Anaconda3-2019.10-Linux-ppc64le" "https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-ppc64le.sh#118c579f625555e1b116f0c3fd3842772e8fa0254cb2262c1c94e9eb40ba5160" "anaconda" verify_py37 + ;; +"Linux-x86_64" ) + install_script "Anaconda3-2019.10-Linux-x86_64" "https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh#46d762284d252e51cd58a8ca6c8adc9da2eadc82c342927b2f66ed011d1d8b53" "anaconda" verify_py37 + ;; +"MacOSX-x86_64" ) + install_script "Anaconda3-2019.10-MacOSX-x86_64" "https://repo.continuum.io/archive/Anaconda3-2019.10-MacOSX-x86_64.sh#4f77299ff4170cda64fdfcc27ac609a37d654c158f36c9ff25048793fe8a3a49" "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