Date: Sun, 27 Jan 2019 13:09:48 +0000 (UTC) From: Tobias Kortkamp <tobik@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r491347 - in head/textproc: . pict Message-ID: <201901271309.x0RD9mlB095184@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tobik Date: Sun Jan 27 13:09:48 2019 New Revision: 491347 URL: https://svnweb.freebsd.org/changeset/ports/491347 Log: New port: textproc/pict A tool for generating test cases using the PICT (Pairwise Independent Combinatorial Testing) method, based on a simple plain text format. WWW: https://github.com/Microsoft/pict PR: 231407 Submitted by: greg@unrelenting.technology Added: head/textproc/pict/ head/textproc/pict/Makefile (contents, props changed) head/textproc/pict/distinfo (contents, props changed) head/textproc/pict/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sun Jan 27 12:58:42 2019 (r491346) +++ head/textproc/Makefile Sun Jan 27 13:09:48 2019 (r491347) @@ -1216,6 +1216,7 @@ SUBDIR += peco SUBDIR += perl2html SUBDIR += permute + SUBDIR += pict SUBDIR += php-mecab SUBDIR += php71-ctype SUBDIR += php71-dom Added: head/textproc/pict/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/pict/Makefile Sun Jan 27 13:09:48 2019 (r491347) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= pict +DISTVERSIONPREFIX= v +DISTVERSION= 3.7.1 +CATEGORIES= textproc devel + +MAINTAINER= greg@unrelenting.technology +COMMENT= Pairwise Independent Combinatorial Testing tool + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.TXT + +USES= compiler:c++11-lang +USE_GITHUB= yes +GH_ACCOUNT= Microsoft +USE_LDCONFIG= yes + +PLIST_FILES= bin/pict \ + lib/libpict.so + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/pict ${STAGEDIR}${PREFIX}/bin + ${INSTALL_LIB} ${WRKSRC}/libpict.so ${STAGEDIR}${PREFIX}/lib + +.include <bsd.port.mk> Added: head/textproc/pict/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/pict/distinfo Sun Jan 27 13:09:48 2019 (r491347) @@ -0,0 +1,3 @@ +TIMESTAMP = 1548592395 +SHA256 (Microsoft-pict-v3.7.1_GH0.tar.gz) = 4fc7939c708f9c8d6346430b3b90f122f2cc5e341f172f94eb711b1c48f2518a +SIZE (Microsoft-pict-v3.7.1_GH0.tar.gz) = 544722 Added: head/textproc/pict/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/pict/pkg-descr Sun Jan 27 13:09:48 2019 (r491347) @@ -0,0 +1,4 @@ +A tool for generating test cases using the PICT (Pairwise Independent +Combinatorial Testing) method, based on a simple plain text format. + +WWW: https://github.com/Microsoft/pict
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201901271309.x0RD9mlB095184>