rpms/jhead/devel jhead-gcc4.patch, NONE, 1.1 .cvsignore, 1.5, 1.6 jhead.spec, 1.12, 1.13 sources, 1.5, 1.6 jhead-compiler-warnings.patch, 1.2, NONE

Adrian Reber (adrian) fedora-extras-commits at redhat.com
Sun Feb 19 14:59:57 UTC 2006


Author: adrian

Update of /cvs/extras/rpms/jhead/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv21809

Modified Files:
	.cvsignore jhead.spec sources 
Added Files:
	jhead-gcc4.patch 
Removed Files:
	jhead-compiler-warnings.patch 
Log Message:
* Sat Feb 18 2006 Adrian Reber <adrian at lisas.de> - 2.5-1
- updated to 2.5
- removed compiler warnings patch and added gcc4 patch


jhead-gcc4.patch:

--- NEW FILE jhead-gcc4.patch ---
--- jhead-2.5/exif.c	2006-01-08 18:13:16.000000000 +0100
+++ jhead-2.5.blub/exif.c	2006-02-18 18:53:37.000000000 +0100
@@ -22,6 +22,7 @@
     #include <unistd.h>
     #include <errno.h>
     #include <limits.h>
+    #include <stdint.h>
 #endif
 
 #include "jhead.h"
@@ -329,7 +330,7 @@
         ByteCount -= s;
         if (ByteCount <= 0) break;
         printf(", ");
-        ((char *)ValuePtr) += s;
+        ValuePtr = (void *)((uint8_t *)ValuePtr + s);
     }
     if (n >= 16) printf("...");
 }


Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/jhead/devel/.cvsignore,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- .cvsignore	8 Jul 2005 17:30:05 -0000	1.5
+++ .cvsignore	19 Feb 2006 14:59:57 -0000	1.6
@@ -1 +1 @@
-jhead-2.4.tar.gz
+jhead-2.5.tar.gz


Index: jhead.spec
===================================================================
RCS file: /cvs/extras/rpms/jhead/devel/jhead.spec,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- jhead.spec	8 Jul 2005 22:11:02 -0000	1.12
+++ jhead.spec	19 Feb 2006 14:59:57 -0000	1.13
@@ -1,13 +1,13 @@
 Name: jhead
-Version: 2.4
-Release: 3%{?dist}
+Version: 2.5
+Release: 1%{?dist}
 Summary: Tool for displaying EXIF data embedded in JPEG images
 Group: Applications/Multimedia
 License: Public Domain
 URL: http://www.sentex.net/~mwandel/jhead/
-Source0: http://www.sentex.net/~mwandel/jhead/jhead-2.4.tar.gz
+Source0: http://www.sentex.net/~mwandel/jhead/jhead-2.5.tar.gz
 Patch0: jhead-makefile.patch
-Patch1: jhead-compiler-warnings.patch
+Patch1: jhead-gcc4.patch
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 %description
@@ -39,6 +39,10 @@
 %{_mandir}/man?/*
 
 %changelog
+* Sat Feb 18 2006 Adrian Reber <adrian at lisas.de> - 2.5-1
+- updated to 2.5
+- removed compiler warnings patch and added gcc4 patch
+
 * Fri Jul 08 2005 Adrian Reber <adrian at lisas.de> - 2.4-3
 - undo parts of the compiler warning patch because it 
   disabled the correct optflags


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/jhead/devel/sources,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- sources	8 Jul 2005 17:30:05 -0000	1.5
+++ sources	19 Feb 2006 14:59:57 -0000	1.6
@@ -1 +1 @@
-410d01fd323ce8733480816de3621cc0  jhead-2.4.tar.gz
+e6ea1eacd35c55dfd8dc1f6dd0abaa2d  jhead-2.5.tar.gz


--- jhead-compiler-warnings.patch DELETED ---




More information about the scm-commits mailing list