diff -u gedit-latex-plugin-0.2rc3/debian/control gedit-latex-plugin-0.2rc3/debian/control --- gedit-latex-plugin-0.2rc3/debian/control +++ gedit-latex-plugin-0.2rc3/debian/control @@ -3,13 +3,14 @@ Priority: extra Maintainer: Andrea Gasparini Build-Depends: cdbs, debhelper (>= 6), python-support ( >= 0.5.3 ), quilt -Standards-Version: 3.8.2 +Standards-Version: 3.8.3 Vcs-Browser: http://gedit-latex.svn.sourceforge.net/viewvc/gedit-latex/ Vcs-Svn: https://gedit-latex.svn.sourceforge.net/svnroot/gedit-latex Package: gedit-latex-plugin Architecture: all -Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, gedit (>= 2.20.0), rubber, python-dbus, python-poppler +Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, gedit (>= 2.20.0), rubber, python-dbus, + python-poppler, python (>=2.6) | python-multiprocessing, python-glade2 Recommends: texlive, python-enchant Description: GEdit plugin for composing and compiling LaTeX documents This plugin assist you in a number of task: diff -u gedit-latex-plugin-0.2rc3/debian/changelog gedit-latex-plugin-0.2rc3/debian/changelog --- gedit-latex-plugin-0.2rc3/debian/changelog +++ gedit-latex-plugin-0.2rc3/debian/changelog @@ -1,6 +1,23 @@ -gedit-latex-plugin (0.2rc3-1) karmic; urgency=low +gedit-latex-plugin (0.2rc3-3~ppa1) karmic; urgency=low - * new upstream release. + * debian/patches/06_master_document_not_loaded.patch: property not + initialized before getting called. (Closes: #557035). + + -- Andrea Gasparini Tue, 15 Dec 2009 22:24:44 +0100 + +gedit-latex-plugin (0.2rc3-2) unstable; urgency=low + + * added README.source (mentions standard quilt readme.source) + * debian/patches: added patch that fix some python2.6-only sintax + (Closes: #559135) + * debian/control: added dependency to python-multiprocessing + (Closes: #559176) and python-glade2 + + -- Andrea Gasparini Wed, 02 Dec 2009 10:51:14 +0100 + +gedit-latex-plugin (0.2rc3-1) unstable; urgency=low + + * new upstream release. (Closes: #524949 #557035) * debian/control: Depends on python-poppler (Closes: #552626) -- Andrea Gasparini Mon, 23 Nov 2009 15:12:39 +0100 diff -u gedit-latex-plugin-0.2rc3/debian/patches/series gedit-latex-plugin-0.2rc3/debian/patches/series --- gedit-latex-plugin-0.2rc3/debian/patches/series +++ gedit-latex-plugin-0.2rc3/debian/patches/series @@ -1,0 +2,2 @@ +05_fix_python26_specific_syntax.patch +06_master_document_not_loaded.patch only in patch2: unchanged: --- gedit-latex-plugin-0.2rc3.orig/debian/README.source +++ gedit-latex-plugin-0.2rc3/debian/README.source @@ -0,0 +1,9 @@ +This package uses quilt to manage all modifications to the upstream +source. Changes are stored in the source package as diffs in +debian/patches and applied during the build. Please see: + + /usr/share/doc/quilt/README.source + +for more information on how to apply the patches, modify patches, or +remove a patch. + only in patch2: unchanged: --- gedit-latex-plugin-0.2rc3.orig/debian/patches/06_master_document_not_loaded.patch +++ gedit-latex-plugin-0.2rc3/debian/patches/06_master_document_not_loaded.patch @@ -0,0 +1,19 @@ +Index: gedit-latex-plugin-0.2rc3/GeditLaTeXPlugin/src/latex/editor.py +=================================================================== +--- gedit-latex-plugin-0.2rc3.orig/GeditLaTeXPlugin/src/latex/editor.py 2009-12-15 22:22:56.000000000 +0100 ++++ gedit-latex-plugin-0.2rc3/GeditLaTeXPlugin/src/latex/editor.py 2009-12-15 22:23:39.000000000 +0100 +@@ -110,6 +110,7 @@ + # + self._change_reference = self.initial_timestamp + ++ self.__master_file ## call master_file property to have it initialized. + self.__parse() + self.__update_neighbors() + +@@ -535,4 +536,4 @@ + self._preferences.remove_monitor(self) + + Editor.destroy(self) +- +\ No newline at end of file ++ only in patch2: unchanged: --- gedit-latex-plugin-0.2rc3.orig/debian/patches/05_fix_python26_specific_syntax.patch +++ gedit-latex-plugin-0.2rc3/debian/patches/05_fix_python26_specific_syntax.patch @@ -0,0 +1,20 @@ +Index: gedit-latex-plugin-0.2rc3/GeditLaTeXPlugin/src/latex/views.py +=================================================================== +--- gedit-latex-plugin-0.2rc3.orig/GeditLaTeXPlugin/src/latex/views.py 2009-12-02 10:54:47.000000000 +0100 ++++ gedit-latex-plugin-0.2rc3/GeditLaTeXPlugin/src/latex/views.py 2009-12-02 10:55:06.000000000 +0100 +@@ -117,7 +117,7 @@ + for symbol in group.symbols: + try: + model.append([gtk.gdk.pixbuf_new_from_file(symbol.icon), str(symbol.template), symbol.template]) +- except GError as s: ++ except GError, s: + print s + + view = gtk.IconView(model) +@@ -366,4 +366,4 @@ + + + +- +\ No newline at end of file ++