Date: Sat, 1 Jul 2017 18:30:30 +0000 (UTC) From: Alexey Dokuchaev <danfe@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444832 - in head/benchmarks: . typometer Message-ID: <201707011830.v61IUUi7045836@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: danfe Date: Sat Jul 1 18:30:30 2017 New Revision: 444832 URL: https://svnweb.freebsd.org/changeset/ports/444832 Log: Add a port of Typometer, text/code editor typing latency analyzer. Unfortunately, it's written in Java, but is a nice tool nonetheless. WWW: https://pavelfatin.com/typometer/ Added: head/benchmarks/typometer/ head/benchmarks/typometer/Makefile (contents, props changed) head/benchmarks/typometer/distinfo (contents, props changed) head/benchmarks/typometer/pkg-descr (contents, props changed) Modified: head/benchmarks/Makefile Modified: head/benchmarks/Makefile ============================================================================== --- head/benchmarks/Makefile Sat Jul 1 17:36:27 2017 (r444831) +++ head/benchmarks/Makefile Sat Jul 1 18:30:30 2017 (r444832) @@ -83,6 +83,7 @@ SUBDIR += thrulay SUBDIR += tsung SUBDIR += ttcp + SUBDIR += typometer SUBDIR += ubench SUBDIR += unixbench SUBDIR += webbench Added: head/benchmarks/typometer/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/benchmarks/typometer/Makefile Sat Jul 1 18:30:30 2017 (r444832) @@ -0,0 +1,39 @@ +# Created by: Alexey Dokuchaev <danfe@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= typometer +PORTVERSION= 1.0 +DISTVERSIONSUFFIX= -bin +CATEGORIES= benchmarks java +MASTER_SITES= http://freebsd.nsu.ru/distfiles/ + +MAINTAINER= danfe@FreeBSD.org +COMMENT= Text/code editor typing latency analyzer + +LICENSE= GPLv3 + +USES= zip +USE_JAVA= yes +JAVA_VERSION= 1.8+ +NO_BUILD= yes + +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} + +PLIST_FILES= bin/${PORTNAME} bin/${PORTNAME}-${PORTVERSION}.jar +PORTDOCS= README.html + +OPTIONS_DEFINE= DOCS + +do-install: + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}-${PORTVERSION}.jar \ + ${STAGEDIR}${PREFIX}/bin + ${PRINTF} "!#/bin/sh\n\n%s %s\n" "${JAVA} -jar" \ + "${PREFIX}/bin/${PORTNAME}-${PORTVERSION}.jar" \ + > ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + ${CHMOD} +x ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README.html ${STAGEDIR}${DOCSDIR} + +.include <bsd.port.mk> Added: head/benchmarks/typometer/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/benchmarks/typometer/distinfo Sat Jul 1 18:30:30 2017 (r444832) @@ -0,0 +1,3 @@ +TIMESTAMP = 1495384190 +SHA256 (typometer-1.0-bin.zip) = e1215b858ea189706d482da56b454bf38b04782cded662dd80c4945f6a942f32 +SIZE (typometer-1.0-bin.zip) = 488689 Added: head/benchmarks/typometer/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/benchmarks/typometer/pkg-descr Sat Jul 1 18:30:30 2017 (r444832) @@ -0,0 +1,19 @@ +Typometer is a tool to measure and analyze visual latency of text/code +editors. Its features: + + - Cross-platform (Windows, Mac, Unix) + - Native API calls for faster screen access + - Synchronous and asynchronous modes + - Import and export of CSV data + - Summary statistics, frequency distribution + - Line/bar charts (including comparative ones) + - Chart image export (with legend) + +Editor latency is delay between an input event and a corresponding screen +update, in particular -- delay between keystroke and character appearance. +While there are many kinds of delays (caret movement, line editing, etc.), +typing latency is a major predictor of editor usability. + +Java 8 or latter is required to run the program. + +WWW: https://pavelfatin.com/typometer/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201707011830.v61IUUi7045836>