From owner-svn-ports-head@freebsd.org Sun Oct 14 05:45:11 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A848210C6247; Sun, 14 Oct 2018 05:45:11 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5EE997A537; Sun, 14 Oct 2018 05:45:11 +0000 (UTC) (envelope-from yuri@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 59AE11A1A6; Sun, 14 Oct 2018 05:45:11 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9E5jBwH078239; Sun, 14 Oct 2018 05:45:11 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9E5jAT1078235; Sun, 14 Oct 2018 05:45:10 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201810140545.w9E5jAT1078235@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 14 Oct 2018 05:45:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r482026 - in head/benchmarks: . libcelero X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/benchmarks: . libcelero X-SVN-Commit-Revision: 482026 X-SVN-Commit-Repository: ports 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.27 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: Sun, 14 Oct 2018 05:45:11 -0000 Author: yuri Date: Sun Oct 14 05:45:10 2018 New Revision: 482026 URL: https://svnweb.freebsd.org/changeset/ports/482026 Log: New port: benchmarks/libcelero: C++ benchmark authoring library/framework Added: head/benchmarks/libcelero/ head/benchmarks/libcelero/Makefile (contents, props changed) head/benchmarks/libcelero/distinfo (contents, props changed) head/benchmarks/libcelero/pkg-descr (contents, props changed) head/benchmarks/libcelero/pkg-plist (contents, props changed) Modified: head/benchmarks/Makefile Modified: head/benchmarks/Makefile ============================================================================== --- head/benchmarks/Makefile Sun Oct 14 05:34:43 2018 (r482025) +++ head/benchmarks/Makefile Sun Oct 14 05:45:10 2018 (r482026) @@ -36,6 +36,7 @@ SUBDIR += iozone21 SUBDIR += iperf SUBDIR += iperf3 + SUBDIR += libcelero SUBDIR += libmicro SUBDIR += linux-vdbench SUBDIR += lmbench Added: head/benchmarks/libcelero/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/benchmarks/libcelero/Makefile Sun Oct 14 05:45:10 2018 (r482026) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= libcelero +DISTVERSIONPREFIX= v +DISTVERSION= 2.3.0 +CATEGORIES= benchmarks + +MAINTAINER= yuri@FreeBSD.org +COMMENT= C++ benchmark authoring library/framework + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/license.txt + +BUILD_DEPENDS= ${LOCALBASE}/include/sys/sysinfo.h:devel/libsysinfo + +USES= cmake:outsource compiler:c++11-lang localbase:ldflags +USE_GITHUB= yes +GH_ACCOUNT= DigitalInBlue +GH_PROJECT= Celero +USE_LDCONFIG= yes + +.include Added: head/benchmarks/libcelero/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/benchmarks/libcelero/distinfo Sun Oct 14 05:45:10 2018 (r482026) @@ -0,0 +1,3 @@ +TIMESTAMP = 1539495341 +SHA256 (DigitalInBlue-Celero-v2.3.0_GH0.tar.gz) = 5f8c7121f90856fc69669124697849ba262cef5a1876902fe65542e180945960 +SIZE (DigitalInBlue-Celero-v2.3.0_GH0.tar.gz) = 103446 Added: head/benchmarks/libcelero/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/benchmarks/libcelero/pkg-descr Sun Oct 14 05:45:10 2018 (r482026) @@ -0,0 +1,8 @@ +Celero aims to be a small library which can be added to a C++ project and +perform benchmarks on code in a way which is easy to reproduce, share, and +compare among individual runs, developers, or projects. Celero uses a framework +similar to that of GoogleTest to make its API easier to use and integrate into a +project. Make automated benchmarking as much a part of your development process +as automated testing. + +WWW: https://github.com/DigitalInBlue/Celero Added: head/benchmarks/libcelero/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/benchmarks/libcelero/pkg-plist Sun Oct 14 05:45:10 2018 (r482026) @@ -0,0 +1,31 @@ +include/celero/Archive.h +include/celero/Benchmark.h +include/celero/Callbacks.h +include/celero/Celero.h +include/celero/CommandLine.h +include/celero/Console.h +include/celero/Distribution.h +include/celero/Exceptions.h +include/celero/Executor.h +include/celero/Experiment.h +include/celero/ExperimentResult.h +include/celero/Export.h +include/celero/Factory.h +include/celero/FileReader.h +include/celero/GenericFactory.h +include/celero/JUnit.h +include/celero/Memory.h +include/celero/Pimpl.h +include/celero/PimplImpl.h +include/celero/Print.h +include/celero/ResultTable.h +include/celero/Statistics.h +include/celero/TestFixture.h +include/celero/TestVector.h +include/celero/ThreadLocal.h +include/celero/ThreadTestFixture.h +include/celero/Timer.h +include/celero/Utilities.h +lib/libcelero.so +share/celero-target-%%CMAKE_BUILD_TYPE%%.cmake +share/celero-target.cmake