summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVirgil Dupras <vdupras@gentoo.org>2018-09-03 09:30:46 -0400
committerVirgil Dupras <vdupras@gentoo.org>2018-09-03 09:33:14 -0400
commit77e79a429c95e05559c0c7ae0b477fec28c6d6f6 (patch)
treeb6c87423dbae52f533a01ed7cef783a9d6642628 /dev-python/django/files
parentdev-python/django-compressor: remove last-rited package (diff)
downloadgentoo-77e79a429c95e05559c0c7ae0b477fec28c6d6f6.tar.gz
gentoo-77e79a429c95e05559c0c7ae0b477fec28c6d6f6.tar.bz2
gentoo-77e79a429c95e05559c0c7ae0b477fec28c6d6f6.zip
dev-python/django: remove old and vulnerable
Bug: https://bugs.gentoo.org/662632 Package-Manager: Portage-2.3.48, Repoman-2.3.10
Diffstat (limited to 'dev-python/django/files')
-rw-r--r--dev-python/django/files/django-1.7.6-bashcomp.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/dev-python/django/files/django-1.7.6-bashcomp.patch b/dev-python/django/files/django-1.7.6-bashcomp.patch
deleted file mode 100644
index ef76f8a873c7..000000000000
--- a/dev-python/django/files/django-1.7.6-bashcomp.patch
+++ /dev/null
@@ -1,34 +0,0 @@
- extras/django_bash_completion | 16 +---------------
- 1 file changed, 1 insertion(+), 15 deletions(-)
-
-diff --git a/extras/django_bash_completion b/extras/django_bash_completion
-index 3e02d8e..5a33938 100755
---- a/extras/django_bash_completion
-+++ b/extras/django_bash_completion
-@@ -37,7 +37,7 @@ _django_completion()
- COMP_CWORD=$COMP_CWORD \
- DJANGO_AUTO_COMPLETE=1 $1 ) )
- }
--complete -F _django_completion -o default django-admin.py manage.py django-admin
-+complete -F _django_completion -o default django-admin.py django-admin
-
- _python_django_completion()
- {
-@@ -55,17 +55,3 @@ _python_django_completion()
- 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
-- pythons="${pythons} ${python##*/}"
-- done
-- pythons=$(echo $pythons | tr " " "\n" | sort -u | tr "\n" " ")
--else
-- pythons=python
--fi
--
--complete -F _python_django_completion -o default $pythons