Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package pyenv for openSUSE:Factory checked 
in at 2024-07-01 11:21:58
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/pyenv (Old)
 and      /work/SRC/openSUSE:Factory/.pyenv.new.18349 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "pyenv"

Mon Jul  1 11:21:58 2024 rev:40 rq:1184161 version:2.4.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/pyenv/pyenv.changes      2024-06-11 
18:33:13.309485039 +0200
+++ /work/SRC/openSUSE:Factory/.pyenv.new.18349/pyenv.changes   2024-07-01 
11:22:47.228334925 +0200
@@ -1,0 +2,11 @@
+Sun Jun 30 21:48:24 UTC 2024 - Dirk Müller <dmuel...@suse.com>
+
+- update to 2.4.5:
+  * python-build: Add ancient versions; 2.4, 2.4.1, 2.4.3, 2.4.4
+    and 2.4.5
+  * python-build: Add alpha releases; 3.4.0a2, 3.4.0a3, 3.4.0a4
+  * python-build: Update default pip version (1.4 -> 1.4.1)
+  * python-build: Update default setuptools version (0.9.7 ->
+    1.1.6)
+
+-------------------------------------------------------------------

Old:
----
  pyenv-2.4.2.tar.gz

New:
----
  pyenv-2.4.5.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ pyenv.spec ++++++
--- /var/tmp/diff_new_pack.RoxAqv/_old  2024-07-01 11:22:48.340375172 +0200
+++ /var/tmp/diff_new_pack.RoxAqv/_new  2024-07-01 11:22:48.348375462 +0200
@@ -19,7 +19,7 @@
 %define pyenv_dir      %{_libexecdir}/pyenv
 #
 Name:           pyenv
-Version:        2.4.2
+Version:        2.4.5
 Release:        0
 Summary:        Python Version Management
 License:        MIT

++++++ pyenv-2.4.2.tar.gz -> pyenv-2.4.5.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyenv-2.4.2/CHANGELOG.md new/pyenv-2.4.5/CHANGELOG.md
--- old/pyenv-2.4.2/CHANGELOG.md        2024-06-08 22:49:46.000000000 +0200
+++ new/pyenv-2.4.5/CHANGELOG.md        2024-06-30 19:55:53.000000000 +0200
@@ -1,5 +1,12 @@
 # Version History
 
+## Release v2.4.4
+* Add support for miniconda3 24.5.0-0 with py3.12, py3.11, py3.10, py3.9 by 
@binbjz in https://github.com/pyenv/pyenv/pull/2994
+* Add support for free-threaded Python by @colesbury in 
https://github.com/pyenv/pyenv/pull/2995
+
+## Release v2.4.3
+* Add miniconda3 24.4.0-0 by @binbjz in 
https://github.com/pyenv/pyenv/pull/2982
+
 ## Release v2.4.2
 * Add script to install graalpy development builds by @timfel in 
https://github.com/pyenv/pyenv/pull/2969
 * Correct the Explanation of PATH Variable Lookup by @Y-askour in 
https://github.com/pyenv/pyenv/pull/2975
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyenv-2.4.2/README.md new/pyenv-2.4.5/README.md
--- old/pyenv-2.4.2/README.md   2024-06-08 22:49:46.000000000 +0200
+++ new/pyenv-2.4.5/README.md   2024-06-30 19:55:53.000000000 +0200
@@ -580,10 +580,13 @@
 
 ## Pyenv plugins
 
-Pyenv provides a simple, flexible and maintainable way to extend and customize 
its functionality with plugins --
+Pyenv provides a simple way to extend and customize its functionality with 
plugins --
 as simple as creating a plugin directory and dropping a shell script on a 
certain subpath of it
 with whatever extra logic you need to be run at certain moments.
 
+The main idea is that most things that you can put under 
`$PYENV_ROOT/<whatever>` you can also put
+under `$PYENV_ROOT/plugins/your_plugin_name/<whatever>`.
+
 See [_Plugins_ on the wiki](https://github.com/pyenv/pyenv/wiki/Plugins) on 
how to install and use plugins
 as well as a catalog of some useful existing plugins for common needs.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyenv-2.4.2/libexec/pyenv---version 
new/pyenv-2.4.5/libexec/pyenv---version
--- old/pyenv-2.4.2/libexec/pyenv---version     2024-06-08 22:49:46.000000000 
+0200
+++ new/pyenv-2.4.5/libexec/pyenv---version     2024-06-30 19:55:53.000000000 
+0200
@@ -12,7 +12,7 @@
 set -e
 [ -n "$PYENV_DEBUG" ] && set -x
 
-version="2.4.2"
+version="2.4.4"
 git_revision=""
 
 if cd "${BASH_SOURCE%/*}" 2>/dev/null && git remote -v 2>/dev/null | grep -q 
pyenv; then
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyenv-2.4.2/plugins/python-build/README.md 
new/pyenv-2.4.5/plugins/python-build/README.md
--- old/pyenv-2.4.2/plugins/python-build/README.md      2024-06-08 
22:49:46.000000000 +0200
+++ new/pyenv-2.4.5/plugins/python-build/README.md      2024-06-30 
19:55:53.000000000 +0200
@@ -96,7 +96,10 @@
 See the [python-build built-in 
definitions](https://github.com/pyenv/pyenv/tree/master/plugins/python-build/share/python-build)
 as a starting point for
 custom definition files.
 
-[definitions]: 
https://github.com/pyenv/pyenv/tree/master/plugins/python-build/share/python-build
+#### Adding definitions with a Pyenv plugin
+
+You can add your own definitions with a [Pyenv 
plugin](https://github.com/pyenv/pyenv?tab=readme-ov-file#pyenv-plugins) by 
placing them under
+`$PYENV_ROOT/plugins/your_plugin_name/share/python-build`.
 
 ### Default build configuration
 
@@ -197,20 +200,6 @@
 ```
 
 
-### Building with `--enable-shared`
-
-You can build CPython with `--enable-shared` to install a version with
-shared object.
-
-If `--enable-shared` was found in `PYTHON_CONFIGURE_OPTS` or `CONFIGURE_OPTS`,
-`python-build` will automatically set `RPATH` to the pyenv's prefix directory.
-This means you don't have to set `LD_LIBRARY_PATH` or `DYLD_LIBRARY_PATH` for
-the version(s) installed with `--enable-shared`.
-
-```sh
-$ env PYTHON_CONFIGURE_OPTS="--enable-shared" pyenv install 2.7.9
-```
-
 ### Building for maximum performance
 
 Building CPython with `--enable-optimizations` will result in a faster
@@ -238,14 +227,30 @@
 ### Package download mirrors
 
 python-build will first attempt to download package files from a mirror hosted 
on
-GitHub Pages. If a package is not available on the mirror, if the mirror
-is down, or if the download is corrupt, python-build will fall back to the
+GitHub Pages. If this fails, it will fall back to the
 official URL specified in the definition file.
 
 You can point python-build to another mirror by specifying the
-`PYTHON_BUILD_MIRROR_URL` environment variable--useful if you'd like to run 
your
-own local mirror, for example. Package mirror URLs are constructed by joining
-this variable with the SHA2 checksum of the package file.
+`PYTHON_BUILD_MIRROR_URL` environment variable.
+
+Package mirror URLs are constructed by joining
+`$PYTHON_BUILD_MIRROR_URL` with the SHA2 checksum of the package file as 
specified in the URL
+in the installation script (the part after the hash sign). E.g.:
+
+```
+https://mycache.example.com/0419e9085bf51b7a672009b3f50dbf1859acdf18ba725d0ec19aa5c8503f0ea3
+```
+
+If you have replicated the directory structure of an official site, the 
easiest way to adapt
+would be to make symlinks at the mirror's root:
+
+```
+0419e9085bf51b7a672009b3f50dbf1859acdf18ba725d0ec19aa5c8503f0ea3 -> 
3.10.10/Python-3.10.10.tar.xz
+```
+
+The rationale is to abstract away difference between directory structures of 
sites
+of various Python flavors and their occasional changes as well as to accomodate
+people who only wish to cache some select downloads. This also allows to 
mirror multiple sites at once.
 
 If the mirror being used does not have the same checksum (*e.g.* with a
 pull-through cache like Artifactory), you can set the
@@ -258,15 +263,15 @@
 The official python-build download mirror is provided by
 [GitHub Pages](http://yyuu.github.io/pythons/).
 
-### Package download caching
+### Package download cache
 
-You can instruct python-build to keep a local cache of downloaded package files
-by setting the `PYTHON_BUILD_CACHE_PATH` environment variable. When set, 
package
-files will be kept in this directory after the first successful download and
-reused by subsequent invocations of `python-build` and `pyenv install`.
+Python-build will keep a cache of downloaded package files
+at the location specified by the `PYTHON_BUILD_CACHE_PATH` environment variable
+if it exists. The default is `~/.pyenv/cache`, so you can
+enable caching by just creating that directory.
 
-The `pyenv install` command defaults this path to `~/.pyenv/cache`, so in most
-cases you can enable download caching simply by creating that directory.
+The name of the would-be cached file is reported by Pyenv in the "Downloading 
&lt;filename&gt;..." message.
+It's possible to warm up the cache by manually putting the file there under an 
appropriate name.
 
 ### Keeping the build directory after installation
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyenv-2.4.2/plugins/python-build/bin/python-build 
new/pyenv-2.4.5/plugins/python-build/bin/python-build
--- old/pyenv-2.4.2/plugins/python-build/bin/python-build       2024-06-08 
22:49:46.000000000 +0200
+++ new/pyenv-2.4.5/plugins/python-build/bin/python-build       2024-06-30 
19:55:53.000000000 +0200
@@ -822,6 +822,7 @@
       use_homebrew_zlib || true
     fi
     use_dsymutil || true
+    use_free_threading || true
   fi
 
   ( if [ "${CFLAGS+defined}" ] || [ "${!PACKAGE_CFLAGS+defined}" ]; then
@@ -1761,6 +1762,12 @@
   fi
 }
 
+use_free_threading() {
+  if [[ -n "$PYTHON_BUILD_FREE_THREADING" ]]; then
+    package_option python configure --disable-gil
+  fi
+}
+
 build_package_enable_shared() {
     package_option python configure --enable-shared
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pyenv-2.4.2/plugins/python-build/share/python-build/3.13.0b2 
new/pyenv-2.4.5/plugins/python-build/share/python-build/3.13.0b2
--- old/pyenv-2.4.2/plugins/python-build/share/python-build/3.13.0b2    
2024-06-08 22:49:46.000000000 +0200
+++ new/pyenv-2.4.5/plugins/python-build/share/python-build/3.13.0b2    
1970-01-01 01:00:00.000000000 +0100
@@ -1,9 +0,0 @@
-prefer_openssl3
-export PYTHON_BUILD_CONFIGURE_WITH_OPENSSL=1
-install_package "openssl-3.3.1" 
"https://www.openssl.org/source/openssl-3.3.1.tar.gz#777cd596284c883375a2a7a11bf5d2786fc5413255efab20c50d6ffe6d020b7e";
 mac_openssl --if has_broken_mac_openssl
-install_package "readline-8.2" 
"https://ftpmirror.gnu.org/readline/readline-8.2.tar.gz#3feb7171f16a84ee82ca18a36d7b9be109a52c04f492a053331d7d1095007c35";
 mac_readline --if has_broken_mac_readline
-if has_tar_xz_support; then
-    install_package "Python-3.13.0b2" 
"https://www.python.org/ftp/python/3.13.0/Python-3.13.0b2.tar.xz#bf11be01b42a07a3659e4e233591e03da631b7112aa61ee1e030eeb8c5dfd869";
 standard verify_py313 copy_python_gdb ensurepip
-else
-    install_package "Python-3.13.0b2" 
"https://www.python.org/ftp/python/3.13.0/Python-3.13.0b2.tgz#c87c42aa8137230a15a02ed90a6600610ba680cb5b54c0fbc57581a0d032e0c4";
 standard verify_py313 copy_python_gdb ensurepip
-fi
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pyenv-2.4.2/plugins/python-build/share/python-build/3.13.0b3 
new/pyenv-2.4.5/plugins/python-build/share/python-build/3.13.0b3
--- old/pyenv-2.4.2/plugins/python-build/share/python-build/3.13.0b3    
1970-01-01 01:00:00.000000000 +0100
+++ new/pyenv-2.4.5/plugins/python-build/share/python-build/3.13.0b3    
2024-06-30 19:55:53.000000000 +0200
@@ -0,0 +1,9 @@
+prefer_openssl3
+export PYTHON_BUILD_CONFIGURE_WITH_OPENSSL=1
+install_package "openssl-3.3.1" 
"https://www.openssl.org/source/openssl-3.3.1.tar.gz#777cd596284c883375a2a7a11bf5d2786fc5413255efab20c50d6ffe6d020b7e";
 mac_openssl --if has_broken_mac_openssl
+install_package "readline-8.2" 
"https://ftpmirror.gnu.org/readline/readline-8.2.tar.gz#3feb7171f16a84ee82ca18a36d7b9be109a52c04f492a053331d7d1095007c35";
 mac_readline --if has_broken_mac_readline
+if has_tar_xz_support; then
+    install_package "Python-3.13.0b3" 
"https://www.python.org/ftp/python/3.13.0/Python-3.13.0b3.tar.xz#3be094ad08b11dc2a065463524239c78dc9f2b342b01dcd4e1e606dbbc5c78a5";
 standard verify_py313 copy_python_gdb ensurepip
+else
+    install_package "Python-3.13.0b3" 
"https://www.python.org/ftp/python/3.13.0/Python-3.13.0b3.tgz#5e9c01cdb3e2fb1f5732a55e9522cb6a011693e795ec347b3f69ff5e217175e4";
 standard verify_py313 copy_python_gdb ensurepip
+fi
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pyenv-2.4.2/plugins/python-build/share/python-build/3.13t-dev 
new/pyenv-2.4.5/plugins/python-build/share/python-build/3.13t-dev
--- old/pyenv-2.4.2/plugins/python-build/share/python-build/3.13t-dev   
1970-01-01 01:00:00.000000000 +0100
+++ new/pyenv-2.4.5/plugins/python-build/share/python-build/3.13t-dev   
2024-06-30 19:55:53.000000000 +0200
@@ -0,0 +1,2 @@
+export PYTHON_BUILD_FREE_THREADING=1
+source "$(dirname "${BASH_SOURCE[0]}")"/3.13-dev
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pyenv-2.4.2/plugins/python-build/share/python-build/3.14t-dev 
new/pyenv-2.4.5/plugins/python-build/share/python-build/3.14t-dev
--- old/pyenv-2.4.2/plugins/python-build/share/python-build/3.14t-dev   
1970-01-01 01:00:00.000000000 +0100
+++ new/pyenv-2.4.5/plugins/python-build/share/python-build/3.14t-dev   
2024-06-30 19:55:53.000000000 +0200
@@ -0,0 +1,2 @@
+export PYTHON_BUILD_FREE_THREADING=1
+source "$(dirname "${BASH_SOURCE[0]}")"/3.14-dev
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pyenv-2.4.2/plugins/python-build/share/python-build/miniconda3-3.10-24.4.0-0
 
new/pyenv-2.4.5/plugins/python-build/share/python-build/miniconda3-3.10-24.4.0-0
--- 
old/pyenv-2.4.2/plugins/python-build/share/python-build/miniconda3-3.10-24.4.0-0
    1970-01-01 01:00:00.000000000 +0100
+++ 
new/pyenv-2.4.5/plugins/python-build/share/python-build/miniconda3-3.10-24.4.0-0
    2024-06-30 19:55:53.000000000 +0200
@@ -0,0 +1,25 @@
+case "$(anaconda_architecture 2>/dev/null || true)" in
+"Linux-aarch64" )
+  install_script "Miniconda3-py310_24.4.0-0-Linux-aarch64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py310_24.4.0-0-Linux-aarch64.sh#68f3a537bf2ba8031961c8be6b52236c75478c797e0333e055539f02147676b8";
 "miniconda" verify_py310
+  ;;
+"Linux-s390x" )
+  install_script "Miniconda3-py310_24.4.0-0-Linux-s390x.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py310_24.4.0-0-Linux-s390x.sh#d5d06f9aa66d9cc9a23d6278826cb09f44f8e005b8b8fcf2664bef02e61ca751";
 "miniconda" verify_py310
+  ;;
+"Linux-x86_64" )
+  install_script "Miniconda3-py310_24.4.0-0-Linux-x86_64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py310_24.4.0-0-Linux-x86_64.sh#fdaa5afdea8c07b6f2203b8f95abe0e4e8c4d3fd3c10d19fe590311446591ffa";
 "miniconda" verify_py310
+  ;;
+"MacOSX-arm64" )
+  install_script "Miniconda3-py310_24.4.0-0-MacOSX-arm64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py310_24.4.0-0-MacOSX-arm64.sh#21f0b7c653518a6eb6135593c509cefc78fdff839bb2e887d36bc03eda607faf";
 "miniconda" verify_py310
+  ;;
+"MacOSX-x86_64" )
+  install_script "Miniconda3-py310_24.4.0-0-MacOSX-x86_64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py310_24.4.0-0-MacOSX-x86_64.sh#c2eed72ff97b4eb81bc1171616b0ff48a440a2e1ad5638e1899b80286767c568";
 "miniconda" verify_py310
+  ;;
+* )
+  { echo
+    colorize 1 "ERROR"
+    echo ": The binary distribution of Miniconda is not available for 
$(anaconda_architecture 2>/dev/null || true)."
+    echo
+  } >&2
+  exit 1
+  ;;
+esac
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pyenv-2.4.2/plugins/python-build/share/python-build/miniconda3-3.10-24.5.0-0
 
new/pyenv-2.4.5/plugins/python-build/share/python-build/miniconda3-3.10-24.5.0-0
--- 
old/pyenv-2.4.2/plugins/python-build/share/python-build/miniconda3-3.10-24.5.0-0
    1970-01-01 01:00:00.000000000 +0100
+++ 
new/pyenv-2.4.5/plugins/python-build/share/python-build/miniconda3-3.10-24.5.0-0
    2024-06-30 19:55:53.000000000 +0200
@@ -0,0 +1,25 @@
+case "$(anaconda_architecture 2>/dev/null || true)" in
+"Linux-aarch64" )
+  install_script "Miniconda3-py310_24.5.0-0-Linux-aarch64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py310_24.5.0-0-Linux-aarch64.sh#edcf076c80846beded0b72e98811cf7b93d0abc2ae93c060efc76f8da1e6fc45";
 "miniconda" verify_py310
+  ;;
+"Linux-s390x" )
+  install_script "Miniconda3-py310_24.5.0-0-Linux-s390x.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py310_24.5.0-0-Linux-s390x.sh#e00f3d03d13fc4fa394a5d20a5476087237ee6cb029eba3b02322acc104b530b";
 "miniconda" verify_py310
+  ;;
+"Linux-x86_64" )
+  install_script "Miniconda3-py310_24.5.0-0-Linux-x86_64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py310_24.5.0-0-Linux-x86_64.sh#b3d73db6a05069fbdf20dc33fc9b6a29fa7198578f0d090c639f5ca0e84102bd";
 "miniconda" verify_py310
+  ;;
+"MacOSX-arm64" )
+  install_script "Miniconda3-py310_24.5.0-0-MacOSX-arm64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py310_24.5.0-0-MacOSX-arm64.sh#e422602aa19140c600b5889e5b41a0d7187640107ea82fcb5da857dd25330148";
 "miniconda" verify_py310
+  ;;
+"MacOSX-x86_64" )
+  install_script "Miniconda3-py310_24.5.0-0-MacOSX-x86_64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py310_24.5.0-0-MacOSX-x86_64.sh#6d7c1cc138adfc4bb2ccbb8a22eb8e9eb13a366b6af0d63245b643e6c3a3c708";
 "miniconda" verify_py310
+  ;;
+* )
+  { echo
+    colorize 1 "ERROR"
+    echo ": The binary distribution of Miniconda is not available for 
$(anaconda_architecture 2>/dev/null || true)."
+    echo
+  } >&2
+  exit 1
+  ;;
+esac
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pyenv-2.4.2/plugins/python-build/share/python-build/miniconda3-3.11-24.4.0-0
 
new/pyenv-2.4.5/plugins/python-build/share/python-build/miniconda3-3.11-24.4.0-0
--- 
old/pyenv-2.4.2/plugins/python-build/share/python-build/miniconda3-3.11-24.4.0-0
    1970-01-01 01:00:00.000000000 +0100
+++ 
new/pyenv-2.4.5/plugins/python-build/share/python-build/miniconda3-3.11-24.4.0-0
    2024-06-30 19:55:53.000000000 +0200
@@ -0,0 +1,25 @@
+case "$(anaconda_architecture 2>/dev/null || true)" in
+"Linux-aarch64" )
+  install_script "Miniconda3-py311_24.4.0-0-Linux-aarch64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py311_24.4.0-0-Linux-aarch64.sh#d3ed9ff565c7341a4e4c957443ccb4f12f3dd5a087549099e7f199c36469e55c";
 "miniconda" verify_py311
+  ;;
+"Linux-s390x" )
+  install_script "Miniconda3-py311_24.4.0-0-Linux-s390x.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py311_24.4.0-0-Linux-s390x.sh#f2bea598cb72ed838a6e62b7dd8fbf1c3941a92783ba686822f70108c8c2e543";
 "miniconda" verify_py311
+  ;;
+"Linux-x86_64" )
+  install_script "Miniconda3-py311_24.4.0-0-Linux-x86_64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py311_24.4.0-0-Linux-x86_64.sh#7cb030a12d1da35e1c548344a895b108e0d2fbdc4f6b67d5180b2ac8539cc473";
 "miniconda" verify_py311
+  ;;
+"MacOSX-arm64" )
+  install_script "Miniconda3-py311_24.4.0-0-MacOSX-arm64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py311_24.4.0-0-MacOSX-arm64.sh#a396cf4ca0088cf2d78517b28732b61697cdcb698528300946ef6409353eca86";
 "miniconda" verify_py311
+  ;;
+"MacOSX-x86_64" )
+  install_script "Miniconda3-py311_24.4.0-0-MacOSX-x86_64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py311_24.4.0-0-MacOSX-x86_64.sh#b7f3adebd2b25dbefdc85e16f5ee130ac0d1167f416078f961e90f277476b115";
 "miniconda" verify_py311
+  ;;
+* )
+  { echo
+    colorize 1 "ERROR"
+    echo ": The binary distribution of Miniconda is not available for 
$(anaconda_architecture 2>/dev/null || true)."
+    echo
+  } >&2
+  exit 1
+  ;;
+esac
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pyenv-2.4.2/plugins/python-build/share/python-build/miniconda3-3.11-24.5.0-0
 
new/pyenv-2.4.5/plugins/python-build/share/python-build/miniconda3-3.11-24.5.0-0
--- 
old/pyenv-2.4.2/plugins/python-build/share/python-build/miniconda3-3.11-24.5.0-0
    1970-01-01 01:00:00.000000000 +0100
+++ 
new/pyenv-2.4.5/plugins/python-build/share/python-build/miniconda3-3.11-24.5.0-0
    2024-06-30 19:55:53.000000000 +0200
@@ -0,0 +1,25 @@
+case "$(anaconda_architecture 2>/dev/null || true)" in
+"Linux-aarch64" )
+  install_script "Miniconda3-py311_24.5.0-0-Linux-aarch64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py311_24.5.0-0-Linux-aarch64.sh#94a742af7bf5c7bae3dba6bd07d84d94b858b839e15af2ea0cd10fdf2bde8a73";
 "miniconda" verify_py311
+  ;;
+"Linux-s390x" )
+  install_script "Miniconda3-py311_24.5.0-0-Linux-s390x.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py311_24.5.0-0-Linux-s390x.sh#002963f32aebe1091d5da9a82416831f3c11217e6b4ea164c655f0d11f0cff80";
 "miniconda" verify_py311
+  ;;
+"Linux-x86_64" )
+  install_script "Miniconda3-py311_24.5.0-0-Linux-x86_64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py311_24.5.0-0-Linux-x86_64.sh#38b203bb1f2be78b735ebc00162f29e8e73fcd9a619ed5980490a72193ee1f58";
 "miniconda" verify_py311
+  ;;
+"MacOSX-arm64" )
+  install_script "Miniconda3-py311_24.5.0-0-MacOSX-arm64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py311_24.5.0-0-MacOSX-arm64.sh#a3d62f20f09e8079db76379090f21b7ae34832dadeb5a250e4fab324c8328727";
 "miniconda" verify_py311
+  ;;
+"MacOSX-x86_64" )
+  install_script "Miniconda3-py311_24.5.0-0-MacOSX-x86_64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py311_24.5.0-0-MacOSX-x86_64.sh#9e7dc7e0fbf0e9b2ff6bafdae9bf6ef122ae92d53533c2bbeb73433c0c6a4bd9";
 "miniconda" verify_py311
+  ;;
+* )
+  { echo
+    colorize 1 "ERROR"
+    echo ": The binary distribution of Miniconda is not available for 
$(anaconda_architecture 2>/dev/null || true)."
+    echo
+  } >&2
+  exit 1
+  ;;
+esac
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pyenv-2.4.2/plugins/python-build/share/python-build/miniconda3-3.12-24.4.0-0
 
new/pyenv-2.4.5/plugins/python-build/share/python-build/miniconda3-3.12-24.4.0-0
--- 
old/pyenv-2.4.2/plugins/python-build/share/python-build/miniconda3-3.12-24.4.0-0
    1970-01-01 01:00:00.000000000 +0100
+++ 
new/pyenv-2.4.5/plugins/python-build/share/python-build/miniconda3-3.12-24.4.0-0
    2024-06-30 19:55:53.000000000 +0200
@@ -0,0 +1,25 @@
+case "$(anaconda_architecture 2>/dev/null || true)" in
+"Linux-aarch64" )
+  install_script "Miniconda3-py312_24.4.0-0-Linux-aarch64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py312_24.4.0-0-Linux-aarch64.sh#832d48e11e444c1a25f320fccdd0f0fabefec63c1cd801e606836e1c9c76ad51";
 "miniconda" verify_py312
+  ;;
+"Linux-s390x" )
+  install_script "Miniconda3-py312_24.4.0-0-Linux-s390x.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py312_24.4.0-0-Linux-s390x.sh#e973f1b6352d58b1ab35f30424f1565d7ffa469dcde2d52c86ec1c117db11aad";
 "miniconda" verify_py312
+  ;;
+"Linux-x86_64" )
+  install_script "Miniconda3-py312_24.4.0-0-Linux-x86_64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py312_24.4.0-0-Linux-x86_64.sh#b6597785e6b071f1ca69cf7be6d0161015b96340b9a9e132215d5713408c3a7c";
 "miniconda" verify_py312
+  ;;
+"MacOSX-arm64" )
+  install_script "Miniconda3-py312_24.4.0-0-MacOSX-arm64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py312_24.4.0-0-MacOSX-arm64.sh#f4925c0150d232d95de798a64c696f4b2df2745bb997b793506bdfd27bf91e11";
 "miniconda" verify_py312
+  ;;
+"MacOSX-x86_64" )
+  install_script "Miniconda3-py312_24.4.0-0-MacOSX-x86_64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py312_24.4.0-0-MacOSX-x86_64.sh#1413369470adb7cf52f8b961e81b3ceeb92f5931a451bef9cb0c42be0ce17ef3";
 "miniconda" verify_py312
+  ;;
+* )
+  { echo
+    colorize 1 "ERROR"
+    echo ": The binary distribution of Miniconda is not available for 
$(anaconda_architecture 2>/dev/null || true)."
+    echo
+  } >&2
+  exit 1
+  ;;
+esac
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pyenv-2.4.2/plugins/python-build/share/python-build/miniconda3-3.12-24.5.0-0
 
new/pyenv-2.4.5/plugins/python-build/share/python-build/miniconda3-3.12-24.5.0-0
--- 
old/pyenv-2.4.2/plugins/python-build/share/python-build/miniconda3-3.12-24.5.0-0
    1970-01-01 01:00:00.000000000 +0100
+++ 
new/pyenv-2.4.5/plugins/python-build/share/python-build/miniconda3-3.12-24.5.0-0
    2024-06-30 19:55:53.000000000 +0200
@@ -0,0 +1,25 @@
+case "$(anaconda_architecture 2>/dev/null || true)" in
+"Linux-aarch64" )
+  install_script "Miniconda3-py312_24.5.0-0-Linux-aarch64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py312_24.5.0-0-Linux-aarch64.sh#70afe954cc8ee91f605f9aa48985bfe01ecfc10751339e8245eac7262b01298d";
 "miniconda" verify_py312
+  ;;
+"Linux-s390x" )
+  install_script "Miniconda3-py312_24.5.0-0-Linux-s390x.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py312_24.5.0-0-Linux-s390x.sh#bd2a0a8ea34c84c860868d5b8efde07afc51cdede76b64dd94e9c3fd2d65257e";
 "miniconda" verify_py312
+  ;;
+"Linux-x86_64" )
+  install_script "Miniconda3-py312_24.5.0-0-Linux-x86_64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py312_24.5.0-0-Linux-x86_64.sh#4b3b3b1b99215e85fd73fb2c2d7ebf318ac942a457072de62d885056556eb83e";
 "miniconda" verify_py312
+  ;;
+"MacOSX-arm64" )
+  install_script "Miniconda3-py312_24.5.0-0-MacOSX-arm64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py312_24.5.0-0-MacOSX-arm64.sh#12e678b8156aea69a132568b6176a019c7a1ba753ddf5caedf086d3c5460fe92";
 "miniconda" verify_py312
+  ;;
+"MacOSX-x86_64" )
+  install_script "Miniconda3-py312_24.5.0-0-MacOSX-x86_64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py312_24.5.0-0-MacOSX-x86_64.sh#b1c87c8334ea878d30a9976c1860b1004e6d55bdec5228089fec40be81156363";
 "miniconda" verify_py312
+  ;;
+* )
+  { echo
+    colorize 1 "ERROR"
+    echo ": The binary distribution of Miniconda is not available for 
$(anaconda_architecture 2>/dev/null || true)."
+    echo
+  } >&2
+  exit 1
+  ;;
+esac
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pyenv-2.4.2/plugins/python-build/share/python-build/miniconda3-3.9-24.4.0-0 
new/pyenv-2.4.5/plugins/python-build/share/python-build/miniconda3-3.9-24.4.0-0
--- 
old/pyenv-2.4.2/plugins/python-build/share/python-build/miniconda3-3.9-24.4.0-0 
    1970-01-01 01:00:00.000000000 +0100
+++ 
new/pyenv-2.4.5/plugins/python-build/share/python-build/miniconda3-3.9-24.4.0-0 
    2024-06-30 19:55:53.000000000 +0200
@@ -0,0 +1,25 @@
+case "$(anaconda_architecture 2>/dev/null || true)" in
+"Linux-aarch64" )
+  install_script "Miniconda3-py39_24.4.0-0-Linux-aarch64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py39_24.4.0-0-Linux-aarch64.sh#6f09fd08165a9fdccb2a2c64e9bbcf68ce58a9bfb571600306eb44d29718b13f";
 "miniconda" verify_py39
+  ;;
+"Linux-s390x" )
+  install_script "Miniconda3-py39_24.4.0-0-Linux-s390x.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py39_24.4.0-0-Linux-s390x.sh#8766e30b038087e7da2bb9a8bca4ca3f2ed621659f0ea8954ffab789f4a8f192";
 "miniconda" verify_py39
+  ;;
+"Linux-x86_64" )
+  install_script "Miniconda3-py39_24.4.0-0-Linux-x86_64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py39_24.4.0-0-Linux-x86_64.sh#edd7610f2e2b25d15f6ffa81ca94de0748dd107096871459a7966dcf9a564ea9";
 "miniconda" verify_py39
+  ;;
+"MacOSX-arm64" )
+  install_script "Miniconda3-py39_24.4.0-0-MacOSX-arm64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py39_24.4.0-0-MacOSX-arm64.sh#74f3de552d93712cc7c531f690b78d6acad8e3812da43fc3a1acbc5c39243480";
 "miniconda" verify_py39
+  ;;
+"MacOSX-x86_64" )
+  install_script "Miniconda3-py39_24.4.0-0-MacOSX-x86_64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py39_24.4.0-0-MacOSX-x86_64.sh#d3ad5e0bf74aa1cb838df2f73e4be4e5d9a0f259a05b5223199ea1f6f6edf9f3";
 "miniconda" verify_py39
+  ;;
+* )
+  { echo
+    colorize 1 "ERROR"
+    echo ": The binary distribution of Miniconda is not available for 
$(anaconda_architecture 2>/dev/null || true)."
+    echo
+  } >&2
+  exit 1
+  ;;
+esac
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pyenv-2.4.2/plugins/python-build/share/python-build/miniconda3-3.9-24.5.0-0 
new/pyenv-2.4.5/plugins/python-build/share/python-build/miniconda3-3.9-24.5.0-0
--- 
old/pyenv-2.4.2/plugins/python-build/share/python-build/miniconda3-3.9-24.5.0-0 
    1970-01-01 01:00:00.000000000 +0100
+++ 
new/pyenv-2.4.5/plugins/python-build/share/python-build/miniconda3-3.9-24.5.0-0 
    2024-06-30 19:55:53.000000000 +0200
@@ -0,0 +1,25 @@
+case "$(anaconda_architecture 2>/dev/null || true)" in
+"Linux-aarch64" )
+  install_script "Miniconda3-py39_24.5.0-0-Linux-aarch64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py39_24.5.0-0-Linux-aarch64.sh#b716e3bc556e9ab7a4f206b04b53bd57c24e94956598d89fc78863b115cce9e8";
 "miniconda" verify_py39
+  ;;
+"Linux-s390x" )
+  install_script "Miniconda3-py39_24.5.0-0-Linux-s390x.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py39_24.5.0-0-Linux-s390x.sh#c2d6bec964a96130eb5f1c4ea46993cf10f7957d45ac31d9aa94c34b5ebfed32";
 "miniconda" verify_py39
+  ;;
+"Linux-x86_64" )
+  install_script "Miniconda3-py39_24.5.0-0-Linux-x86_64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py39_24.5.0-0-Linux-x86_64.sh#07a2435123fd8f41e6528baa5f272ce754fd8acaef08ce7081afb00227b8754a";
 "miniconda" verify_py39
+  ;;
+"MacOSX-arm64" )
+  install_script "Miniconda3-py39_24.5.0-0-MacOSX-arm64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py39_24.5.0-0-MacOSX-arm64.sh#f5f63a0de44b7b0872f3c00dca71b896933ccc844a93bf120aad6df66b6475b3";
 "miniconda" verify_py39
+  ;;
+"MacOSX-x86_64" )
+  install_script "Miniconda3-py39_24.5.0-0-MacOSX-x86_64.sh" 
"https://repo.anaconda.com/miniconda/Miniconda3-py39_24.5.0-0-MacOSX-x86_64.sh#b65d7f01820bdfe1abb6b4dd84d48e6c62a6d72ee0cc400a4e8bb4ea89ff1c84";
 "miniconda" verify_py39
+  ;;
+* )
+  { echo
+    colorize 1 "ERROR"
+    echo ": The binary distribution of Miniconda is not available for 
$(anaconda_architecture 2>/dev/null || true)."
+    echo
+  } >&2
+  exit 1
+  ;;
+esac

Reply via email to