tags 422047 + patch
thanks
Hi,
I intend to *lovingly* NMU, with this very small changes.
I will upload to DELAYED-7, so that you still have time to stop it if
needed.
Attached is the diff for my blam 1.8.4-2.1 NMU.
--
·''`. If I can't dance to it, it's not my revolution
: :' : -- Emma Goldman
`. `' Proudly running Debian GNU/Linux (unstable)
`- www.amayita.com www.malapecora.com www.chicasduras.com
diff -u blam-1.8.4/debian/control blam-1.8.4/debian/control
--- blam-1.8.4/debian/control
+++ blam-1.8.4/debian/control
@@ -3,7 +3,7 @@
Priority: optional
Maintainer: Carlos Martín Nieto <[EMAIL PROTECTED]>
Uploaders: Gerardo Curiel <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>= 4.0.0), mono-mcs (>= 1.1.17) | c-sharp-compiler, gtk-sharp2 (>= 2.8.0), libmono-dev (>= 1.1.17), cli-common-dev (>= 0.4.4), libgecko2.0-cil (>= 0.11), libgtk2.0-dev (>= 2.2.0), libgconf2-dev (>= 2.4), gnome-sharp2 (>= 2.8), libgnomeui-dev (>= 2.2), libxul-dev (>= 1.8), cdbs, libxml-parser-perl
+Build-Depends: debhelper (>= 4.0.0), mono-mcs (>= 1.1.17) | c-sharp-compiler, gtk-sharp2 (>= 2.8.0), libmono-dev (>= 1.1.17), cli-common-dev (>= 0.4.0), libgecko2.0-cil (>= 0.11), libgnome2.0-cil, libgconf2.0-cil, libgnomeui-dev (>= 2.2), libxul-dev (>= 1.8), cdbs, libxml-parser-perl
Standards-Version: 3.7.2
Package: blam
diff -u blam-1.8.4/debian/changelog blam-1.8.4/debian/changelog
--- blam-1.8.4/debian/changelog
+++ blam-1.8.4/debian/changelog
@@ -1,3 +1,14 @@
+blam (1.8.4-2.1) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * Friendly NMU by sponsor, fixing RC bug.
+ * Applied patches from Cyril Brulebois <[EMAIL PROTECTED]>
+ and Luis Rodrigo Gallardo Cruz <[EMAIL PROTECTED]>, dealing with a code
+ fix (debian/patches/05_gnome.printJob.patch) and fixing build-depends.
+ (Closes: #422047).
+
+ -- Amaya Rodrigo Sastre <[EMAIL PROTECTED]> Mon, 20 Aug 2007 22:19:24 +0200
+
blam (1.8.4-2) unstable; urgency=low
* debian/patches/0{2,3,4}_fix*.patch: Fixes the bug that made Blam
only in patch2:
unchanged:
--- blam-1.8.4.orig/debian/patches/05_gnome.printJob.patch
+++ blam-1.8.4/debian/patches/05_gnome.printJob.patch
@@ -0,0 +1,20 @@
+--- src/Printing.cs.orig 2006-11-17 00:06:40.000000000 +0000
++++ src/Printing.cs 2007-07-15 21:57:11.000000000 +0000
+@@ -14,7 +14,7 @@
+ namespace Imendio.Blam {
+ public class PrintDialog {
+ private ItemView itemView;
+- private PrintJob printJob;
++ private Gnome.PrintJob printJob;
+
+ private static string printConfigFile = Application.BaseDir + "/print-config";
+
+@@ -31,7 +31,7 @@
+ return;
+ }
+
+- printJob = new PrintJob(LoadPrintConfig());
++ printJob = new Gnome.PrintJob(LoadPrintConfig());
+ Gnome.PrintDialog dialog = new Gnome.PrintDialog(printJob,
+ "Print - " + itemView.Widget.Title);
+ dialog.Icon = Gdk.Pixbuf.LoadFromResource("blam.png");