Dear maintainer, I've prepared an NMU for notebook (versioned as 0.2rel-2.2). The diff is attached to this message.
Regards.
diff -u notebook-0.2rel/debian/changelog notebook-0.2rel/debian/changelog --- notebook-0.2rel/debian/changelog +++ notebook-0.2rel/debian/changelog @@ -1,3 +1,16 @@ +notebook (0.2rel-2.2) unstable; urgency=medium + + * Non-maintainer upload. + * Add export_dynamic.patch and string_fomart_security_fix.patch (both + by Johannes Kulik, thanks!) + * export_dynamic.patch solves unresponsive buttons in the UI + (Closes: #648959) + * string_fomart_security_fix.patch solves a FTBFS when compiled with + -Werror=format-security (Closes: #643447) + * Urgency set to mediuem due to rc bug fixes + + -- Alexander Reichle-Schmehl <toli...@debian.org> Sat, 03 Dec 2011 14:35:45 +0100 + notebook (0.2rel-2.1) unstable; urgency=low * Non-maintainer upload. only in patch2: unchanged: --- notebook-0.2rel.orig/debian/patches/string_fomart_security_fix.patch +++ notebook-0.2rel/debian/patches/string_fomart_security_fix.patch @@ -0,0 +1,20 @@ +--- notebook-0.2rel/src/ui/nb_ui_interface.c 2005-03-20 20:46:01.000000000 +0100 ++++ notebook-0.2rel_debian_patches/src/ui/nb_ui_interface.c 2011-11-14 13:02:57.801757891 +0100 +@@ -68,7 +69,7 @@ + GtkWidget * dialog; + int button; + +- dialog = gtk_message_dialog_new (NULL, 0, GTK_MESSAGE_QUESTION, GTK_BUTTONS_YES_NO, text); ++ dialog = gtk_message_dialog_new (NULL, 0, GTK_MESSAGE_QUESTION, GTK_BUTTONS_YES_NO, "%s", text); + g_object_set (dialog, "title", title, "allow_grow", TRUE, NULL); + + button = gtk_dialog_run ((GtkDialog *) dialog); +@@ -85,7 +86,7 @@ + { + GtkWidget *dialog; + +- dialog = gtk_message_dialog_new (NULL, 0, GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE, text); ++ dialog = gtk_message_dialog_new (NULL, 0, GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE, "%s", text); + + gtk_dialog_run ((GtkDialog *) dialog); + gtk_widget_destroy (dialog); only in patch2: unchanged: --- notebook-0.2rel.orig/debian/patches/export_dynamic.patch +++ notebook-0.2rel/debian/patches/export_dynamic.patch @@ -0,0 +1,11 @@ +--- notebook-0.2rel/src/Makefile.in 2005-03-20 20:46:00.000000000 +0100 ++++ notebook-0.2rel_fixed/src/Makefile.in 2010-04-25 01:31:17.240652084 +0200 +@@ -70,7 +70,7 @@ + INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ + INSTOBJEXT = @INSTOBJEXT@ + INTLLIBS = @INTLLIBS@ +-LDFLAGS = @LDFLAGS@ ++LDFLAGS = @LDFLAGS@ -export-dynamic + LIBOBJS = @LIBOBJS@ + LIBS = @LIBS@ + LTLIBOBJS = @LTLIBOBJS@