commit pyenv for openSUSE:Factory
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-10-04 17:10:45 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/pyenv (Old) and /work/SRC/openSUSE:Factory/.pyenv.new.19354 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "pyenv" Fri Oct 4 17:10:45 2024 rev:50 rq:1205572 version:2.4.14 Changes: -------- --- /work/SRC/openSUSE:Factory/pyenv/pyenv.changes 2024-09-23 15:24:39.747510106 +0200 +++ /work/SRC/openSUSE:Factory/.pyenv.new.19354/pyenv.changes 2024-10-04 17:11:19.166780225 +0200 @@ -1,0 +2,7 @@ +Wed Oct 2 13:48:57 UTC 2024 - Thomas Schraitle <thomas.schraitle@suse.com> - 2.4.14 + +- Update 2.4.14 + * Add CPython 3.12.7 by @edgarrmondragon in #3078 + * Add CPython 3.13.0rc3 by @edgarrmondragon in #3077 + +------------------------------------------------------------------- Old: ---- pyenv-2.4.13.tar.gz New: ---- pyenv-2.4.14.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ pyenv.spec ++++++ --- /var/tmp/diff_new_pack.FqtTNh/_old 2024-10-04 17:11:19.862809301 +0200 +++ /var/tmp/diff_new_pack.FqtTNh/_new 2024-10-04 17:11:19.862809301 +0200 @@ -19,7 +19,7 @@ %define pyenv_dir %{_libexecdir}/pyenv # Name: pyenv -Version: 2.4.13 +Version: 2.4.14 Release: 0 Summary: Python Version Management License: MIT ++++++ pyenv-2.4.13.tar.gz -> pyenv-2.4.14.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pyenv-2.4.13/CHANGELOG.md new/pyenv-2.4.14/CHANGELOG.md --- old/pyenv-2.4.13/CHANGELOG.md 2024-09-18 06:38:48.000000000 +0200 +++ new/pyenv-2.4.14/CHANGELOG.md 2024-10-02 14:13:21.000000000 +0200 @@ -1,5 +1,9 @@ # Version History +## Release v2.4.14 +* Add CPython 3.12.7 by @edgarrmondragon in https://github.com/pyenv/pyenv/pull/3078 +* Add CPython 3.13.0rc3 by @edgarrmondragon in https://github.com/pyenv/pyenv/pull/3077 + ## Release v2.4.13 * docs: Use `--verbose` with performance CPython build instructions by @caerulescens in https://github.com/pyenv/pyenv/pull/3053 * Fix latest version resolution when using `python-` prefix by @edmorley in https://github.com/pyenv/pyenv/pull/3056 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pyenv-2.4.13/README.md new/pyenv-2.4.14/README.md --- old/pyenv-2.4.13/README.md 2024-09-18 06:38:48.000000000 +0200 +++ new/pyenv-2.4.14/README.md 2024-10-02 14:13:21.000000000 +0200 @@ -329,6 +329,8 @@ ~~~ - For **Zsh**: + + Run the following to add the commands to `~/.zshrc`: ~~~ zsh echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.zshrc echo '[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.zshrc diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pyenv-2.4.13/libexec/pyenv---version new/pyenv-2.4.14/libexec/pyenv---version --- old/pyenv-2.4.13/libexec/pyenv---version 2024-09-18 06:38:48.000000000 +0200 +++ new/pyenv-2.4.14/libexec/pyenv---version 2024-10-02 14:13:21.000000000 +0200 @@ -12,7 +12,7 @@ set -e [ -n "$PYENV_DEBUG" ] && set -x -version="2.4.13" +version="2.4.14" 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.13/plugins/python-build/share/python-build/3.12.7 new/pyenv-2.4.14/plugins/python-build/share/python-build/3.12.7 --- old/pyenv-2.4.13/plugins/python-build/share/python-build/3.12.7 1970-01-01 01:00:00.000000000 +0100 +++ new/pyenv-2.4.14/plugins/python-build/share/python-build/3.12.7 2024-10-02 14:13:21.000000000 +0200 @@ -0,0 +1,9 @@ +prefer_openssl3 +export PYTHON_BUILD_CONFIGURE_WITH_OPENSSL=1 +install_package "openssl-3.3.2" "https://github.com/openssl/openssl/releases/download/openssl-3.3.2/openssl-3..." mac_openssl --if has_broken_mac_openssl +install_package "readline-8.2" "https://ftpmirror.gnu.org/readline/readline-8.2.tar.gz#3feb7171f16a84ee82ca1..." mac_readline --if has_broken_mac_readline +if has_tar_xz_support; then + install_package "Python-3.12.7" "https://www.python.org/ftp/python/3.12.7/Python-3.12.7.tar.xz#24887b92e2afd4..." standard verify_py312 copy_python_gdb ensurepip +else + install_package "Python-3.12.7" "https://www.python.org/ftp/python/3.12.7/Python-3.12.7.tgz#73ac8fe780227bf37..." standard verify_py312 copy_python_gdb ensurepip +fi diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pyenv-2.4.13/plugins/python-build/share/python-build/3.13.0rc2 new/pyenv-2.4.14/plugins/python-build/share/python-build/3.13.0rc2 --- old/pyenv-2.4.13/plugins/python-build/share/python-build/3.13.0rc2 2024-09-18 06:38:48.000000000 +0200 +++ new/pyenv-2.4.14/plugins/python-build/share/python-build/3.13.0rc2 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.2" "https://github.com/openssl/openssl/releases/download/openssl-3.3.2/openssl-3..." mac_openssl --if has_broken_mac_openssl -install_package "readline-8.2" "https://ftpmirror.gnu.org/readline/readline-8.2.tar.gz#3feb7171f16a84ee82ca1..." mac_readline --if has_broken_mac_readline -if has_tar_xz_support; then - install_package "Python-3.13.0rc2" "https://www.python.org/ftp/python/3.13.0/Python-3.13.0rc2.tar.xz#d60e8b7c10d..." standard verify_py313 copy_python_gdb ensurepip -else - install_package "Python-3.13.0rc2" "https://www.python.org/ftp/python/3.13.0/Python-3.13.0rc2.tgz#d08965c543f21d..." standard verify_py313 copy_python_gdb ensurepip -fi diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pyenv-2.4.13/plugins/python-build/share/python-build/3.13.0rc2t new/pyenv-2.4.14/plugins/python-build/share/python-build/3.13.0rc2t --- old/pyenv-2.4.13/plugins/python-build/share/python-build/3.13.0rc2t 2024-09-18 06:38:48.000000000 +0200 +++ new/pyenv-2.4.14/plugins/python-build/share/python-build/3.13.0rc2t 1970-01-01 01:00:00.000000000 +0100 @@ -1,2 +0,0 @@ -export PYTHON_BUILD_FREE_THREADING=1 -source "$(dirname "${BASH_SOURCE[0]}")"/3.13.0rc2 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pyenv-2.4.13/plugins/python-build/share/python-build/3.13.0rc3 new/pyenv-2.4.14/plugins/python-build/share/python-build/3.13.0rc3 --- old/pyenv-2.4.13/plugins/python-build/share/python-build/3.13.0rc3 1970-01-01 01:00:00.000000000 +0100 +++ new/pyenv-2.4.14/plugins/python-build/share/python-build/3.13.0rc3 2024-10-02 14:13:21.000000000 +0200 @@ -0,0 +1,9 @@ +prefer_openssl3 +export PYTHON_BUILD_CONFIGURE_WITH_OPENSSL=1 +install_package "openssl-3.3.2" "https://github.com/openssl/openssl/releases/download/openssl-3.3.2/openssl-3..." mac_openssl --if has_broken_mac_openssl +install_package "readline-8.2" "https://ftpmirror.gnu.org/readline/readline-8.2.tar.gz#3feb7171f16a84ee82ca1..." mac_readline --if has_broken_mac_readline +if has_tar_xz_support; then + install_package "Python-3.13.0rc3" "https://www.python.org/ftp/python/3.13.0/Python-3.13.0rc3.tar.xz#c8bc790185a..." standard verify_py313 copy_python_gdb ensurepip +else + install_package "Python-3.13.0rc3" "https://www.python.org/ftp/python/3.13.0/Python-3.13.0rc3.tgz#e5e8611d1bfbfd..." standard verify_py313 copy_python_gdb ensurepip +fi diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pyenv-2.4.13/plugins/python-build/share/python-build/3.13.0rc3t new/pyenv-2.4.14/plugins/python-build/share/python-build/3.13.0rc3t --- old/pyenv-2.4.13/plugins/python-build/share/python-build/3.13.0rc3t 1970-01-01 01:00:00.000000000 +0100 +++ new/pyenv-2.4.14/plugins/python-build/share/python-build/3.13.0rc3t 2024-10-02 14:13:21.000000000 +0200 @@ -0,0 +1,2 @@ +export PYTHON_BUILD_FREE_THREADING=1 +source "$(dirname "${BASH_SOURCE[0]}")"/3.13.0rc3
participants (1)
-
Source-Sync