summarylogtreecommitdiffstats
path: root/fix-symlink-308.patch
diff options
context:
space:
mode:
authorDarkfish Tech2023-01-11 01:51:45 +1100
committerDarkfish Tech2023-01-11 01:51:45 +1100
commit4efc1be4cba15a095d048840dfb2d8bcd163146f (patch)
tree37b6ae033a0b0ffe95c6c2aa4fc748b2aadd000d /fix-symlink-308.patch
parentf730ff8fd45e430fddc4551650b8e5bace34690f (diff)
downloadaur-4efc1be4cba15a095d048840dfb2d8bcd163146f.tar.gz
Upgpkg: pyenv-virtualenv 1:1.2.0-1
Update pyenv-virtualenv to 1.2.0 Remove patch for 308 that has been merged upstream Update list of maintainers and contributors This pyenv plugin now installs under /usr/share
Diffstat (limited to 'fix-symlink-308.patch')
-rw-r--r--fix-symlink-308.patch54
1 files changed, 0 insertions, 54 deletions
diff --git a/fix-symlink-308.patch b/fix-symlink-308.patch
deleted file mode 100644
index 00e5e3c30a40..000000000000
--- a/fix-symlink-308.patch
+++ /dev/null
@@ -1,54 +0,0 @@
-diff --git a/bin/pyenv-virtualenv-prefix b/bin/pyenv-virtualenv-prefix
-index aa71777..bbe5871 100755
---- a/bin/pyenv-virtualenv-prefix
-+++ b/bin/pyenv-virtualenv-prefix
-@@ -6,7 +6,21 @@
-
- set -e
- [ -n "$PYENV_DEBUG" ] && set -x
--. "${BASH_SOURCE%/*}"/../libexec/pyenv-virtualenv-realpath
-+if [ -L "${BASH_SOURCE}" ]; then
-+ READLINK=$(type -p greadlink readlink | head -1)
-+ if [ -z "$READLINK" ]; then
-+ echo "pyenv: cannot find readlink - are you missing GNU coreutils?" >&2
-+ exit 1
-+ fi
-+ resolve_link() {
-+ $READLINK -f "$1"
-+ }
-+ script_path=$(resolve_link ${BASH_SOURCE})
-+else
-+ script_path=${BASH_SOURCE}
-+fi
-+
-+. ${script_path%/*}/../libexec/pyenv-virtualenv-realpath
-
- if [ -z "$PYENV_ROOT" ]; then
- PYENV_ROOT="${HOME}/.pyenv"
-diff --git a/bin/pyenv-virtualenvs b/bin/pyenv-virtualenvs
-index 173278b..b441e78 100755
---- a/bin/pyenv-virtualenvs
-+++ b/bin/pyenv-virtualenvs
-@@ -7,7 +7,21 @@
-
- set -e
- [ -n "$PYENV_DEBUG" ] && set -x
--. "${BASH_SOURCE%/*}"/../libexec/pyenv-virtualenv-realpath
-+if [ -L "${BASH_SOURCE}" ]; then
-+ READLINK=$(type -p greadlink readlink | head -1)
-+ if [ -z "$READLINK" ]; then
-+ echo "pyenv: cannot find readlink - are you missing GNU coreutils?" >&2
-+ exit 1
-+ fi
-+ resolve_link() {
-+ $READLINK -f "$1"
-+ }
-+ script_path=$(resolve_link ${BASH_SOURCE})
-+else
-+ script_path=${BASH_SOURCE}
-+fi
-+
-+. ${script_path%/*}/../libexec/pyenv-virtualenv-realpath
-
- if [ -z "$PYENV_ROOT" ]; then
- PYENV_ROOT="${HOME}/.pyenv"