From owner-svn-ports-head@FreeBSD.ORG Sat Dec 7 19:00:09 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2B910F6; Sat, 7 Dec 2013 19:00:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0C8E91262; Sat, 7 Dec 2013 19:00:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rB7J08is081897; Sat, 7 Dec 2013 19:00:08 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rB7J08KO081892; Sat, 7 Dec 2013 19:00:08 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201312071900.rB7J08KO081892@svn.freebsd.org> From: William Grzybowski Date: Sat, 7 Dec 2013 19:00:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335841 - in head/devel: . py-yunomi X-SVN-Group: ports-head 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.17 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: Sat, 07 Dec 2013 19:00:09 -0000 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 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 +# $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 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