diff options
author | 2022-07-05 10:46:51 +0200 | |
---|---|---|
committer | 2022-07-05 10:46:51 +0200 | |
commit | af6f9816b2f6ae5a2e08fb68752e3de8032f4ff4 (patch) | |
tree | b2b671729e72c67aa4ebab6e466d84a4b59f5628 /dev-python/django/files | |
parent | dev-python/autobahn: Remove old (diff) | |
download | gentoo-af6f9816b2f6ae5a2e08fb68752e3de8032f4ff4.tar.gz gentoo-af6f9816b2f6ae5a2e08fb68752e3de8032f4ff4.tar.bz2 gentoo-af6f9816b2f6ae5a2e08fb68752e3de8032f4ff4.zip |
dev-python/django: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/django/files')
-rw-r--r-- | dev-python/django/files/django-2.0.7-bashcomp.patch | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/dev-python/django/files/django-2.0.7-bashcomp.patch b/dev-python/django/files/django-2.0.7-bashcomp.patch deleted file mode 100644 index 2d886fe6481c..000000000000 --- a/dev-python/django/files/django-2.0.7-bashcomp.patch +++ /dev/null @@ -1,41 +0,0 @@ ---- a/extras/django_bash_completion -+++ b/extras/django_bash_completion -@@ -37,37 +37,4 @@ _django_completion() - COMP_CWORD=$COMP_CWORD \ - DJANGO_AUTO_COMPLETE=1 $1 ) ) - } --complete -F _django_completion -o default django-admin.py manage.py django-admin -- --_python_django_completion() --{ -- if [[ ${COMP_CWORD} -ge 2 ]]; then -- local PYTHON_EXE=${COMP_WORDS[0]##*/} -- echo $PYTHON_EXE | egrep "python([3-9]\.[0-9])?" >/dev/null 2>&1 -- if [[ $? == 0 ]]; then -- local PYTHON_SCRIPT=${COMP_WORDS[1]##*/} -- echo $PYTHON_SCRIPT | egrep "manage\.py|django-admin(\.py)?" >/dev/null 2>&1 -- if [[ $? == 0 ]]; then -- COMPREPLY=( $( COMP_WORDS="${COMP_WORDS[*]:1}" \ -- COMP_CWORD=$(( COMP_CWORD-1 )) \ -- DJANGO_AUTO_COMPLETE=1 ${COMP_WORDS[*]} ) ) -- fi -- fi -- fi --} -- --# Support for multiple interpreters. --unset pythons --if command -v whereis &>/dev/null; then -- python_interpreters=$(whereis python | cut -d " " -f 2-) -- for python in $python_interpreters; do -- [[ $python != *-config ]] && pythons="${pythons} ${python##*/}" -- done -- unset python_interpreters -- pythons=$(echo $pythons | tr " " "\n" | sort -u | tr "\n" " ") --else -- pythons=python --fi -- --complete -F _python_django_completion -o default $pythons --unset pythons -+complete -F _django_completion -o default django-admin.py django-admin |