Hello community, here is the log from the commit of package file-roller checked in at Thu Dec 14 01:53:13 CET 2006. -------- --- GNOME/file-roller/file-roller.changes 2006-10-13 17:53:41.000000000 +0200 +++ /mounts/work_src_done/STABLE/file-roller/file-roller.changes 2006-12-12 19:24:49.000000000 +0100 @@ -1,0 +2,6 @@ +Tue Dec 12 19:24:41 CET 2006 - jhargadon@suse.de + +- applied a patch to fix crashing when an iso image is right-clicked + (#187126) + +------------------------------------------------------------------- New: ---- bug-187126_file-roller-batch-extract-all.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ file-roller.spec ++++++ --- /var/tmp/diff_new_pack.DGpDnF/_old 2006-12-14 01:53:02.000000000 +0100 +++ /var/tmp/diff_new_pack.DGpDnF/_new 2006-12-14 01:53:02.000000000 +0100 @@ -14,17 +14,18 @@ BuildRequires: docbook-xsl-stylesheets gnome-doc-utils-devel gnome-patch-translation gnutls-devel intltool kdelibs3-doc libglade2-devel libgnomeprintui-devel libwnck-devel mDNSResponder-devel nautilus-devel perl-XML-Parser scrollkeeper update-desktop-files %define prefix /opt/gnome %define sysconfdir /etc%{prefix} -License: GPL +License: GNU General Public License (GPL) Group: System/GUI/GNOME Autoreqprov: on Version: 2.16.1 -Release: 3 +Release: 28 Summary: An Archive Manager for GNOME Source: ftp://ftp.gnome.org/pub/GNOME/sources/file-roller/2.6/%{name}-%{version}.tar.bz2 Source1: file-roller.xml Patch: file-roller-ximian-defaults.patch Patch1: fr_59941.diff Patch2: file-roller-2.12.2-no-cmdline-overflow.patch +Patch3: bug-187126_file-roller-batch-extract-all.patch URL: http://fileroller.sourceforge.net BuildRoot: %{_tmppath}/%{name}-%{version}-build Docdir: %{_defaultdocdir} @@ -73,6 +74,7 @@ %patch -p1 %patch1 -p1 %patch2 -p1 +%patch3 -p1 gnome-patch-translation-update %build @@ -134,6 +136,9 @@ /usr/share/mime/packages/*.xml %changelog -n file-roller +* Tue Dec 12 2006 - jhargadon@suse.de +- applied a patch to fix crashing when an iso image is right-clicked + (#187126) * Fri Oct 13 2006 - danw@suse.de - Remove dead patch - Update for gnome-doc-utils-devel ++++++ bug-187126_file-roller-batch-extract-all.patch ++++++ Novell bug: https://bugzilla.novell.com/show_bug.cgi?id=187126 Upstream bug: http://bugzilla.gnome.org/show_bug.cgi?id=342043 Original bug: https://launchpad.net/distros/ubuntu/+source/file-roller/+bug/40899 2006-12-11 jacob berkman <jberkman@novell.com> * src/window.h (FRWindow): add batch_extracting_all boolean * src/window.c (window_fake_load): load if batch extracting all and archive doesn't directly support extracting all * src/window.c (window_new): initialise batch_extracting_all * src/window.c (window_archive__open_extract): tell window_fake_load that we are batch extracting all --- file-roller-2.12.2/src/window.h~ 2005-11-28 15:55:02.000000000 -0500 +++ file-roller-2.12.2/src/window.h 2006-12-11 14:28:10.000000000 -0500 @@ -192,6 +192,7 @@ typedef struct { gboolean extracting_dragged_files; gboolean extracting_dragged_files_interrupted; gboolean batch_adding_one_file; + gboolean batch_extracting_all; /* progress dialog data */ --- file-roller-2.12.2/src/window.c~ 2006-12-11 14:48:27.000000000 -0500 +++ file-roller-2.12.2/src/window.c 2006-12-11 14:52:09.000000000 -0500 @@ -3096,7 +3096,8 @@ window_fake_load (FRArchive *archive, return (window->batch_mode && ! (window->add_after_opening && window->update_dropped_files && ! archive->command->propAddCanUpdate) - && ! (window->add_after_opening && ! window->update_dropped_files && ! archive->command->propAddCanReplace)); + && ! (window->add_after_opening && ! window->update_dropped_files && ! archive->command->propAddCanReplace) + && ! (window->batch_extracting_all && !archive->command->propCanExtractAll)); } @@ -3446,6 +3447,7 @@ window_new (void) window->stoppable = TRUE; window->batch_adding_one_file = FALSE; + window->batch_extracting_all = FALSE; window->path_clicked = NULL; @@ -6040,6 +6042,7 @@ window_archive__open_extract (FRWindow { window->non_interactive = TRUE; + window->batch_extracting_all = TRUE; window_batch_mode_add_action (window, FR_BATCH_ACTION_OPEN, g_strdup (filename), ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@suse.de