From owner-svn-ports-all@FreeBSD.ORG Mon May 26 15:27:09 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5521C5DF; Mon, 26 May 2014 15:27:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 281192DFF; Mon, 26 May 2014 15:27:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4QFR9Zp089692; Mon, 26 May 2014 15:27:09 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4QFR84G089684; Mon, 26 May 2014 15:27:08 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201405261527.s4QFR84G089684@svn.freebsd.org> From: Pietro Cerutti Date: Mon, 26 May 2014 15:27:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r355359 - in head/devel: . catch X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2014 15:27:09 -0000 Author: gahr Date: Mon May 26 15:27:07 2014 New Revision: 355359 URL: http://svnweb.freebsd.org/changeset/ports/355359 QAT: https://qat.redports.org/buildarchive/r355359/ Log: - New port: devel/catch Catch stands for C++ Automated Test Cases in Headers and is a multi-paradigm automated test framework for C++ and Objective-C (and, maybe, C). It is implemented entirely in a set of header files, but is packaged up as a single header for extra convenience. WWW: https://github.com/philsquared/Catch Added: head/devel/catch/ head/devel/catch/Makefile (contents, props changed) head/devel/catch/distinfo (contents, props changed) head/devel/catch/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon May 26 15:16:12 2014 (r355358) +++ head/devel/Makefile Mon May 26 15:27:07 2014 (r355359) @@ -180,6 +180,7 @@ SUBDIR += c4 SUBDIR += calibrator SUBDIR += capstone + SUBDIR += catch SUBDIR += cbind SUBDIR += cbrowser SUBDIR += cc65 Added: head/devel/catch/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/catch/Makefile Mon May 26 15:27:07 2014 (r355359) @@ -0,0 +1,26 @@ +# Created by: gahr +# $FreeBSD$ + +PORTNAME= catch +PORTVERSION= 1.0.47 +CATEGORIES= devel + +MAINTAINER= gahr@FreeBSD.org +COMMENT= Header-only test framework for C++ + +LICENSE= BSL + +USE_GITHUB= yes +GH_ACCOUNT= gahr +GH_PROJECT= Catch +GH_COMMIT= 48fac9c + +NO_BUILD= yes + +PLIST_FILES= include/catch.hpp + +do-install: + ${INSTALL_DATA} ${WRKSRC}/single_include/catch.hpp \ + ${STAGEDIR}${PREFIX}/include + +.include Added: head/devel/catch/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/catch/distinfo Mon May 26 15:27:07 2014 (r355359) @@ -0,0 +1,2 @@ +SHA256 (catch-1.0.47.tar.gz) = fabbc11cf5e0215bf756a8dda625962700ff6f8de6ab3d73b301d242708f8581 +SIZE (catch-1.0.47.tar.gz) = 262616 Added: head/devel/catch/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/catch/pkg-descr Mon May 26 15:27:07 2014 (r355359) @@ -0,0 +1,6 @@ +Catch stands for C++ Automated Test Cases in Headers and is a multi-paradigm +automated test framework for C++ and Objective-C (and, maybe, C). It is +implemented entirely in a set of header files, but is packaged up as a single +header for extra convenience. + +WWW: https://github.com/philsquared/Catch