From 3773dfb4f1da5609845687e095d32cfe278bfa4b Mon Sep 17 00:00:00 2001 From: Anton Petrov Date: Sun, 25 Jul 2021 11:37:22 +0300 Subject: [PATCH] Update and rename miniforge3-pypy3 to miniforge-pypy3 --- .../share/python-build/miniforge-pypy3 | 23 +++++++++++++++++++ .../share/python-build/miniforge3-pypy3 | 23 ------------------- 2 files changed, 23 insertions(+), 23 deletions(-) create mode 100644 plugins/python-build/share/python-build/miniforge-pypy3 delete mode 100644 plugins/python-build/share/python-build/miniforge3-pypy3 diff --git a/plugins/python-build/share/python-build/miniforge-pypy3 b/plugins/python-build/share/python-build/miniforge-pypy3 new file mode 100644 index 00000000..ca7708ca --- /dev/null +++ b/plugins/python-build/share/python-build/miniforge-pypy3 @@ -0,0 +1,23 @@ + +case "$(anaconda_architecture 2>/dev/null || true)" in +"Linux-ppc64le" ) + install_script "Miniforge-pypy3-Linux-ppc64le" "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge-pypy3-Linux-ppc64le.sh" "miniconda" verify_py3_latest + ;; +"Linux-x86_64" ) + install_script "Miniforge-pypy3-Linux-x86_64" "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge-pypy3-Linux-x86_64.sh" "miniconda" verify_py3_latest + ;; +"Linux-aarch64" ) + install_script "Miniforge-pypy3-Linux-aarch64" "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge-pypy3-Linux-aarch64.sh" "miniconda" verify_py3_latest + ;; +"MacOSX-x86_64" ) + install_script "Miniforge-pypy3-MacOSX-x86_64" "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge-pypy3-MacOSX-x86_64.sh" "miniconda" verify_py3_latest + ;; +* ) + { echo + colorize 1 "ERROR" + echo ": The binary distribution of Miniforge with PyPy3 is not available for $(anaconda_architecture 2>/dev/null || true)." + echo + } >&2 + exit 1 + ;; +esac diff --git a/plugins/python-build/share/python-build/miniforge3-pypy3 b/plugins/python-build/share/python-build/miniforge3-pypy3 deleted file mode 100644 index a9edeaf9..00000000 --- a/plugins/python-build/share/python-build/miniforge3-pypy3 +++ /dev/null @@ -1,23 +0,0 @@ - -case "$(anaconda_architecture 2>/dev/null || true)" in -"Linux-ppc64le" ) - install_script "Miniforge3-pypy3-Linux-ppc64le" "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-pypy3-Linux-ppc64le.sh" "miniconda" verify_py3_latest - ;; -"Linux-x86_64" ) - install_script "Miniforge3-pypy3-Linux-x86_64" "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge-pypy3-Linux-x86_64.sh" "miniconda" verify_py3_latest - ;; -"Linux-aarch64" ) - install_script "Miniforge3-pypy3-Linux-aarch64" "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-pypy3-Linux-aarch64.sh" "miniconda" verify_py3_latest - ;; -"MacOSX-x86_64" ) - install_script "Miniforge3-pypy3-MacOSX-x86_64" "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-pypy3-MacOSX-x86_64.sh" "miniconda" verify_py3_latest - ;; -* ) - { echo - colorize 1 "ERROR" - echo ": The binary distribution of Miniforge with PyPy3 is not available for $(anaconda_architecture 2>/dev/null || true)." - echo - } >&2 - exit 1 - ;; -esac