pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/tmin Import tmin-0.05 as devel/tmin.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/52dc2cf2c23b
branches:  trunk
changeset: 643067:52dc2cf2c23b
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Wed Dec 10 20:07:02 2014 +0000

description:
Import tmin-0.05 as devel/tmin.

Tmin is a simple utility meant to make it easy to narrow down
complex test cases produced through fuzzing. It is closely related
to another tool of this type, delta, but meant specifically for
unknown, underspecified, or hard to parse data formats (without
the need to tokenize and re-serialize data), and for easy integration
with external UI automation harnesses.

It also features alphabet normalization to simplify test cases that
could not be shortened.

diffstat:

 devel/tmin/DESCR                |   9 +++++++++
 devel/tmin/Makefile             |  20 ++++++++++++++++++++
 devel/tmin/PLIST                |   3 +++
 devel/tmin/distinfo             |   6 ++++++
 devel/tmin/patches/patch-tmin.c |  14 ++++++++++++++
 5 files changed, 52 insertions(+), 0 deletions(-)

diffs (72 lines):

diff -r 0a41c87a5d96 -r 52dc2cf2c23b devel/tmin/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/tmin/DESCR  Wed Dec 10 20:07:02 2014 +0000
@@ -0,0 +1,9 @@
+Tmin is a simple utility meant to make it easy to narrow down
+complex test cases produced through fuzzing. It is closely related
+to another tool of this type, delta, but meant specifically for
+unknown, underspecified, or hard to parse data formats (without
+the need to tokenize and re-serialize data), and for easy integration
+with external UI automation harnesses.
+
+It also features alphabet normalization to simplify test cases that
+could not be shortened.
diff -r 0a41c87a5d96 -r 52dc2cf2c23b devel/tmin/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/tmin/Makefile       Wed Dec 10 20:07:02 2014 +0000
@@ -0,0 +1,20 @@
+# $NetBSD: Makefile,v 1.1 2014/12/10 20:07:02 wiz Exp $
+
+DISTNAME=      tmin-0.05
+CATEGORIES=    devel
+MASTER_SITES=  https://tmin.googlecode.com/files/
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      https://code.google.com/p/tmin/
+COMMENT=       Tool for minimizing complex test cases in security testing
+#LICENSE=      apache-2.0
+
+WRKSRC=        ${WRKDIR}/tmin
+
+INSTALLATION_DIRS=     bin share/doc/tmin
+
+do-install:
+       ${INSTALL_PROGRAM} ${WRKSRC}/tmin ${DESTDIR}${PREFIX}/bin
+       ${INSTALL_DATA} ${WRKSRC}/README ${DESTDIR}${PREFIX}/share/doc/tmin
+
+.include "../../mk/bsd.pkg.mk"
diff -r 0a41c87a5d96 -r 52dc2cf2c23b devel/tmin/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/tmin/PLIST  Wed Dec 10 20:07:02 2014 +0000
@@ -0,0 +1,3 @@
+@comment $NetBSD: PLIST,v 1.1 2014/12/10 20:07:02 wiz Exp $
+bin/tmin
+share/doc/tmin/README
diff -r 0a41c87a5d96 -r 52dc2cf2c23b devel/tmin/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/tmin/distinfo       Wed Dec 10 20:07:02 2014 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2014/12/10 20:07:02 wiz Exp $
+
+SHA1 (tmin-0.05.tar.gz) = 2af14f2b410189823bd1afa462357d90c21f408b
+RMD160 (tmin-0.05.tar.gz) = 06a5ced2a734f4826f515bc5ef3721fb12c69f30
+Size (tmin-0.05.tar.gz) = 11331 bytes
+SHA1 (patch-tmin.c) = a944ceac8209b88c299d6fb8749d8587e75c4b15
diff -r 0a41c87a5d96 -r 52dc2cf2c23b devel/tmin/patches/patch-tmin.c
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/tmin/patches/patch-tmin.c   Wed Dec 10 20:07:02 2014 +0000
@@ -0,0 +1,14 @@
+$NetBSD: patch-tmin.c,v 1.1 2014/12/10 20:07:02 wiz Exp $
+
+Add missing header file (kill(2), SIG*).
+
+--- tmin.c.orig        2010-05-25 17:55:51.000000000 +0000
++++ tmin.c
+@@ -23,6 +23,7 @@
+ 
+ */
+ 
++#include <signal.h>
+ #include <stdio.h>
+ #include <stdlib.h>
+ #include <unistd.h>



Home | Main Index | Thread Index | Old Index