diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2016-09-08 07:29:37 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2016-09-08 07:29:37 +0800 |
commit | b5706830aac8cb9ae63483a446fb54d6b1dcf525 (patch) | |
tree | 96a6acb537c4042558070905564ef7b9c980c0bd /sysutils/fdupes | |
parent | 1a7512f2b390cc8d0e96e630ff76053638642cc4 (diff) | |
download | freebsd-ports-gnome-b5706830aac8cb9ae63483a446fb54d6b1dcf525.tar.gz freebsd-ports-gnome-b5706830aac8cb9ae63483a446fb54d6b1dcf525.tar.zst freebsd-ports-gnome-b5706830aac8cb9ae63483a446fb54d6b1dcf525.zip |
Update from 1.51 to 1.6.1 therefore also bump PORTEPOCH.
Diffstat (limited to 'sysutils/fdupes')
-rw-r--r-- | sysutils/fdupes/Makefile | 5 | ||||
-rw-r--r-- | sysutils/fdupes/distinfo | 5 | ||||
-rw-r--r-- | sysutils/fdupes/files/patch-md5_md5.c | 11 |
3 files changed, 17 insertions, 4 deletions
diff --git a/sysutils/fdupes/Makefile b/sysutils/fdupes/Makefile index 58b4a1f1abf3..9ea1a61d48e7 100644 --- a/sysutils/fdupes/Makefile +++ b/sysutils/fdupes/Makefile @@ -2,8 +2,9 @@ # $FreeBSD$ PORTNAME= fdupes -PORTVERSION= 1.51 -DISTVERSIONPREFIX= ${PORTNAME}- +PORTVERSION= 1.6.1 +DISTVERSIONPREFIX= v +PORTEPOCH= 1 CATEGORIES= sysutils MAINTAINER= ehaupt@FreeBSD.org diff --git a/sysutils/fdupes/distinfo b/sysutils/fdupes/distinfo index 4e1cf621a879..9fc596758e92 100644 --- a/sysutils/fdupes/distinfo +++ b/sysutils/fdupes/distinfo @@ -1,2 +1,3 @@ -SHA256 (adrianlopezroche-fdupes-fdupes-1.51_GH0.tar.gz) = 761e16d4ecfef7302c62fe7ef1e181cd34f5c6ce5377dcad96e3ed44fb364986 -SIZE (adrianlopezroche-fdupes-fdupes-1.51_GH0.tar.gz) = 18930 +TIMESTAMP = 1473289952 +SHA256 (adrianlopezroche-fdupes-v1.6.1_GH0.tar.gz) = 9d6b6fdb0b8419815b4df3bdfd0aebc135b8276c90bbbe78ebe6af0b88ba49ea +SIZE (adrianlopezroche-fdupes-v1.6.1_GH0.tar.gz) = 20869 diff --git a/sysutils/fdupes/files/patch-md5_md5.c b/sysutils/fdupes/files/patch-md5_md5.c new file mode 100644 index 000000000000..e67534e20b63 --- /dev/null +++ b/sysutils/fdupes/files/patch-md5_md5.c @@ -0,0 +1,11 @@ +--- md5/md5.c.orig 2016-09-07 23:21:14 UTC ++++ md5/md5.c +@@ -48,7 +48,7 @@ + #include <string.h> + + /* endianness check using glibc endian.h */ +-#ifdef __APPLE__ ++#if defined(__APPLE__) || defined(__FreeBSD__) + # include <machine/endian.h> + #else + # include <endian.h> |