mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
- Update to 1.17
PR: ports/150202 Submitted by: bapt (me) Approved by: Gianmarco Giovannelli <gmarco _at_ gufi.org> (maintainer)
This commit is contained in:
parent
8d4044f2f0
commit
44f4941972
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=260655
@ -6,7 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= cpdup
|
||||
PORTVERSION= 1.12
|
||||
PORTVERSION= 1.17
|
||||
CATEGORIES= sysutils
|
||||
MASTER_SITES= http://apollo.backplane.com/FreeSrc/ \
|
||||
http://utenti.gufi.org/~gmarco/files/distfiles/
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (cpdup-1.12.tgz) = 9551e09fa7e118b8bb04b59562e39ecd
|
||||
SHA256 (cpdup-1.12.tgz) = 4a2525662d8281004efefe34a1761a6accd138e20ac0aa6efb1d09263f8be690
|
||||
SIZE (cpdup-1.12.tgz) = 34790
|
||||
MD5 (cpdup-1.17.tgz) = ca28bc9426049efe8ad761831487a244
|
||||
SHA256 (cpdup-1.17.tgz) = 22ed182c130a6fb8d179afbda50408aba6985bbd96ceeb01c05858b4562d93e7
|
||||
SIZE (cpdup-1.17.tgz) = 42236
|
||||
|
@ -1,14 +0,0 @@
|
||||
--- cpdup.c.orig 2008-04-14 07:40:51.000000000 +0200
|
||||
+++ cpdup.c 2008-09-25 12:44:04.011824830 +0200
|
||||
@@ -634,6 +634,11 @@
|
||||
r = 0;
|
||||
goto done;
|
||||
}
|
||||
+#ifdef SF_SNAPSHOT
|
||||
+ /* skip snapshot files because they're sparse and _huge_ */
|
||||
+ if (st1.st_flags & SF_SNAPSHOT)
|
||||
+ return(0);
|
||||
+#endif
|
||||
st2.st_mode = 0; /* in case lstat fails */
|
||||
st2.st_flags = 0; /* in case lstat fails */
|
||||
if (dpath && hc_lstat(&DstHost, dpath, &st2) == 0)
|
@ -1,10 +0,0 @@
|
||||
--- cpdup.h.orig 2009-03-13 15:53:06.000000000 +0100
|
||||
+++ cpdup.h 2009-03-13 15:53:45.000000000 +0100
|
||||
@@ -14,6 +14,7 @@
|
||||
#include <stdlib.h>
|
||||
#include <stdarg.h>
|
||||
#include <stddef.h>
|
||||
+#include <stdint.h>
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
#include <unistd.h>
|
Loading…
Reference in New Issue
Block a user