Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 30 Apr 2017 04:31:02 +0000 (UTC)
From:      Kurt Jaeger <pi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r439788 - in head/sysutils: . jdupes
Message-ID:  <201704300431.v3U4V2Ib053063@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pi
Date: Sun Apr 30 04:31:02 2017
New Revision: 439788
URL: https://svnweb.freebsd.org/changeset/ports/439788

Log:
  New port: sysutils/jdupes
  
  jdupes is a program for identifying and taking actions upon duplicate
  files.  It is a fork of fdupes, but not a drop-in replacement.
  
  See http://www.virkki.com/jyri/articles/index.php/dupd-vs-jdupes-take-2/
  for a comparision to dupd.
  
  WWW: https://github.com/jbruchon/jdupes
  
  PR:		218665
  Submitted by:	Thomas Hurst <tom@hur.st>

Added:
  head/sysutils/jdupes/
  head/sysutils/jdupes/Makefile   (contents, props changed)
  head/sysutils/jdupes/distinfo   (contents, props changed)
  head/sysutils/jdupes/pkg-descr   (contents, props changed)
Modified:
  head/sysutils/Makefile

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Sun Apr 30 04:21:06 2017	(r439787)
+++ head/sysutils/Makefile	Sun Apr 30 04:31:02 2017	(r439788)
@@ -489,6 +489,7 @@
     SUBDIR += jailutils
     SUBDIR += javaservicewrapper
     SUBDIR += jdiskreport
+    SUBDIR += jdupes
     SUBDIR += jkill
     SUBDIR += jobd
     SUBDIR += jps

Added: head/sysutils/jdupes/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/jdupes/Makefile	Sun Apr 30 04:31:02 2017	(r439788)
@@ -0,0 +1,30 @@
+# Created by: Thomas Hurst <tom@hur.st>
+# $FreeBSD$
+
+PORTNAME=	jdupes
+PORTVERSION=	1.8
+DISTVERSIONPREFIX=	v
+CATEGORIES=	sysutils
+
+MAINTAINER=	tom@hur.st
+COMMENT=	Powerful duplicate file finder and an enhanced fork of 'fdupes'
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	jbruchon
+
+USES=	gmake
+
+PLIST_FILES=	bin/jdupes man/man1/jdupes.1.gz
+
+OPTIONS_DEFINE=	LOW_MEMORY
+LOW_MEMORY_DESC=	Build for lower memory usage instead of speed
+LOW_MEMORY_MAKE_ENV=	CFLAGS_EXTRA=-DLOW_MEMORY
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
+	${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1
+
+.include <bsd.port.mk>

Added: head/sysutils/jdupes/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/jdupes/distinfo	Sun Apr 30 04:31:02 2017	(r439788)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1491179702
+SHA256 (jbruchon-jdupes-v1.8_GH0.tar.gz) = f2ba7cfecbc77cb2c43ec490994f3363754b6a84d6a5ca9728a2c33601acd6a0
+SIZE (jbruchon-jdupes-v1.8_GH0.tar.gz) = 59362

Added: head/sysutils/jdupes/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/jdupes/pkg-descr	Sun Apr 30 04:31:02 2017	(r439788)
@@ -0,0 +1,7 @@
+jdupes is a program for identifying and taking actions upon duplicate
+files.  It is a fork of fdupes, but not a drop-in replacement.
+
+See http://www.virkki.com/jyri/articles/index.php/dupd-vs-jdupes-take-2/
+for a comparision to dupd.
+
+WWW: https://github.com/jbruchon/jdupes



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201704300431.v3U4V2Ib053063>