From 710caedb4891cbc3b93e078c8b9c1a6460fdb1ac Mon Sep 17 00:00:00 2001 From: Eitan Adler Date: Tue, 10 Jul 2012 04:59:12 +0000 Subject: [PATCH] Delta assists you in minimizing "interesting" files subject to a test of their interestingness. A common such situation is when attempting to isolate a small failure-inducing substring of a large input that causes your program to exhibit a bug. WWW: http://delta.tigris.org/ Reviewed by: Bryan Drewery --- devel/Makefile | 1 + devel/delta/Makefile | 33 +++++++++++++++++++++++++++++++++ devel/delta/distinfo | 2 ++ devel/delta/pkg-descr | 6 ++++++ 4 files changed, 42 insertions(+) create mode 100644 devel/delta/Makefile create mode 100644 devel/delta/distinfo create mode 100644 devel/delta/pkg-descr diff --git a/devel/Makefile b/devel/Makefile index 9423cc0f7ac6..a4dc589c8127 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -305,6 +305,7 @@ SUBDIR += dconf SUBDIR += ddd SUBDIR += deheader + SUBDIR += delta SUBDIR += deputy SUBDIR += desktop-file-utils SUBDIR += dev86 diff --git a/devel/delta/Makefile b/devel/delta/Makefile new file mode 100644 index 000000000000..a3a08fdd7c96 --- /dev/null +++ b/devel/delta/Makefile @@ -0,0 +1,33 @@ +# Ports collection makefile for: delta +# Date created: 2012-07-09 +# Whom: eadler +# +# $FreeBSD$ +# + +PORTNAME= delta +PORTVERSION= 2006.08.03 +CATEGORIES= devel +MASTER_SITES= http://delta.tigris.org/files/documents/3103/33566/ + +MAINTAINER= eadler@FreeBSD.org +COMMENT= Heuristically minimizes interesting files + +LICENSE= BSD + +FETCH_DEPENDS= wget:${PORTSDIR}/ftp/wget + +FETCH_CMD= ${LOCALBASE}/bin/wget +FETCH_ARGS= --quiet + +PLIST_FILES= bin/delta bin/multidelta bin/topformflat + +USE_GMAKE= yes + +do-install: +.for file in delta multidelta + ${INSTALL_SCRIPT} ${WRKSRC}/${file} ${PREFIX}/bin +.endfor + ${INSTALL_PROGRAM} ${WRKSRC}/topformflat ${PREFIX}/bin + +.include diff --git a/devel/delta/distinfo b/devel/delta/distinfo new file mode 100644 index 000000000000..85450391bc93 --- /dev/null +++ b/devel/delta/distinfo @@ -0,0 +1,2 @@ +SHA256 (delta-2006.08.03.tar.gz) = 38184847a92b01b099bf927dbe66ef88fcfbe7d346a7304eeaad0977cb809ca0 +SIZE (delta-2006.08.03.tar.gz) = 32804 diff --git a/devel/delta/pkg-descr b/devel/delta/pkg-descr new file mode 100644 index 000000000000..f7ca921797d6 --- /dev/null +++ b/devel/delta/pkg-descr @@ -0,0 +1,6 @@ +Delta assists you in minimizing "interesting" files subject +to a test of their interestingness. A common such situation is when attempting +to isolate a small failure-inducing substring of a large input that causes your +program to exhibit a bug. + +WWW: http://delta.tigris.org/