Date: Sat, 7 Dec 2013 19:00:08 +0000 (UTC) From: William Grzybowski <wg@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335841 - in head/devel: . py-yunomi Message-ID: <201312071900.rB7J08KO081892@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wg Date: Sat Dec 7 19:00:07 2013 New Revision: 335841 URL: http://svnweb.freebsd.org/changeset/ports/335841 Log: devel/py-yunomi: Metrics library with rate, distribution and timing information yunomi provides insights to the internal behavior of an application, providing useful statistics and metrics on selected portions of your code. It's a Python port of the core portion of a Java Metrics library by Coda Hale. WWW: https://github.com/dreid/yunomi PR: ports/184581 Submitted by: Johannes Jost Meixner <xmj chaot.net> Added: head/devel/py-yunomi/ head/devel/py-yunomi/Makefile (contents, props changed) head/devel/py-yunomi/distinfo (contents, props changed) head/devel/py-yunomi/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Dec 7 18:38:36 2013 (r335840) +++ head/devel/Makefile Sat Dec 7 19:00:07 2013 (r335841) @@ -3840,6 +3840,7 @@ SUBDIR += py-yapps2 SUBDIR += py-ydbf SUBDIR += py-yum-metadata-parser + SUBDIR += py-yunomi SUBDIR += py-z3c.autoinclude SUBDIR += py-z3c.batching SUBDIR += py-z3c.caching Added: head/devel/py-yunomi/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-yunomi/Makefile Sat Dec 7 19:00:07 2013 (r335841) @@ -0,0 +1,30 @@ +# Created by: Johannes Meixner <xmj@chaot.net> +# $FreeBSD$ + +PORTNAME= yunomi +PORTVERSION= 0.3.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= xmj@chaot.net +COMMENT= Metrics library with rate, distribution and timing information + +LICENSE= MIT + +PORTDOCS= README.rst \ + HISTORY.rst + +USE_PYTHON= yes +USE_PYDISTUTILS= easy_install +PYDISTUTILS_AUTOPLIST= yes + +OPTIONS_DEFINE= DOCS + +DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} + +post-install: + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} + +.include <bsd.port.mk> Added: head/devel/py-yunomi/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-yunomi/distinfo Sat Dec 7 19:00:07 2013 (r335841) @@ -0,0 +1,2 @@ +SHA256 (yunomi-0.3.0.tar.gz) = 91fceddbb4716cba81219a1f70dd3814e128a4352698520e1ed355ab9cb7db87 +SIZE (yunomi-0.3.0.tar.gz) = 14218 Added: head/devel/py-yunomi/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-yunomi/pkg-descr Sat Dec 7 19:00:07 2013 (r335841) @@ -0,0 +1,5 @@ +yunomi provides insights to the internal behavior of an application, providing +useful statistics and metrics on selected portions of your code. It's a Python +port of the core portion of a Java Metrics library by Coda Hale. + +WWW: https://github.com/dreid/yunomi
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312071900.rB7J08KO081892>