rpms/incron/devel incron-gcc44.patch, NONE, 1.1 .cvsignore, 1.6, 1.7 incron.spec, 1.6, 1.7 sources, 1.6, 1.7 incron-gcc43.patch, 1.1, NONE

Ruben Kerkhof ruben at fedoraproject.org
Wed Feb 25 10:28:31 UTC 2009


Author: ruben

Update of /cvs/pkgs/rpms/incron/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24015

Modified Files:
	.cvsignore incron.spec sources 
Added Files:
	incron-gcc44.patch 
Removed Files:
	incron-gcc43.patch 
Log Message:
* Wed Feb 25 2009 Ruben Kerkhof <ruben at rubenkerkhof.com> 0.5.8-1
- Upstream released new version
- GCC 4.4 fixes
- Drop GCC 4.3 patch, fixed upstream


incron-gcc44.patch:

--- NEW FILE incron-gcc44.patch ---
diff -up incron-0.5.8/appargs.cpp.orig incron-0.5.8/appargs.cpp
--- incron-0.5.8/appargs.cpp.orig	2009-02-25 11:10:59.000000000 +0100
+++ incron-0.5.8/appargs.cpp	2009-02-25 11:11:11.000000000 +0100
@@ -21,6 +21,7 @@
 
 
 #include <cstring>
+#include <cstdio>
 
 #include "strtok.h"
 
diff -up incron-0.5.8/appinst.h.orig incron-0.5.8/appinst.h
--- incron-0.5.8/appinst.h.orig	2008-12-29 17:31:09.000000000 +0100
+++ incron-0.5.8/appinst.h	2009-02-25 11:10:23.000000000 +0100
@@ -23,6 +23,7 @@
 
 
 #include <string>
+#include <cstdio>
 
 
 #define APPLOCK_BASEDIR "/var/run"
diff -up incron-0.5.8/incroncfg.cpp.orig incron-0.5.8/incroncfg.cpp
--- incron-0.5.8/incroncfg.cpp.orig	2008-12-29 17:31:09.000000000 +0100
+++ incron-0.5.8/incroncfg.cpp	2009-02-25 11:10:23.000000000 +0100
@@ -181,7 +181,7 @@ bool IncronCfg::ParseLine(const char* s,
 
 bool IncronCfg::IsComment(const char* s)
 {
-  char* sx = strchr(s, '#');
+  const char* sx = strchr(s, '#');
   if (sx == NULL)
     return false;
     
diff -up incron-0.5.8/incroncfg.h.orig incron-0.5.8/incroncfg.h
--- incron-0.5.8/incroncfg.h.orig	2008-12-29 17:31:09.000000000 +0100
+++ incron-0.5.8/incroncfg.h	2009-02-25 11:10:23.000000000 +0100
@@ -19,6 +19,7 @@
 
 
 #include <cstring>
+#include <cstdio>
 #include <map>
 
 /// Configuration class.
diff -up incron-0.5.8/inotify-cxx.h.orig incron-0.5.8/inotify-cxx.h
--- incron-0.5.8/inotify-cxx.h.orig	2008-12-29 17:31:09.000000000 +0100
+++ incron-0.5.8/inotify-cxx.h	2009-02-25 11:10:23.000000000 +0100
@@ -28,6 +28,7 @@
 
 #include <stdint.h>
 #include <string>
+#include <cstdio>
 #include <deque>
 #include <map>
 


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/incron/devel/.cvsignore,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- .cvsignore	9 Feb 2008 12:58:01 -0000	1.6
+++ .cvsignore	25 Feb 2009 10:28:01 -0000	1.7
@@ -1 +1 @@
-incron-0.5.7.tar.bz2
+incron-0.5.8.tar.bz2


Index: incron.spec
===================================================================
RCS file: /cvs/pkgs/rpms/incron/devel/incron.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- incron.spec	25 Feb 2009 07:15:29 -0000	1.6
+++ incron.spec	25 Feb 2009 10:28:01 -0000	1.7
@@ -1,14 +1,14 @@
 Summary:     Inotify cron system
 Name:        incron
-Version:     0.5.7
-Release:     2%{?dist}
+Version:     0.5.8
+Release:     1%{?dist}
 
 Group:       System Environment/Base          
 License:     GPLv2
 URL:         http://inotify.aiken.cz
 Source0:     http://inotify.aiken.cz/download/incron/%{name}-%{version}.tar.bz2
 Source1:     incrond.init
-Patch0:      incron-gcc43.patch
+Patch0:     incron-gcc44.patch
 BuildRoot:   %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 Requires(post):   /sbin/chkconfig
@@ -23,7 +23,7 @@
 
 %prep
 %setup -q
-%patch0 -p 1
+%patch0 -p1 -b .orig
 
 %build
 make %{?_smp_mflags} CXXFLAGS="%{optflags}"
@@ -79,6 +79,11 @@
 
 
 %changelog
+* Wed Feb 25 2009 Ruben Kerkhof <ruben at rubenkerkhof.com> 0.5.8-1
+- Upstream released new version
+- GCC 4.4 fixes
+- Drop GCC 4.3 patch, fixed upstream
+
 * Tue Feb 24 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.5.7-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/incron/devel/sources,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sources	9 Feb 2008 12:58:01 -0000	1.6
+++ sources	25 Feb 2009 10:28:01 -0000	1.7
@@ -1 +1 @@
-f2be35d85854ed76a78f1a192d253139  incron-0.5.7.tar.bz2
+6d4f5ad2a523824771ec984ee0e15684  incron-0.5.8.tar.bz2


--- incron-gcc43.patch DELETED ---




More information about the fedora-extras-commits mailing list