diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-12-02 08:53:01 +0100 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-12-02 08:53:01 +0100 |
commit | b626ca718f4736db3dcdef09cf465dab65ef13a1 (patch) | |
tree | e94745670516c5748d70da030e4c32056e866f66 /dev-python/django/files | |
parent | net-analyzer/scapy: Drop unnecessary usage of DISTUTILS_SINGLE_IMPL (diff) | |
download | gentoo-b626ca718f4736db3dcdef09cf465dab65ef13a1.tar.gz gentoo-b626ca718f4736db3dcdef09cf465dab65ef13a1.tar.bz2 gentoo-b626ca718f4736db3dcdef09cf465dab65ef13a1.zip |
dev-python/django: Version Bump
Package-Manager: portage-2.2.25
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'dev-python/django/files')
-rw-r--r-- | dev-python/django/files/django-1.9-bashcomp.patch | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/dev-python/django/files/django-1.9-bashcomp.patch b/dev-python/django/files/django-1.9-bashcomp.patch new file mode 100644 index 000000000000..8618dbef920d --- /dev/null +++ b/dev-python/django/files/django-1.9-bashcomp.patch @@ -0,0 +1,46 @@ + extras/django_bash_completion | 35 +---------------------------------- + 1 file changed, 1 insertion(+), 34 deletions(-) + +diff --git a/extras/django_bash_completion b/extras/django_bash_completion +index 06a2321..abe76e5 100755 +--- 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([2-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 |