Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 27 May 2016 11:29:25 +0000 (UTC)
From:      Pawel Pekala <pawel@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r415934 - in head/devel: . cpputest cpputest/files
Message-ID:  <201605271129.u4RBTP5c037470@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pawel
Date: Fri May 27 11:29:25 2016
New Revision: 415934
URL: https://svnweb.freebsd.org/changeset/ports/415934

Log:
  CppUTest is a C /C++ based unit xUnit test framework for unit testing and for
  test-driving your code. It is written in C++ but is used in C and C++ projects
  and frequently used in embedded systems.
  
  CppUTest's core design principles:
  
  * Simple to use and small
  * Portable to old and new platforms
  * Build with Test-driven Development in mind
  
  WWW: https://cpputest.github.io/
  
  PR:		209622
  Submitted by:	Akos Somfai <akos.somfai@gmail.com>

Added:
  head/devel/cpputest/
  head/devel/cpputest/Makefile   (contents, props changed)
  head/devel/cpputest/distinfo   (contents, props changed)
  head/devel/cpputest/files/
  head/devel/cpputest/files/patch-Makefile.am   (contents, props changed)
  head/devel/cpputest/pkg-descr   (contents, props changed)
  head/devel/cpputest/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri May 27 11:12:16 2016	(r415933)
+++ head/devel/Makefile	Fri May 27 11:29:25 2016	(r415934)
@@ -308,6 +308,7 @@
     SUBDIR += cppi
     SUBDIR += cpptest
     SUBDIR += cppunit
+    SUBDIR += cpputest
     SUBDIR += cproto
     SUBDIR += cpuflags
     SUBDIR += cram

Added: head/devel/cpputest/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/cpputest/Makefile	Fri May 27 11:29:25 2016	(r415934)
@@ -0,0 +1,18 @@
+# $FreeBSD$
+
+PORTNAME=	cpputest
+PORTVERSION=	3.7.1
+DISTVERSIONPREFIX=	v
+CATEGORIES=	devel
+
+MAINTAINER=	akos.somfai@gmail.com
+COMMENT=	Unit testing and mocking framework for C/C++
+
+LICENSE=	BSD3CLAUSE
+
+USE_GITHUB=	yes
+
+USES=		autoreconf libtool
+GNU_CONFIGURE=	yes
+
+.include <bsd.port.mk>

Added: head/devel/cpputest/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/cpputest/distinfo	Fri May 27 11:29:25 2016	(r415934)
@@ -0,0 +1,2 @@
+SHA256 (cpputest-cpputest-v3.7.1_GH0.tar.gz) = 4efefc00ae5af2a4b8733f2d965a5355596a884f01e487d9fbcad879b8e8d528
+SIZE (cpputest-cpputest-v3.7.1_GH0.tar.gz) = 2390286

Added: head/devel/cpputest/files/patch-Makefile.am
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/cpputest/files/patch-Makefile.am	Fri May 27 11:29:25 2016	(r415934)
@@ -0,0 +1,11 @@
+--- Makefile.am.orig	2015-05-04 05:36:02 UTC
++++ Makefile.am
+@@ -21,7 +21,7 @@ endif
+ 
+ TESTS = $(check_PROGRAMS)
+ 
+-pkgconfigdir = $(libdir)/pkgconfig
++pkgconfigdir = $(prefix)/libdata/pkgconfig
+ pkgconfig_DATA = cpputest.pc
+ 
+ EXTRA_DIST = \

Added: head/devel/cpputest/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/cpputest/pkg-descr	Fri May 27 11:29:25 2016	(r415934)
@@ -0,0 +1,11 @@
+CppUTest is a C /C++ based unit xUnit test framework for unit testing and for
+test-driving your code. It is written in C++ but is used in C and C++ projects
+and frequently used in embedded systems.
+
+CppUTest's core design principles:
+
+* Simple to use and small
+* Portable to old and new platforms
+* Build with Test-driven Development in mind
+
+WWW: https://cpputest.github.io/

Added: head/devel/cpputest/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/cpputest/pkg-plist	Fri May 27 11:29:25 2016	(r415934)
@@ -0,0 +1,45 @@
+include/CppUTest/CommandLineArguments.h
+include/CppUTest/CommandLineTestRunner.h
+include/CppUTest/CppUTestConfig.h
+include/CppUTest/JUnitTestOutput.h
+include/CppUTest/MemoryLeakDetector.h
+include/CppUTest/MemoryLeakDetectorMallocMacros.h
+include/CppUTest/MemoryLeakDetectorNewMacros.h
+include/CppUTest/MemoryLeakWarningPlugin.h
+include/CppUTest/PlatformSpecificFunctions.h
+include/CppUTest/PlatformSpecificFunctions_c.h
+include/CppUTest/SimpleMutex.h
+include/CppUTest/SimpleString.h
+include/CppUTest/StandardCLibrary.h
+include/CppUTest/TestFailure.h
+include/CppUTest/TestFilter.h
+include/CppUTest/TestHarness.h
+include/CppUTest/TestHarness_c.h
+include/CppUTest/TestMemoryAllocator.h
+include/CppUTest/TestOutput.h
+include/CppUTest/TestPlugin.h
+include/CppUTest/TestRegistry.h
+include/CppUTest/TestResult.h
+include/CppUTest/TestTestingFixture.h
+include/CppUTest/Utest.h
+include/CppUTest/UtestMacros.h
+include/CppUTestExt/GMock.h
+include/CppUTestExt/GTest.h
+include/CppUTestExt/GTestConvertor.h
+include/CppUTestExt/MemoryReportAllocator.h
+include/CppUTestExt/MemoryReportFormatter.h
+include/CppUTestExt/MemoryReporterPlugin.h
+include/CppUTestExt/MockActualCall.h
+include/CppUTestExt/MockCheckedActualCall.h
+include/CppUTestExt/MockCheckedExpectedCall.h
+include/CppUTestExt/MockExpectedCall.h
+include/CppUTestExt/MockExpectedCallsList.h
+include/CppUTestExt/MockFailure.h
+include/CppUTestExt/MockNamedValue.h
+include/CppUTestExt/MockSupport.h
+include/CppUTestExt/MockSupportPlugin.h
+include/CppUTestExt/MockSupport_c.h
+include/CppUTestExt/OrderedTest.h
+lib/libCppUTest.a
+lib/libCppUTestExt.a
+libdata/pkgconfig/cpputest.pc



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605271129.u4RBTP5c037470>