svn commit: r355359 - in head/devel: . catch

Pietro Cerutti gahr at FreeBSD.org
Mon May 26 15:27:09 UTC 2014


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 at 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 <bsd.port.mk>

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


More information about the svn-ports-head mailing list