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,12 @@ +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 + + -- 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); ++ } + } + } + +