From owner-svn-ports-all@freebsd.org Thu Dec 1 22:24:28 2016 Return-Path: Delivered-To: svn-ports-all@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 D10CEC61F37; Thu, 1 Dec 2016 22:24:28 +0000 (UTC) (envelope-from dteske@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 91FF8134E; Thu, 1 Dec 2016 22:24:28 +0000 (UTC) (envelope-from dteske@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uB1MORdx059099; Thu, 1 Dec 2016 22:24:27 GMT (envelope-from dteske@FreeBSD.org) Received: (from dteske@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uB1MORI0059095; Thu, 1 Dec 2016 22:24:27 GMT (envelope-from dteske@FreeBSD.org) Message-Id: <201612012224.uB1MORI0059095@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dteske set sender to dteske@FreeBSD.org using -f From: Devin Teske Date: Thu, 1 Dec 2016 22:24:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r427529 - head/sysutils/cmocka 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.23 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: Thu, 01 Dec 2016 22:24:28 -0000 Author: dteske (src committer) Date: Thu Dec 1 22:24:27 2016 New Revision: 427529 URL: https://svnweb.freebsd.org/changeset/ports/427529 Log: Add sysutils/cmocka - a fork for Google's cmockery unit testing framework Differential Revision: https://reviews.freebsd.org/D8673 Reviewed by: shurd, mat Approved by: shurd Sponsored by: Panzura, Inc. Added: head/sysutils/cmocka/ head/sysutils/cmocka/Makefile (contents, props changed) head/sysutils/cmocka/distinfo (contents, props changed) head/sysutils/cmocka/pkg-descr (contents, props changed) head/sysutils/cmocka/pkg-message (contents, props changed) Added: head/sysutils/cmocka/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/cmocka/Makefile Thu Dec 1 22:24:27 2016 (r427529) @@ -0,0 +1,31 @@ +# $FreeBSD$ + +PORTNAME= cmocka +PORTVERSION= 1.1.0 +CATEGORIES= sysutils +MASTER_SITES= https://cmocka.org/files/1.1/ \ + LOCAL/dteske + +MAINTAINER= dteske@FreeBSD.org +COMMENT= Unit testing framework for C with support for mock objects + +LICENSE= APACHE20 + +USES= cmake:outsource tar:xz +USE_LDCONFIG= yes + +PLIST_FILES= include/cmocka.h \ + include/cmocka_pbc.h \ + lib/cmake/cmocka/cmocka-config-version.cmake \ + lib/cmake/cmocka/cmocka-config.cmake \ + lib/libcmocka.so \ + lib/libcmocka.so.0 \ + lib/libcmocka.so.0.4.0 \ + lib/pkgconfig/cmocka.pc + +OPTIONS_DEFINE= STATIC + +STATIC_CMAKE_ON= -DWITH_STATIC_LIB:BOOL=ON +STATIC_PLIST_FILES= lib/libcmocka.a + +.include Added: head/sysutils/cmocka/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/cmocka/distinfo Thu Dec 1 22:24:27 2016 (r427529) @@ -0,0 +1,3 @@ +TIMESTAMP = 1480622609 +SHA256 (cmocka-1.1.0.tar.xz) = e960d3bf1be618634a4b924f18bb4d6f20a825c109a8ad6d1af03913ba421330 +SIZE (cmocka-1.1.0.tar.xz) = 85132 Added: head/sysutils/cmocka/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/cmocka/pkg-descr Thu Dec 1 22:24:27 2016 (r427529) @@ -0,0 +1,4 @@ +cmocka is a fork for Google's cmockery unit testing framework to fix bugs and +support it in future. + +WWW: https://cmocka.org/ Added: head/sysutils/cmocka/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/cmocka/pkg-message Thu Dec 1 22:24:27 2016 (r427529) @@ -0,0 +1,5 @@ +================================================================= + +For more information on using cmocka, see https://api.cmocka.org + +=================================================================