From af59ef00883d4ef3a62a994ea6462775b9d48ca5 Mon Sep 17 00:00:00 2001 From: Anton Petrov Date: Sun, 25 Jul 2021 11:09:54 +0300 Subject: [PATCH 01/13] Create miniforge3-latest --- .../share/python-build/miniforge3-latest | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 plugins/python-build/share/python-build/miniforge3-latest diff --git a/plugins/python-build/share/python-build/miniforge3-latest b/plugins/python-build/share/python-build/miniforge3-latest new file mode 100644 index 00000000..82a953f6 --- /dev/null +++ b/plugins/python-build/share/python-build/miniforge3-latest @@ -0,0 +1,25 @@ +case "$(anaconda_architecture 2>/dev/null || true)" in +"Linux-ppc64le" ) + install_script "Miniforge3-Linux-ppc64le" "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-ppc64le.sh" "miniconda" verify_py38 + ;; +"Linux-x86_64" ) + install_script "Miniforge3-Linux-x86_64" "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh" "miniconda" verify_py3_latest + ;; +"Linux-aarch64" ) + install_script "Miniforge3-Linux-aarch64" "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-aarch64.sh" "miniconda" verify_py3_latest + ;; +"MacOSX-arm64" ) + install_script "Miniforge3-MacOSX-arm64" "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-MacOSX-arm64.sh" "miniconda" verify_py3_latest + ;; +"MacOSX-x86_64" ) + install_script "Miniforge3-MacOSX-x86_64" "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-MacOSX-x86_64.sh" "miniconda" verify_py3_latest + ;; +* ) + { echo + colorize 1 "ERROR" + echo ": The binary distribution of Miniforge is not available for $(anaconda_architecture 2>/dev/null || true)." + echo + } >&2 + exit 1 + ;; +esac From 0c287ffcf7a15a9588ca70ea1a04ef3fef4e4195 Mon Sep 17 00:00:00 2001 From: Anton Petrov Date: Sun, 25 Jul 2021 11:12:29 +0300 Subject: [PATCH 02/13] Create mambaforge3-latest --- .../share/python-build/mambaforge3-latest | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 plugins/python-build/share/python-build/mambaforge3-latest diff --git a/plugins/python-build/share/python-build/mambaforge3-latest b/plugins/python-build/share/python-build/mambaforge3-latest new file mode 100644 index 00000000..bc9bf88a --- /dev/null +++ b/plugins/python-build/share/python-build/mambaforge3-latest @@ -0,0 +1,25 @@ +case "$(anaconda_architecture 2>/dev/null || true)" in +"Linux-ppc64le" ) + install_script "Mambaforge3-Linux-ppc64le" "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-ppc64le.sh" "miniconda" verify_py3_latest + ;; +"Linux-x86_64" ) + install_script "Mambaforge3-Linux-x86_64" "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-x86_64.sh" "miniconda" verify_py3_latest + ;; +"Linux-aarch64" ) + install_script "Mambaforge3-Linux-aarch64" "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-aarch64.sh" "miniconda" verify_py3_latest + ;; +"MacOSX-arm64" ) + install_script "Mambaforge3-MacOSX-arm64" "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-MacOSX-arm64.sh" "miniconda" verify_py3_latest + ;; +"MacOSX-x86_64" ) + install_script "Mambaforge3-MacOSX-x86_64" "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-MacOSX-x86_64.sh" "miniconda" verify_py3_latest + ;; +* ) + { echo + colorize 1 "ERROR" + echo ": The binary distribution of Mambaforge is not available for $(anaconda_architecture 2>/dev/null || true)." + echo + } >&2 + exit 1 + ;; +esac From d4d66b618351400fdcfefdef733f840131b32185 Mon Sep 17 00:00:00 2001 From: Anton Petrov Date: Sun, 25 Jul 2021 11:12:58 +0300 Subject: [PATCH 03/13] Update miniforge3-latest --- plugins/python-build/share/python-build/miniforge3-latest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/python-build/share/python-build/miniforge3-latest b/plugins/python-build/share/python-build/miniforge3-latest index 82a953f6..d340c636 100644 --- a/plugins/python-build/share/python-build/miniforge3-latest +++ b/plugins/python-build/share/python-build/miniforge3-latest @@ -1,6 +1,6 @@ case "$(anaconda_architecture 2>/dev/null || true)" in "Linux-ppc64le" ) - install_script "Miniforge3-Linux-ppc64le" "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-ppc64le.sh" "miniconda" verify_py38 + install_script "Miniforge3-Linux-ppc64le" "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-ppc64le.sh" "miniconda" verify_py3_latest ;; "Linux-x86_64" ) install_script "Miniforge3-Linux-x86_64" "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh" "miniconda" verify_py3_latest From db82c7339125c30ff9ae474cabaccb0b27cc8e60 Mon Sep 17 00:00:00 2001 From: Anton Petrov Date: Sun, 25 Jul 2021 11:23:28 +0300 Subject: [PATCH 04/13] Create miniforge3-pypy3 --- .../share/python-build/miniforge3-pypy3 | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 plugins/python-build/share/python-build/miniforge3-pypy3 diff --git a/plugins/python-build/share/python-build/miniforge3-pypy3 b/plugins/python-build/share/python-build/miniforge3-pypy3 new file mode 100644 index 00000000..a9edeaf9 --- /dev/null +++ b/plugins/python-build/share/python-build/miniforge3-pypy3 @@ -0,0 +1,23 @@ + +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 From 56fd6c3c51a6d68a096f27105c599b48f4b9df58 Mon Sep 17 00:00:00 2001 From: Anton Petrov Date: Sun, 25 Jul 2021 11:24:31 +0300 Subject: [PATCH 05/13] Update and rename miniforge3-latest to miniforge3 --- .../share/python-build/{miniforge3-latest => miniforge3} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename plugins/python-build/share/python-build/{miniforge3-latest => miniforge3} (90%) diff --git a/plugins/python-build/share/python-build/miniforge3-latest b/plugins/python-build/share/python-build/miniforge3 similarity index 90% rename from plugins/python-build/share/python-build/miniforge3-latest rename to plugins/python-build/share/python-build/miniforge3 index d340c636..1af5ea67 100644 --- a/plugins/python-build/share/python-build/miniforge3-latest +++ b/plugins/python-build/share/python-build/miniforge3 @@ -17,7 +17,7 @@ case "$(anaconda_architecture 2>/dev/null || true)" in * ) { echo colorize 1 "ERROR" - echo ": The binary distribution of Miniforge is not available for $(anaconda_architecture 2>/dev/null || true)." + echo ": The binary distribution of Miniforge3 is not available for $(anaconda_architecture 2>/dev/null || true)." echo } >&2 exit 1 From fc7560bcfde1b2c68727e1c1bc21ed2b301cf45e Mon Sep 17 00:00:00 2001 From: Anton Petrov Date: Sun, 25 Jul 2021 11:24:59 +0300 Subject: [PATCH 06/13] Update and rename mambaforge3-latest to mambaforge3 --- .../share/python-build/{mambaforge3-latest => mambaforge3} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename plugins/python-build/share/python-build/{mambaforge3-latest => mambaforge3} (90%) diff --git a/plugins/python-build/share/python-build/mambaforge3-latest b/plugins/python-build/share/python-build/mambaforge3 similarity index 90% rename from plugins/python-build/share/python-build/mambaforge3-latest rename to plugins/python-build/share/python-build/mambaforge3 index bc9bf88a..6ca5eaa9 100644 --- a/plugins/python-build/share/python-build/mambaforge3-latest +++ b/plugins/python-build/share/python-build/mambaforge3 @@ -17,7 +17,7 @@ case "$(anaconda_architecture 2>/dev/null || true)" in * ) { echo colorize 1 "ERROR" - echo ": The binary distribution of Mambaforge is not available for $(anaconda_architecture 2>/dev/null || true)." + echo ": The binary distribution of Mambaforge3 is not available for $(anaconda_architecture 2>/dev/null || true)." echo } >&2 exit 1 From a6d6ba8050ddd0b124c804b1d95ac0a1ec19ede3 Mon Sep 17 00:00:00 2001 From: Anton Petrov Date: Sun, 25 Jul 2021 11:26:54 +0300 Subject: [PATCH 07/13] Rename miniforge3 to miniforge3-latest --- .../share/python-build/{miniforge3 => miniforge3-latest} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename plugins/python-build/share/python-build/{miniforge3 => miniforge3-latest} (100%) diff --git a/plugins/python-build/share/python-build/miniforge3 b/plugins/python-build/share/python-build/miniforge3-latest similarity index 100% rename from plugins/python-build/share/python-build/miniforge3 rename to plugins/python-build/share/python-build/miniforge3-latest From 8c251a5e9bbcaf761e26e3f2784d0fae80c89f70 Mon Sep 17 00:00:00 2001 From: Anton Petrov Date: Sun, 25 Jul 2021 11:27:21 +0300 Subject: [PATCH 08/13] Rename mambaforge3 to mambaforge3-latest --- .../share/python-build/{mambaforge3 => mambaforge3-latest} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename plugins/python-build/share/python-build/{mambaforge3 => mambaforge3-latest} (100%) diff --git a/plugins/python-build/share/python-build/mambaforge3 b/plugins/python-build/share/python-build/mambaforge3-latest similarity index 100% rename from plugins/python-build/share/python-build/mambaforge3 rename to plugins/python-build/share/python-build/mambaforge3-latest From 9b6377de23c3e261f333bed70097673d4f4e246c Mon Sep 17 00:00:00 2001 From: Anton Petrov Date: Sun, 25 Jul 2021 11:30:59 +0300 Subject: [PATCH 09/13] Create mambaforge3-pypy3-latest --- .../python-build/mambaforge3-pypy3-latest | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 plugins/python-build/share/python-build/mambaforge3-pypy3-latest diff --git a/plugins/python-build/share/python-build/mambaforge3-pypy3-latest b/plugins/python-build/share/python-build/mambaforge3-pypy3-latest new file mode 100644 index 00000000..c42197d8 --- /dev/null +++ b/plugins/python-build/share/python-build/mambaforge3-pypy3-latest @@ -0,0 +1,22 @@ +ase "$(anaconda_architecture 2>/dev/null || true)" in +"Linux-ppc64le" ) + install_script "Mambaforge-pypy3-Linux-ppc64le" "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-pypy3-Linux-ppc64le.sh" "miniconda" verify_py3_latest + ;; +"Linux-x86_64" ) + install_script "Mambaforge-pypy3-Linux-x86_64" "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-pypy3-Linux-x86_64.sh" "miniconda" verify_py3_latest + ;; +"Linux-aarch64" ) + install_script "Mambaforge-pypy3-Linux-aarch64" "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-pypy3-Linux-aarch64.sh" "miniconda" verify_py3_latest + ;; +"MacOSX-x86_64" ) + install_script "Mambaforge-pypy3-MacOSX-x86_64" "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-pypy3-MacOSX-x86_64.sh" "miniconda" verify_py3_latest + ;; +* ) + { echo + colorize 1 "ERROR" + echo ": The binary distribution of Mambaforge with PyPy3 is not available for $(anaconda_architecture 2>/dev/null || true)." + echo + } >&2 + exit 1 + ;; +esac From fd8854dea153b2b76a3119492818c3f1b981cf1c Mon Sep 17 00:00:00 2001 From: Anton Petrov Date: Sun, 25 Jul 2021 11:34:05 +0300 Subject: [PATCH 10/13] Rename miniforge3-latest to miniforge3 --- .../share/python-build/{miniforge3-latest => miniforge3} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename plugins/python-build/share/python-build/{miniforge3-latest => miniforge3} (100%) diff --git a/plugins/python-build/share/python-build/miniforge3-latest b/plugins/python-build/share/python-build/miniforge3 similarity index 100% rename from plugins/python-build/share/python-build/miniforge3-latest rename to plugins/python-build/share/python-build/miniforge3 From abe0056b5f9b2f1fc437b858bb6c9218f3303134 Mon Sep 17 00:00:00 2001 From: Anton Petrov Date: Sun, 25 Jul 2021 11:34:51 +0300 Subject: [PATCH 11/13] Update and rename mambaforge3-latest to mambaforge --- .../share/python-build/mambaforge | 25 +++++++++++++++++++ .../share/python-build/mambaforge3-latest | 25 ------------------- 2 files changed, 25 insertions(+), 25 deletions(-) create mode 100644 plugins/python-build/share/python-build/mambaforge delete mode 100644 plugins/python-build/share/python-build/mambaforge3-latest diff --git a/plugins/python-build/share/python-build/mambaforge b/plugins/python-build/share/python-build/mambaforge new file mode 100644 index 00000000..ff1ea141 --- /dev/null +++ b/plugins/python-build/share/python-build/mambaforge @@ -0,0 +1,25 @@ +case "$(anaconda_architecture 2>/dev/null || true)" in +"Linux-ppc64le" ) + install_script "Mambaforge-Linux-ppc64le" "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-ppc64le.sh" "miniconda" verify_py3_latest + ;; +"Linux-x86_64" ) + install_script "Mambaforge-Linux-x86_64" "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-x86_64.sh" "miniconda" verify_py3_latest + ;; +"Linux-aarch64" ) + install_script "Mambaforge-Linux-aarch64" "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-aarch64.sh" "miniconda" verify_py3_latest + ;; +"MacOSX-arm64" ) + install_script "Mambaforge-MacOSX-arm64" "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-MacOSX-arm64.sh" "miniconda" verify_py3_latest + ;; +"MacOSX-x86_64" ) + install_script "Mambaforge-MacOSX-x86_64" "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-MacOSX-x86_64.sh" "miniconda" verify_py3_latest + ;; +* ) + { echo + colorize 1 "ERROR" + echo ": The binary distribution of Mambaforge3 is not available for $(anaconda_architecture 2>/dev/null || true)." + echo + } >&2 + exit 1 + ;; +esac diff --git a/plugins/python-build/share/python-build/mambaforge3-latest b/plugins/python-build/share/python-build/mambaforge3-latest deleted file mode 100644 index 6ca5eaa9..00000000 --- a/plugins/python-build/share/python-build/mambaforge3-latest +++ /dev/null @@ -1,25 +0,0 @@ -case "$(anaconda_architecture 2>/dev/null || true)" in -"Linux-ppc64le" ) - install_script "Mambaforge3-Linux-ppc64le" "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-ppc64le.sh" "miniconda" verify_py3_latest - ;; -"Linux-x86_64" ) - install_script "Mambaforge3-Linux-x86_64" "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-x86_64.sh" "miniconda" verify_py3_latest - ;; -"Linux-aarch64" ) - install_script "Mambaforge3-Linux-aarch64" "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-aarch64.sh" "miniconda" verify_py3_latest - ;; -"MacOSX-arm64" ) - install_script "Mambaforge3-MacOSX-arm64" "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-MacOSX-arm64.sh" "miniconda" verify_py3_latest - ;; -"MacOSX-x86_64" ) - install_script "Mambaforge3-MacOSX-x86_64" "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-MacOSX-x86_64.sh" "miniconda" verify_py3_latest - ;; -* ) - { echo - colorize 1 "ERROR" - echo ": The binary distribution of Mambaforge3 is not available for $(anaconda_architecture 2>/dev/null || true)." - echo - } >&2 - exit 1 - ;; -esac From 3773dfb4f1da5609845687e095d32cfe278bfa4b Mon Sep 17 00:00:00 2001 From: Anton Petrov Date: Sun, 25 Jul 2021 11:37:22 +0300 Subject: [PATCH 12/13] 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 From c435fde08899abec29fc66eb03191e5a7dec40f9 Mon Sep 17 00:00:00 2001 From: Anton Petrov Date: Sun, 25 Jul 2021 11:38:11 +0300 Subject: [PATCH 13/13] Rename mambaforge3-pypy3-latest to mambaforge-pypy3 --- .../python-build/{mambaforge3-pypy3-latest => mambaforge-pypy3} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename plugins/python-build/share/python-build/{mambaforge3-pypy3-latest => mambaforge-pypy3} (100%) diff --git a/plugins/python-build/share/python-build/mambaforge3-pypy3-latest b/plugins/python-build/share/python-build/mambaforge-pypy3 similarity index 100% rename from plugins/python-build/share/python-build/mambaforge3-pypy3-latest rename to plugins/python-build/share/python-build/mambaforge-pypy3