r15262 - in /desktop/unstable/file-roller/debian: changelog patches/02_create-tar-archives.patch
slomo at users.alioth.debian.org
slomo at users.alioth.debian.org
Mon Mar 17 20:41:41 UTC 2008
Author: slomo
Date: Mon Mar 17 20:41:41 2008
New Revision: 15262
URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=15262
Log:
* debian/patches/02_create-tar-archives.patch:
+ Don't print a misleading error message when creating tar files.
Patch by Andreas Henriksson <andreas at fatal.se> (Closes: #453096).
Added:
desktop/unstable/file-roller/debian/patches/02_create-tar-archives.patch
Modified:
desktop/unstable/file-roller/debian/changelog
Modified: desktop/unstable/file-roller/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/file-roller/debian/changelog?rev=15262&op=diff
==============================================================================
--- desktop/unstable/file-roller/debian/changelog (original)
+++ desktop/unstable/file-roller/debian/changelog Mon Mar 17 20:41:41 2008
@@ -1,3 +1,11 @@
+file-roller (2.22.0-2) unstable; urgency=low
+
+ * debian/patches/02_create-tar-archives.patch:
+ + Don't print a misleading error message when creating tar files.
+ Patch by Andreas Henriksson <andreas at fatal.se> (Closes: #453096).
+
+ -- Sebastian Dröge <slomo at debian.org> Mon, 17 Mar 2008 21:40:42 +0100
+
file-roller (2.22.0-1) unstable; urgency=low
* New upstream stable release, adds support for lzma archives
Added: desktop/unstable/file-roller/debian/patches/02_create-tar-archives.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/file-roller/debian/patches/02_create-tar-archives.patch?rev=15262&op=file
==============================================================================
--- desktop/unstable/file-roller/debian/patches/02_create-tar-archives.patch (added)
+++ desktop/unstable/file-roller/debian/patches/02_create-tar-archives.patch Mon Mar 17 20:41:41 2008
@@ -1,0 +1,15 @@
+--- src/fr-command-tar.c.old 2008-03-17 21:39:27.000000000 +0100
++++ src/fr-command-tar.c 2008-03-17 21:40:05.000000000 +0100
+@@ -325,8 +325,10 @@
+ fr_process_add_arg (comm->process, e_base_dir);
+ g_free (e_base_dir);
+ }
+-
+- if (update)
++
++ if (!path_is_file (c_tar->uncomp_filename))
++ fr_process_add_arg (comm->process, "-cf");
++ else if (update)
+ fr_process_add_arg (comm->process, "-uf");
+ else
+ fr_process_add_arg (comm->process, "-rf");
More information about the pkg-gnome-commits
mailing list