From 3d36ee72275cfb67f0eef4321dcff658f89379a5 Mon Sep 17 00:00:00 2001 From: "Yamashita, Yuu" Date: Mon, 6 Mar 2017 04:27:06 +0000 Subject: [PATCH 1/3] Change default mirror site to https://pyenv.github.io --- plugins/python-build/bin/python-build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/python-build/bin/python-build b/plugins/python-build/bin/python-build index bd14bbc4..5e6983ae 100755 --- a/plugins/python-build/bin/python-build +++ b/plugins/python-build/bin/python-build @@ -1884,7 +1884,7 @@ else fi if [ -z "$PYTHON_BUILD_MIRROR_URL" ]; then - PYTHON_BUILD_MIRROR_URL="https://yyuu.github.io/pythons" + PYTHON_BUILD_MIRROR_URL="https://pyenv.github.io/pythons" PYTHON_BUILD_DEFAULT_MIRROR=1 else PYTHON_BUILD_MIRROR_URL="${PYTHON_BUILD_MIRROR_URL%/}" From d01fa09a7d7b9256dc0a11abc937705570bbb302 Mon Sep 17 00:00:00 2001 From: "Yamashita, Yuu" Date: Mon, 6 Mar 2017 04:31:25 +0000 Subject: [PATCH 2/3] Migrate project URL to https://github.com/pyenv/pyenv --- CHANGELOG.md | 7 +++++++ libexec/pyenv-exec | 2 +- libexec/pyenv-help | 2 +- plugins/python-build/bin/pyenv-install | 2 +- plugins/python-build/bin/python-build | 6 +++--- plugins/python-build/test/version.bats | 4 ++-- test/--version.bats | 4 ++-- 7 files changed, 17 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 768d2c15..fcc53679 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ ## Version History +## Unreleased + +* pyenv: Migarte project site from https://github.com/yyuu/pyenv to https://github.com/pyenv/pyenv +* python-build: Change default mirror site URL from https://yyuu.github.io/pythons to https://pyenv.github.io/pythons +* python-build: Upgrade OpenSSL from 1.0.2g to 1.0.2k (#850) +* python-build: Add CPython 3.6.1rc1 (#851) + ## 1.0.8 * pyenv: Fix fish subcommand completion (#831) diff --git a/libexec/pyenv-exec b/libexec/pyenv-exec index dcdce714..51c668e3 100755 --- a/libexec/pyenv-exec +++ b/libexec/pyenv-exec @@ -42,6 +42,6 @@ done shift 1 # CPython's `sys.executable` requires the `PYENV_BIN_PATH` to be at the top of the `PATH`. -# https://github.com/yyuu/pyenv/issues/98 +# https://github.com/pyenv/pyenv/issues/98 export PATH="${PYENV_BIN_PATH}:${PATH}" exec -a "$PYENV_COMMAND" "$PYENV_COMMAND_PATH" "$@" diff --git a/libexec/pyenv-help b/libexec/pyenv-help index 9a04d9a6..a63bd7d6 100755 --- a/libexec/pyenv-help +++ b/libexec/pyenv-help @@ -152,7 +152,7 @@ if [ -z "$1" ] || [ "$1" == "pyenv" ]; then print_summaries commands local global shell install uninstall rehash version versions which whence echo echo "See \`pyenv help ' for information on a specific command." - echo "For full documentation, see: https://github.com/yyuu/pyenv#readme" + echo "For full documentation, see: https://github.com/pyenv/pyenv#readme" else command="$1" if [ -n "$(command_path "$command")" ]; then diff --git a/plugins/python-build/bin/pyenv-install b/plugins/python-build/bin/pyenv-install index 651d5b31..79c171b2 100755 --- a/plugins/python-build/bin/pyenv-install +++ b/plugins/python-build/bin/pyenv-install @@ -22,7 +22,7 @@ # # For detailed information on installing Python versions with # python-build, including a list of environment variables for adjusting -# compilation, see: https://github.com/yyuu/pyenv#readme +# compilation, see: https://github.com/pyenv/pyenv#readme # set -e [ -n "$PYENV_DEBUG" ] && set -x diff --git a/plugins/python-build/bin/python-build b/plugins/python-build/bin/python-build index 5e6983ae..3dfb9385 100755 --- a/plugins/python-build/bin/python-build +++ b/plugins/python-build/bin/python-build @@ -1341,7 +1341,7 @@ use_homebrew_yaml() { has_broken_mac_readline() { # Mac OS X 10.4 has broken readline. - # https://github.com/yyuu/pyenv/issues/23 + # https://github.com/pyenv/pyenv/issues/23 is_mac && ! configured_with_package_dir "python" "readline/rlconf.h" && ! use_homebrew_readline @@ -1539,7 +1539,7 @@ verify_python() { echo echo "The python-build could not find proper executable of Python after successful build." echo "Please open an issue for future improvements." - echo "https://github.com/yyuu/pyenv/issues" + echo "https://github.com/pyenv/pyenv/issues" return 1 } >&3 fi @@ -1560,7 +1560,7 @@ verify_python_module() { echo ": The Python $1 extension was not compiled. Missing the ${2:-$1}?" echo echo "Please consult to the Wiki page to fix the problem." - echo "https://github.com/yyuu/pyenv/wiki/Common-build-problems" + echo "https://github.com/pyenv/pyenv/wiki/Common-build-problems" echo return 1 } >&3 diff --git a/plugins/python-build/test/version.bats b/plugins/python-build/test/version.bats index 35260f01..370abc74 100644 --- a/plugins/python-build/test/version.bats +++ b/plugins/python-build/test/version.bats @@ -14,7 +14,7 @@ static_version="$(grep VERSION "$bats_bin" | head -1 | cut -d'"' -f 2)" @test "python-build git version" { stub git \ - 'remote -v : echo origin https://github.com/yyuu/pyenv.git' \ + 'remote -v : echo origin https://github.com/pyenv/pyenv.git' \ "describe --tags HEAD : echo v1984-12-gSHA" run python-build --version assert_success "python-build 1984-12-gSHA" @@ -23,7 +23,7 @@ static_version="$(grep VERSION "$bats_bin" | head -1 | cut -d'"' -f 2)" @test "git describe fails" { stub git \ - 'remote -v : echo origin https://github.com/yyuu/pyenv.git' \ + 'remote -v : echo origin https://github.com/pyenv/pyenv.git' \ "describe --tags HEAD : echo ASPLODE >&2; exit 1" run python-build --version assert_success "python-build ${static_version}" diff --git a/test/--version.bats b/test/--version.bats index 11e1663a..254b957b 100644 --- a/test/--version.bats +++ b/test/--version.bats @@ -35,7 +35,7 @@ git_commit() { @test "reads version from git repo" { git init - git remote add origin https://github.com/yyuu/pyenv.git + git remote add origin https://github.com/pyenv/pyenv.git git_commit git tag v0.4.1 git_commit @@ -47,7 +47,7 @@ git_commit() { @test "prints default version if no tags in git repo" { git init - git remote add origin https://github.com/yyuu/pyenv.git + git remote add origin https://github.com/pyenv/pyenv.git git_commit run pyenv---version From 8ce99288190b7de7d01b8b4cc1636456fc65d253 Mon Sep 17 00:00:00 2001 From: "Yamashita, Yuu" Date: Mon, 6 Mar 2017 04:42:15 +0000 Subject: [PATCH 3/3] Update Travi CI build status link target --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 45ff9a1f..0f3de7e9 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Join the chat at https://gitter.im/yyuu/pyenv](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/yyuu/pyenv?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) -[![Build Status](https://travis-ci.org/yyuu/pyenv.svg?branch=master)](https://travis-ci.org/yyuu/pyenv) +[![Build Status](https://travis-ci.org/pyenv/pyenv.svg?branch=master)](https://travis-ci.org/pyenv/pyenv) pyenv lets you easily switch between multiple versions of Python. It's simple, unobtrusive, and follows the UNIX tradition of single-purpose