Package: f-spot
Version: 0.2.1-1
Severity: normal
Tags: patch
Hi,
Attached is the diff for my f-spot 0.2.1-1.1 NMU.
bye,
- michael
diff -u f-spot-0.2.1/debian/changelog f-spot-0.2.1/debian/changelog
--- f-spot-0.2.1/debian/changelog
+++ f-spot-0.2.1/debian/changelog
@@ -1,3 +1,11 @@
+f-spot (0.2.1-1.1) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * Fix FTBFS, Kudos to Roland Mas and Mirco Bauer for looking
+ into this and preparing a Patch (Closes: #394142)
+
+ -- Michael Ablassmeier <[EMAIL PROTECTED]> Fri, 27 Oct 2006 12:59:23 +0200
+
f-spot (0.2.1-1) unstable; urgency=low
* New upstream release, incorporating Ubuntu changes
only in patch2:
unchanged:
--- f-spot-0.2.1.orig/src/FlickrExport.cs
+++ f-spot-0.2.1/src/FlickrExport.cs
@@ -145,12 +145,12 @@
}
Gtk.Application.Invoke (this, args, delegate (object
sender, EventArgs sargs) {
- AuthorizationEventArgs args =
(AuthorizationEventArgs) sargs;
+ AuthorizationEventArgs args2 =
(AuthorizationEventArgs) sargs;
- do_export_flickr.Sensitive = args.Auth != null;
+ do_export_flickr.Sensitive = args2.Auth != null;
if (args.Auth != null) {
- token = args.Auth.Token;
- auth = args.Auth;
+ token = args2.Auth.Token;
+ auth = args2.Auth;
CurrentState = State.Authorized;
Preferences.Set
(Preferences.EXPORT_FLICKR_TOKEN, fr.Token);
} else {