Merge pull request #852 from pyenv/migrate-to-pyenv-org

Migrate to pyenv org
This commit is contained in:
Yamashita, Yuu 2017-03-06 13:47:31 +09:00 committed by GitHub
commit 0e683164bd
8 changed files with 19 additions and 12 deletions

View file

@ -1,5 +1,12 @@
## Version History ## 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 ## 1.0.8
* pyenv: Fix fish subcommand completion (#831) * pyenv: Fix fish subcommand completion (#831)

View file

@ -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) [![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 pyenv lets you easily switch between multiple versions of Python. It's
simple, unobtrusive, and follows the UNIX tradition of single-purpose simple, unobtrusive, and follows the UNIX tradition of single-purpose

View file

@ -42,6 +42,6 @@ done
shift 1 shift 1
# CPython's `sys.executable` requires the `PYENV_BIN_PATH` to be at the top of the `PATH`. # 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}" export PATH="${PYENV_BIN_PATH}:${PATH}"
exec -a "$PYENV_COMMAND" "$PYENV_COMMAND_PATH" "$@" exec -a "$PYENV_COMMAND" "$PYENV_COMMAND_PATH" "$@"

View file

@ -152,7 +152,7 @@ if [ -z "$1" ] || [ "$1" == "pyenv" ]; then
print_summaries commands local global shell install uninstall rehash version versions which whence print_summaries commands local global shell install uninstall rehash version versions which whence
echo echo
echo "See \`pyenv help <command>' for information on a specific command." echo "See \`pyenv help <command>' 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 else
command="$1" command="$1"
if [ -n "$(command_path "$command")" ]; then if [ -n "$(command_path "$command")" ]; then

View file

@ -22,7 +22,7 @@
# #
# For detailed information on installing Python versions with # For detailed information on installing Python versions with
# python-build, including a list of environment variables for adjusting # 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 set -e
[ -n "$PYENV_DEBUG" ] && set -x [ -n "$PYENV_DEBUG" ] && set -x

View file

@ -1341,7 +1341,7 @@ use_homebrew_yaml() {
has_broken_mac_readline() { has_broken_mac_readline() {
# Mac OS X 10.4 has broken 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 && is_mac &&
! configured_with_package_dir "python" "readline/rlconf.h" && ! configured_with_package_dir "python" "readline/rlconf.h" &&
! use_homebrew_readline ! use_homebrew_readline
@ -1539,7 +1539,7 @@ verify_python() {
echo echo
echo "The python-build could not find proper executable of Python after successful build." echo "The python-build could not find proper executable of Python after successful build."
echo "Please open an issue for future improvements." echo "Please open an issue for future improvements."
echo "https://github.com/yyuu/pyenv/issues" echo "https://github.com/pyenv/pyenv/issues"
return 1 return 1
} >&3 } >&3
fi fi
@ -1560,7 +1560,7 @@ verify_python_module() {
echo ": The Python $1 extension was not compiled. Missing the ${2:-$1}?" echo ": The Python $1 extension was not compiled. Missing the ${2:-$1}?"
echo echo
echo "Please consult to the Wiki page to fix the problem." 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 echo
return 1 return 1
} >&3 } >&3
@ -1884,7 +1884,7 @@ else
fi fi
if [ -z "$PYTHON_BUILD_MIRROR_URL" ]; then 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 PYTHON_BUILD_DEFAULT_MIRROR=1
else else
PYTHON_BUILD_MIRROR_URL="${PYTHON_BUILD_MIRROR_URL%/}" PYTHON_BUILD_MIRROR_URL="${PYTHON_BUILD_MIRROR_URL%/}"

View file

@ -14,7 +14,7 @@ static_version="$(grep VERSION "$bats_bin" | head -1 | cut -d'"' -f 2)"
@test "python-build git version" { @test "python-build git version" {
stub git \ 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" "describe --tags HEAD : echo v1984-12-gSHA"
run python-build --version run python-build --version
assert_success "python-build 1984-12-gSHA" 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" { @test "git describe fails" {
stub git \ 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" "describe --tags HEAD : echo ASPLODE >&2; exit 1"
run python-build --version run python-build --version
assert_success "python-build ${static_version}" assert_success "python-build ${static_version}"

View file

@ -35,7 +35,7 @@ git_commit() {
@test "reads version from git repo" { @test "reads version from git repo" {
git init 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_commit
git tag v0.4.1 git tag v0.4.1
git_commit git_commit
@ -47,7 +47,7 @@ git_commit() {
@test "prints default version if no tags in git repo" { @test "prints default version if no tags in git repo" {
git init 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_commit
run pyenv---version run pyenv---version