From owner-svn-ports-head@freebsd.org Fri May 27 11:29:26 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CDAAAB4CF45; Fri, 27 May 2016 11:29:26 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 8FFD21CA1; Fri, 27 May 2016 11:29:26 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4RBTPZR037476; Fri, 27 May 2016 11:29:25 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4RBTP5c037470; Fri, 27 May 2016 11:29:25 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201605271129.u4RBTP5c037470@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Fri, 27 May 2016 11:29:25 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 May 2016 11:29:26 -0000 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 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 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