svn commit: r509988 - in head/devel: . skypat

Yuri Victorovich yuri at FreeBSD.org
Tue Aug 27 05:50:41 UTC 2019


Author: yuri
Date: Tue Aug 27 05:50:40 2019
New Revision: 509988
URL: https://svnweb.freebsd.org/changeset/ports/509988

Log:
  New port: devel/skypat: C++ unit and performance testing framework

Added:
  head/devel/skypat/
  head/devel/skypat/Makefile   (contents, props changed)
  head/devel/skypat/distinfo   (contents, props changed)
  head/devel/skypat/pkg-descr   (contents, props changed)
  head/devel/skypat/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Tue Aug 27 04:52:00 2019	(r509987)
+++ head/devel/Makefile	Tue Aug 27 05:50:40 2019	(r509988)
@@ -6142,6 +6142,7 @@
     SUBDIR += simian
     SUBDIR += simple_components
     SUBDIR += skalibs
+    SUBDIR += skypat
     SUBDIR += slf4j
     SUBDIR += slibtool
     SUBDIR += smake

Added: head/devel/skypat/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/skypat/Makefile	Tue Aug 27 05:50:40 2019	(r509988)
@@ -0,0 +1,33 @@
+# $FreeBSD$
+
+PORTNAME=	skypat
+DISTVERSIONPREFIX=	v
+DISTVERSION=	3.1.1
+CATEGORIES=	devel
+
+MAINTAINER=	yuri at FreeBSD.org
+COMMENT=	C++ unit and performance testing framework
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=	bash:shells/bash
+
+USES=		autoreconf gmake libtool
+GNU_CONFIGURE=	yes
+USE_GITHUB=	yes
+GH_ACCOUNT=	skymizer
+GH_PROJECT=	SkyPat
+USE_LDCONFIG=	yes
+CONFIGURE_ARGS=	--disable-dependency-tracking
+
+OPTIONS_DEFINE=	EXAMPLES
+
+PORTEXAMPLES=	*
+
+post-install:
+	@${MV} ${STAGEDIR}${DATADIR}/examples ${STAGEDIR}${EXAMPLESDIR}
+	@${RM} -r ${STAGEDIR}${DATADIR}
+	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libskypat.so.3.0.1
+
+.include <bsd.port.mk>

Added: head/devel/skypat/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/skypat/distinfo	Tue Aug 27 05:50:40 2019	(r509988)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1566880802
+SHA256 (skymizer-SkyPat-v3.1.1_GH0.tar.gz) = 882342ada942057f6296162d137015e2ce0595d3fb3198a506b5b51bfa6e7420
+SIZE (skymizer-SkyPat-v3.1.1_GH0.tar.gz) = 56106

Added: head/devel/skypat/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/skypat/pkg-descr	Tue Aug 27 05:50:40 2019	(r509988)
@@ -0,0 +1,13 @@
+SkyPat is a C++ performance analysis toolkit. SkyPat combines unit tests and
+perf_event to give programmers the power of accomplishing reliability and
+performance test simultaneously.
+
+Unlike traditional tools that manipulate entire program as a black-box, SkyPat
+works on a region of code like a white-box. It is used as a normal unit test
+library. It provides macros and assertions, into which perf_events are embedded,
+to ensure correctness and to evaluate performance of a region of code. With
+perf_events, SkyPat can evaluate running time precisely without interference to
+scheduler. Moreover, perf_event also gives SkyPat accurate cycle counts that are
+useful for tools that are sensitive to variance of timing, such as compilers.
+
+WWW: https://skypat.skymizer.com/

Added: head/devel/skypat/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/skypat/pkg-plist	Tue Aug 27 05:50:40 2019	(r509988)
@@ -0,0 +1,22 @@
+include/skypat/ADT/Color.h
+include/skypat/ADT/TypeTraits.h
+include/skypat/ADT/Uncopyable.h
+include/skypat/Listeners/CSVResultPrinter.h
+include/skypat/Listeners/PrettyResultPrinter.h
+include/skypat/SkypatNamespace.h
+include/skypat/Support/IOSFwd.h
+include/skypat/Support/ManagedStatic.h
+include/skypat/Support/OStrStream.h
+include/skypat/Support/OStrStream.tcc
+include/skypat/Support/Path.h
+include/skypat/Support/Timer.h
+include/skypat/Thread/Mutex.h
+include/skypat/Thread/MutexImpl.h
+include/skypat/Thread/Thread.h
+include/skypat/Thread/ThreadImpl.h
+include/skypat/skypat.h
+lib/libskypat.a
+lib/libskypat.so
+lib/libskypat.so.3
+lib/libskypat.so.3.0.1
+libdata/pkgconfig/skypat.pc


More information about the svn-ports-head mailing list