diff -u tomboy-0.11.0/debian/control tomboy-0.11.0/debian/control --- tomboy-0.11.0/debian/control +++ tomboy-0.11.0/debian/control @@ -4,7 +4,7 @@ Maintainer: Ubuntu Desktop Team XSBC-Original-Maintainer: Sebastian Dröge Build-Depends: cdbs, debhelper (>= 5), autotools-dev, mono-gmcs (>= 1.1.13.4), libgtk2.0-cil (>= 2.10.4-2), libgnome2.0-cil (>= 2.16.1), libgconf2.0-cil, libgtkspell-dev (>= 2.0.9), libmono-dev (>= 1.1.13.4), intltool, libpanel-applet2-dev, cli-common-dev (>= 0.4.4), sharutils, libgtk2.0-dev (>= 2.10.0), libatk1.0-dev (>= 1.2.4), libgmime2.2-cil, gnome-doc-utils (>= 0.3.2), scrollkeeper, libmono-cairo2.0-cil, libndesk-dbus1.0-cil (>= 0.4), libndesk-dbus-glib1.0-cil (>= 0.3), libmono-addins0.2-cil (>= 0.3), libmono-addins-gui0.2-cil (>= 0.3) -Standards-Version: 3.7.3 +Standards-Version: 3.8.0 Homepage: http://www.gnome.org/projects/tomboy/ Package: tomboy diff -u tomboy-0.11.0/debian/rules tomboy-0.11.0/debian/rules --- tomboy-0.11.0/debian/rules +++ tomboy-0.11.0/debian/rules @@ -21,7 +21,7 @@ mkdir -p debian/tomboy/usr/lib/tomboy/addins cp debian/PrintNotes.dll.config debian/tomboy/usr/lib/tomboy/addins rm -rf debian/tomboy/usr/lib/tomboy/libprintnotes.la - rm -rf debian/tomboy/usr/lib/tomboy/usr/lib/tomboy/libtomboy.la + rm -rf debian/tomboy/usr/lib/tomboy/libtomboy.la common-binary-predeb-arch:: dh_clifixperms dh_clideps -d diff -u tomboy-0.11.0/debian/changelog tomboy-0.11.0/debian/changelog --- tomboy-0.11.0/debian/changelog +++ tomboy-0.11.0/debian/changelog @@ -1,3 +1,13 @@ +tomboy (0.11.0-0ubuntu2) intrepid; urgency=low + + * debian/patches/98_from-svn-fix-notes.patch: + - Fix crashing on creating new notes on notebook (LP: #250502) + * debian/rules: + - Fix path when removing libtomboy.la + * Bump Standards-Version to 3.8.0 + + -- Pedro Fragoso Thu, 24 Jul 2008 02:14:35 +0100 + tomboy (0.11.0-0ubuntu1) intrepid; urgency=low * New upstream release (LP: #241481) only in patch2: unchanged: --- tomboy-0.11.0.orig/debian/patches/98_from-svn-fix-notes.patch +++ tomboy-0.11.0/debian/patches/98_from-svn-fix-notes.patch @@ -0,0 +1,18 @@ +--- trunk/Tomboy/Notebooks/NotebookManager.cs 2008/07/21 02:45:34 2037 ++++ trunk/Tomboy/Notebooks/NotebookManager.cs 2008/07/23 23:22:02 2038 +@@ -325,9 +325,11 @@ + } else { + Logger.Debug ("Created the notebook: {0} ({1})", notebook.Name, notebook.NormalizedName); + +- // Move all the specified notesToAdd into the new notebook +- foreach (Note note in notesToAdd) { +- NotebookManager.MoveNoteToNotebook (note, notebook); ++ if (notesToAdd != null) { ++ // Move all the specified notesToAdd into the new notebook ++ foreach (Note note in notesToAdd) { ++ NotebookManager.MoveNoteToNotebook (note, notebook); ++ } + } + } + +