From owner-svn-ports-head@freebsd.org Sun Apr 30 04:31:04 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7B600D56EE3; Sun, 30 Apr 2017 04:31:04 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 40372AB6; Sun, 30 Apr 2017 04:31:04 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v3U4V3gq053083; Sun, 30 Apr 2017 04:31:03 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v3U4V2Ib053063; Sun, 30 Apr 2017 04:31:02 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201704300431.v3U4V2Ib053063@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 30 Apr 2017 04:31:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r439788 - in head/sysutils: . jdupes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Apr 2017 04:31:04 -0000 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 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 +# $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 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