rpms/cpdup/F-11 cpdup-1.14-gcc44.patch, NONE, 1.1 cpdup-1.14-typos.patch, NONE, 1.1 .cvsignore, 1.3, 1.4 cpdup.spec, 1.5, 1.6 sources, 1.3, 1.4 cpdup-1.11-explicit_sizes.patch, 1.1, NONE

Michel Alexandre Salim salimma at fedoraproject.org
Sat Aug 22 11:20:48 UTC 2009


Author: salimma

Update of /cvs/pkgs/rpms/cpdup/F-11
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv27562/F-11

Modified Files:
	.cvsignore cpdup.spec sources 
Added Files:
	cpdup-1.14-gcc44.patch cpdup-1.14-typos.patch 
Removed Files:
	cpdup-1.11-explicit_sizes.patch 
Log Message:
* Sat Aug 22 2009 Michel Salim <salimma at fedoraproject.org> - 1.14-1
- Update to 1.14


cpdup-1.14-gcc44.patch:
 cpdup.h |    1 +
 1 file changed, 1 insertion(+)

--- NEW FILE cpdup-1.14-gcc44.patch ---
--- cpdup/cpdup.h.gcc44	2008-11-29 17:22:06.000000000 -0500
+++ cpdup/cpdup.h	2009-08-22 06:11:52.916246762 -0400
@@ -11,6 +11,7 @@
 
 #include <fcntl.h>
 #include <stdio.h>
+#include <stdint.h>
 #include <stdlib.h>
 #include <stdarg.h>
 #include <stddef.h>

cpdup-1.14-typos.patch:
 cpdup.1 |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

--- NEW FILE cpdup-1.14-typos.patch ---
--- cpdup/cpdup.1.typos	2009-01-09 19:54:00.000000000 -0500
+++ cpdup/cpdup.1	2009-08-22 06:44:14.670245706 -0400
@@ -51,7 +51,7 @@
 The
 .Nm
 utility makes an exact mirror copy of the source in the destination, creating
-and deleting files and directories as necessary.  UTimes, hardlinks,
+and deleting files and directories as necessary.  Utimes, hardlinks,
 softlinks, devices, permissions, and flags are mirrored.  By default,
 .Nm
 asks for confirmation if any file or directory needs to be removed from
@@ -119,7 +119,7 @@
 .It Fl o
 Do not remove any files, just overwrite/add.
 .It Fl m
-Generate and maintain a MD5 checkfile in each directory on the source
+Generate and maintain an MD5 checkfile in each directory on the source
 and do an MD5 check on each file of the destination when the destination
 appears to be the same as the source.  If the check fails,
 .Nm
@@ -162,7 +162,7 @@
 must record the paths for all files it encounters while it operates
 and it is possible that you may run the process out of memory.
 .Pp
-The file found vi the hardlink path will be byte-by-byte compared with the
+The file found via the hardlink path will be byte-by-byte compared with the
 source if the
 .Fl V
 or
@@ -186,7 +186,7 @@
 into slave mode and is used to initiate the slave protocol on a remote
 machine.
 .It Fl k
-Generate and maintain a FSMID checkfile called .FSMID.CHECK in each
+Generate and maintain an FSMID checkfile called .FSMID.CHECK in each
 directory on the target.
 .Nm
 will check the FSMID for each source file or directory against the checkfile


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/cpdup/F-11/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -r1.3 -r1.4
--- .cvsignore	5 Jun 2008 13:49:10 -0000	1.3
+++ .cvsignore	22 Aug 2009 11:20:48 -0000	1.4
@@ -1 +1 @@
-cpdup-1.11.tgz
+cpdup-1.14.tgz


Index: cpdup.spec
===================================================================
RCS file: /cvs/pkgs/rpms/cpdup/F-11/cpdup.spec,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -p -r1.5 -r1.6
--- cpdup.spec	24 Feb 2009 09:21:57 -0000	1.5
+++ cpdup.spec	22 Aug 2009 11:20:48 -0000	1.6
@@ -1,6 +1,6 @@
 Name:           cpdup
-Version:        1.11
-Release:        3%{?dist}
+Version:        1.14
+Release:        1%{?dist}
 Summary:        Filesystem mirroring utility
 
 Group:          Applications/Archiving
@@ -8,8 +8,9 @@ License:        BSD
 URL:            http://apollo.backplane.com/FreeSrc/
 Source0:        http://apollo.backplane.com/FreeSrc/cpdup-%{version}.tgz
 Source1:        Makefile.linux
-Patch0:         cpdup-1.11-explicit_sizes.patch
+Patch0:         cpdup-1.14-gcc44.patch
 Patch1:         cpdup-1.11-unused.patch
+Patch2:         cpdup-1.14-typos.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 #BuildRequires:  
@@ -30,13 +31,13 @@ destination directory with a file.
 
 %prep
 %setup -q -n %{name}
-%patch0 -p1 -b .explicit_sizes
+%patch0 -p1 -b .gcc44
 %patch1 -p1 -b .unused
+%patch2 -p1 -b .typos
 rm md5.c
 
 
 %build
-# configure
 make %{?_smp_mflags} CFLAGS="${RPM_OPT_FLAGS}" -f %{SOURCE1}
 
 
@@ -58,6 +59,12 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Sat Aug 22 2009 Michel Salim <salimma at fedoraproject.org> - 1.14-1
+- Update to 1.14
+
+* Fri Jul 24 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 1.11-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
 * Tue Feb 24 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 1.11-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/cpdup/F-11/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -r1.3 -r1.4
--- sources	5 Jun 2008 13:49:10 -0000	1.3
+++ sources	22 Aug 2009 11:20:48 -0000	1.4
@@ -1 +1 @@
-9b6f25845fc4998d9151d0ef5e7936c5  cpdup-1.11.tgz
+872f41683dd0f6d32bff111e22ad50f7  cpdup-1.14.tgz


--- cpdup-1.11-explicit_sizes.patch DELETED ---




More information about the fedora-extras-commits mailing list