rpms/pcmanfm/F-8 pcmanfm-0.4.4.2-try-supress-warning.patch, NONE, 1.1 .cvsignore, 1.13, 1.14 pcmanfm.spec, 1.14, 1.15 sources, 1.13, 1.14 pcmanfm-0.4.4.0-try-supress-warning.patch, 1.1, NONE

Mamoru Tasaka (mtasaka) fedora-extras-commits at redhat.com
Sun May 25 12:04:52 UTC 2008


Author: mtasaka

Update of /cvs/extras/rpms/pcmanfm/F-8
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv1348/F-8

Modified Files:
	.cvsignore pcmanfm.spec sources 
Added Files:
	pcmanfm-0.4.4.2-try-supress-warning.patch 
Removed Files:
	pcmanfm-0.4.4.0-try-supress-warning.patch 
Log Message:
* Sun May 25 2008 Mamoru Tasaka <mtasaka at ioa.s.u-tokyo.ac.jp> - 0.4.4.2-1
- 0.4.4.2


pcmanfm-0.4.4.2-try-supress-warning.patch:

--- NEW FILE pcmanfm-0.4.4.2-try-supress-warning.patch ---
--- pcmanfm-0.4.4.2/src/desktop/desktop-window.c.debug	2008-05-12 03:19:47.000000000 +0900
+++ pcmanfm-0.4.4.2/src/desktop/desktop-window.c	2008-05-25 20:24:36.000000000 +0900
@@ -24,6 +24,7 @@
 #include "desktop-window.h"
 #include "vfs-file-info.h"
 #include "vfs-mime-type.h"
+#include "vfs-thumbnail-loader.h"
 
 #include "glib-mem.h"
 #include "working-area.h"
@@ -31,6 +32,7 @@
 #include "ptk-file-misc.h"
 #include "ptk-file-menu.h"
 #include "ptk-utils.h"
+#include "ptk-clipboard.h"
 
 #include "settings.h"
 #include "main-window.h"
@@ -46,6 +48,7 @@
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <unistd.h>
+#include <string.h> /* strcmp */
 
 struct _DesktopItem
 {
--- pcmanfm-0.4.4.2/src/main.c.debug	2008-05-17 01:25:53.000000000 +0900
+++ pcmanfm-0.4.4.2/src/main.c	2008-05-25 20:24:36.000000000 +0900
@@ -39,6 +39,8 @@
 
 #include "ptk-utils.h"
 #include "ptk-app-chooser.h"
+#include "ptk-file-menu.h"
+#include "ptk-file-properties.h"
 
 #include "settings.h"
 
--- pcmanfm-0.4.4.2/src/pref-dialog.c.debug	2008-05-12 03:19:53.000000000 +0900
+++ pcmanfm-0.4.4.2/src/pref-dialog.c	2008-05-25 20:24:36.000000000 +0900
@@ -26,6 +26,8 @@
 #include "main-window.h"
 #include "ptk-file-browser.h"
 
+#include "desktop.h"
+
 static void
 on_show_desktop_toggled( GtkToggleButton* show_desktop, GtkWidget* dlg )
 {
--- pcmanfm-0.4.4.2/src/ptk/ptk-remote-volume.c.debug	2008-05-18 01:38:22.000000000 +0900
+++ pcmanfm-0.4.4.2/src/ptk/ptk-remote-volume.c	2008-05-25 20:24:36.000000000 +0900
@@ -29,6 +29,7 @@
 
 #include "ptk-remote-volume.h"
 #include "ptk-ui-xml.h"
+#include "ptk/ptk-utils.h"
 
 typedef struct
 {
--- pcmanfm-0.4.4.2/src/vfs/vfs-remote-fs-mgr.c.debug	2008-05-21 23:15:49.000000000 +0900
+++ pcmanfm-0.4.4.2/src/vfs/vfs-remote-fs-mgr.c	2008-05-25 20:44:32.000000000 +0900
@@ -28,6 +28,10 @@
 #include <string.h>
 #include <stdio.h>
 
+#include <stdlib.h>
+#include <unistd.h>
+#include <gtk/gtk.h>
+
 /* for chmod() */
 #include <sys/types.h>
 #include <sys/stat.h>
@@ -581,7 +585,7 @@
 
             if( g_spawn_async_with_pipes( NULL, argv, envp,
                      G_SPAWN_DO_NOT_REAP_CHILD,
-                     NULL, NULL, &pid, NULL, NULL, &child_stderr, &err ) )
+                     NULL, NULL, &pid, NULL, NULL, &child_stderr, err ) )
             {
                 g_child_watch_add( pid, on_mount_completed, &status );
                 gtk_main(); /* run main loop to prevent blocking of GUI */
@@ -634,7 +638,7 @@
         argv[0] = g_find_program_in_path( "fusermount" );
         argv[1] = "-u";
         argv[2] = vol->mount_point;
-        argv[3] = '\0';
+        argv[3] = NULL;
         char* err_msg;
 
         if( ! argv[0] )
@@ -679,7 +683,7 @@
         /* escape the string for comparison with fstab
          * FIXME: Currently only spaces was escaped.
          * Are there other characters we should escape? */
-        char* pstr;
+        const char* pstr;
         gboolean found = FALSE;
 
         for( pstr = vfs_remote_volume_get_mount_point(vol); *pstr; ++pstr )
@@ -696,7 +700,7 @@
                 continue;
             while( *line == ' ' || *line == '\t' )
                 ++line;
-            line == strtok( line, " \t\n" );
+            line = strtok( line, " \t\n" );
             if( ! line )
                 continue;
             if( strcmp( line, mount_point->str ) == 0 )


Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/pcmanfm/F-8/.cvsignore,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- .cvsignore	18 May 2008 16:32:19 -0000	1.13
+++ .cvsignore	25 May 2008 12:04:05 -0000	1.14
@@ -1 +1 @@
-pcmanfm-0.4.4.0.tar.gz
+pcmanfm-0.4.4.2.tar.gz


Index: pcmanfm.spec
===================================================================
RCS file: /cvs/extras/rpms/pcmanfm/F-8/pcmanfm.spec,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- pcmanfm.spec	18 May 2008 16:32:19 -0000	1.14
+++ pcmanfm.spec	25 May 2008 12:04:05 -0000	1.15
@@ -2,7 +2,7 @@
 %define		enable_hal	1
 
 Name:		pcmanfm
-Version:	0.4.4.0
+Version:	0.4.4.2
 Release:	1%{?dist}
 Summary:	Extremly fast and lightweight file manager
 
@@ -10,7 +10,7 @@
 License:	GPLv2+
 URL:		http://pcmanfm.sourceforge.net/
 Source0:	http://downloads.sourceforge.net/pcmanfm/%{name}-%{version}.tar.gz
-Patch0:		pcmanfm-0.4.4.0-try-supress-warning.patch
+Patch0:		pcmanfm-0.4.4.2-try-supress-warning.patch
 BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 BuildRequires:	dbus-glib-devel
@@ -93,6 +93,9 @@
 %{_datadir}/mime/packages/*.xml
 
 %changelog
+* Sun May 25 2008 Mamoru Tasaka <mtasaka at ioa.s.u-tokyo.ac.jp> - 0.4.4.2-1
+- 0.4.4.2
+
 * Mon May 19 2008 Mamoru Tasaka <mtasaka at ioa.s.u-tokyo.ac.jp> - 0.4.4.0-1
 - 0.4.4.0
 


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/pcmanfm/F-8/sources,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- sources	18 May 2008 16:32:19 -0000	1.13
+++ sources	25 May 2008 12:04:05 -0000	1.14
@@ -1 +1 @@
-642cbe7669ba149b87d33d475856557d  pcmanfm-0.4.4.0.tar.gz
+a87decfd3adff18cc2435494960e05a8  pcmanfm-0.4.4.2.tar.gz


--- pcmanfm-0.4.4.0-try-supress-warning.patch DELETED ---




More information about the fedora-extras-commits mailing list