From owner-svn-ports-all@FreeBSD.ORG Fri Mar 28 17:57:36 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A3BC1876; Fri, 28 Mar 2014 17:57:36 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 78461DB5; Fri, 28 Mar 2014 17:57:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s2SHvaRH097751; Fri, 28 Mar 2014 17:57:36 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s2SHvZ1W097747; Fri, 28 Mar 2014 17:57:35 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201403281757.s2SHvZ1W097747@svn.freebsd.org> From: Steve Wills Date: Fri, 28 Mar 2014 17:57:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r349438 - in head/devel: . rubygem-hitimes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Mar 2014 17:57:36 -0000 Author: swills Date: Fri Mar 28 17:57:35 2014 New Revision: 349438 URL: http://svnweb.freebsd.org/changeset/ports/349438 QAT: https://qat.redports.org/buildarchive/r349438/ Log: Hitimes is a fast, high resolution timer library for recording performance metrics. It uses the appropriate low method calls for each system to get the highest granularity time increments possible. WWW: https://github.com/copiousfreetime/hitimes PR: ports/187946 Submitted by: Michael Moll Added: head/devel/rubygem-hitimes/ head/devel/rubygem-hitimes/Makefile (contents, props changed) head/devel/rubygem-hitimes/distinfo (contents, props changed) head/devel/rubygem-hitimes/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Mar 28 17:52:11 2014 (r349437) +++ head/devel/Makefile Fri Mar 28 17:57:35 2014 (r349438) @@ -4233,6 +4233,7 @@ SUBDIR += rubygem-hashie SUBDIR += rubygem-highline SUBDIR += rubygem-hike + SUBDIR += rubygem-hitimes SUBDIR += rubygem-hoe SUBDIR += rubygem-holidays SUBDIR += rubygem-i18n Added: head/devel/rubygem-hitimes/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-hitimes/Makefile Fri Mar 28 17:57:35 2014 (r349438) @@ -0,0 +1,18 @@ +# Created by: Michael Moll +# $FreeBSD$ + +PORTNAME= hitimes +PORTVERSION= 1.2.1 +CATEGORIES= devel ruby +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= High resolution timer library for Ruby + +LICENSE= ISCL + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/devel/rubygem-hitimes/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-hitimes/distinfo Fri Mar 28 17:57:35 2014 (r349438) @@ -0,0 +1,2 @@ +SHA256 (rubygem/hitimes-1.2.1.gem) = 1db864ae4d8229b38d17c8a206f26e813c2574fa7c7e1f1bb2ba2d12067fa63b +SIZE (rubygem/hitimes-1.2.1.gem) = 31744 Added: head/devel/rubygem-hitimes/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-hitimes/pkg-descr Fri Mar 28 17:57:35 2014 (r349438) @@ -0,0 +1,5 @@ +Hitimes is a fast, high resolution timer library for recording +performance metrics. It uses the appropriate low method calls for +each system to get the highest granularity time increments possible. + +WWW: https://github.com/copiousfreetime/hitimes