Package: python-django
Severity: wishlist

I updated python-django_0.97~svn7534-1 to Django SVN r8138.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.25-2-686 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
diff -Nru /tmp/XoQpKToVpE/python-django-0.97~svn7534/debian/changelog /tmp/l6u6xkN6PC/python-django-1.0~beta~svn8138/debian/changelog
--- python-django-0.97~svn7534/debian/changelog	2008-07-30 00:04:57.000000000 -0700
+++ python-django-1.0~beta~svn8138/debian/changelog	2008-07-30 00:04:57.000000000 -0700
@@ -1,3 +1,13 @@
+python-django (1.0~beta~svn8138-1) experimental; urgency=low
+
+  * debian/patches/01_add_shebang.diff: Removed.
+    Upstream fixed bug #7268 in r7658.
+  * debian/patches/02_bash_completion.diff: Removed.
+    Upstream fixed bug #7268 in r7690.
+  * debian/patches/03_manpage.diff: Updated.
+
+ -- Eddy Mulyono <[EMAIL PROTECTED]>  Tue, 29 Jul 2008 21:57:00 -0700
+
 python-django (0.97~svn7534-1) experimental; urgency=low
 
   * New upstream snapshot. Closes: #409565, #481051
diff -Nru /tmp/XoQpKToVpE/python-django-0.97~svn7534/debian/patches/01_add_shebang.diff /tmp/l6u6xkN6PC/python-django-1.0~beta~svn8138/debian/patches/01_add_shebang.diff
--- python-django-0.97~svn7534/debian/patches/01_add_shebang.diff	2008-07-30 00:04:57.000000000 -0700
+++ python-django-1.0~beta~svn8138/debian/patches/01_add_shebang.diff	1969-12-31 16:00:00.000000000 -0800
@@ -1,20 +0,0 @@
-Forwarded-Upstream: not yet
-Author: Raphael Hertzog <[EMAIL PROTECTED]>
-Comment:
- Since django/bin/profiling/gather_profile_stats.py is installed as an
- executable, it must have a shebang line to really be a working executable.
- .
- It's the only file matching django/bin/*.py that lacks the shebang line.
- .
- Without this patch lintian complains:
- W: python-django: executable-not-elf-or-script ./usr/share/python-support/python-django/django/bin/profiling/gather_profile_stats.py
- .
- The problem has been mentioned upstream in http://code.djangoproject.com/ticket/7268
-
---- django/bin/profiling/gather_profile_stats.py.orig	2006-12-16 11:15:38.000000000 +0100
-+++ django/bin/profiling/gather_profile_stats.py	2006-12-16 11:15:55.000000000 +0100
-@@ -1,3 +1,4 @@
-+#!/usr/bin/python
- """
- gather_profile_stats.py /path/to/dir/of/profiles
- 
diff -Nru /tmp/XoQpKToVpE/python-django-0.97~svn7534/debian/patches/02_bash_completion.diff /tmp/l6u6xkN6PC/python-django-1.0~beta~svn8138/debian/patches/02_bash_completion.diff
--- python-django-0.97~svn7534/debian/patches/02_bash_completion.diff	2008-07-30 00:04:57.000000000 -0700
+++ python-django-1.0~beta~svn8138/debian/patches/02_bash_completion.diff	1969-12-31 16:00:00.000000000 -0800
@@ -1,45 +0,0 @@
-Forwarded-Upstream: http://code.djangoproject.com/ticket/7268
-Author: Brett Parker <[EMAIL PROTECTED]>
-Comment: 
- This change is required to make command line completion work for the
- django-admin command. Upstream only recognizes django-admin.py and not
- the variant without extension.
- .
- It's a Debian-specific modification to install django-admin.py as
- /usr/bin/django-admin so this makes this patch also Debian specific.
-
---- extras/django_bash_completion_orig
-+++ extras/django_bash_completion
-@@ -53,9 +53,10 @@ _django_completion()
-     action_shell_opts="--plain"
-     action_runfcgi_opts="host port socket method maxspare minspare maxchildren daemonize pidfile workdir"
- 
--    if [[ # django-admin.py, ./manage, manage.py
-+    if [[ # django-admin.py, django-admin, ./manage, manage.py
-           ( ${COMP_CWORD} -eq 1 &&
-             ( ${COMP_WORDS[0]} == django-admin.py ||
-+              ${COMP_WORDS[0]} == django-admin ||
-               ${COMP_WORDS[0]} == ./manage.py ||
-               ${COMP_WORDS[0]} == manage.py ) )
-           ||
-@@ -68,6 +69,11 @@ _django_completion()
-           ( ${COMP_CWORD} -eq 2 &&
-             ( $( basename -- ${COMP_WORDS[0]} ) == python?([1-9]\.[0-9]) ) &&
-             ( $( basename -- ${COMP_WORDS[1]} ) == django-admin.py) &&
-+            ( -r ${COMP_WORDS[1]} ) ) 
-+          ||
-+          ( ${COMP_CWORD} -eq 2 &&
-+            ( $( basename -- ${COMP_WORDS[0]} ) == python?([1-9]\.[0-9]) ) &&
-+            ( $( basename -- ${COMP_WORDS[1]} ) == django-admin) &&
-             ( -r ${COMP_WORDS[1]} ) ) ]] ; then
- 
-         case ${cur} in
-@@ -142,7 +148,7 @@ _django_completion()
-     fi
- }
- 
--complete -F _django_completion django-admin.py manage.py
-+complete -F _django_completion django-admin.py manage.py django-admin
- 
- # Support for multiple interpreters.
- unset pythons
diff -Nru /tmp/XoQpKToVpE/python-django-0.97~svn7534/debian/patches/03_manpage.diff /tmp/l6u6xkN6PC/python-django-1.0~beta~svn8138/debian/patches/03_manpage.diff
--- python-django-0.97~svn7534/debian/patches/03_manpage.diff	2008-07-30 00:04:57.000000000 -0700
+++ python-django-1.0~beta~svn8138/debian/patches/03_manpage.diff	2008-07-30 00:04:57.000000000 -0700
@@ -9,8 +9,8 @@
 --- docs/man/django-admin.1.orig	2007-09-08 10:47:27.516890257 +0100
 +++ docs/man/django-admin.1	2007-09-08 10:48:01.822845242 +0100
 @@ -1,9 +1,9 @@
--.TH "django-admin.py" "1" "June 2007" "Django Project" ""
-+.TH "django-admin" "1" "June 2007" "Django Project" ""
+-.TH "django-admin.py" "1" "March 2008" "Django Project" ""
++.TH "django-admin" "1" "March 2008" "Django Project" ""
  .SH "NAME"
 -django\-admin.py \- Utility script for the Django web framework
 +django\-admin \- Utility script for the Django web framework

Reply via email to