From owner-svn-ports-head@FreeBSD.ORG Thu Oct 24 20:01:03 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 ESMTP id A685DFAC; Thu, 24 Oct 2013 20:01:03 +0000 (UTC) (envelope-from swills@FreeBSD.org) 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 797732766; Thu, 24 Oct 2013 20:01:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9OK13ei015938; Thu, 24 Oct 2013 20:01:03 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9OK12Nm015932; Thu, 24 Oct 2013 20:01:02 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201310242001.r9OK12Nm015932@svn.freebsd.org> From: Steve Wills Date: Thu, 24 Oct 2013 20:01:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r331525 - in head/devel: . rubygem-simplecov 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.14 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: Thu, 24 Oct 2013 20:01:03 -0000 Author: swills Date: Thu Oct 24 20:01:02 2013 New Revision: 331525 URL: http://svnweb.freebsd.org/changeset/ports/331525 Log: Code coverage for Ruby 1.9 with a powerful configuration library and automatic merging of coverage across test suites WWW: http://github.com/colszowka/simplecov PR: ports/182757 Submitted by: Loic Blot Added: head/devel/rubygem-simplecov/ head/devel/rubygem-simplecov/Makefile (contents, props changed) head/devel/rubygem-simplecov/distinfo (contents, props changed) head/devel/rubygem-simplecov/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Oct 24 19:52:42 2013 (r331524) +++ head/devel/Makefile Thu Oct 24 20:01:02 2013 (r331525) @@ -4227,6 +4227,7 @@ SUBDIR += rubygem-shoulda-context SUBDIR += rubygem-shoulda-matchers SUBDIR += rubygem-simple_form + SUBDIR += rubygem-simplecov SUBDIR += rubygem-slim SUBDIR += rubygem-slop SUBDIR += rubygem-soap4r Added: head/devel/rubygem-simplecov/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-simplecov/Makefile Thu Oct 24 20:01:02 2013 (r331525) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= simplecov +PORTVERSION= 0.7.1 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= a powerful configuration library and automatic merging of coverage across test suites + +RUN_DEPENDS= rubygem-multi_json>=1.0:${PORTSDIR}/devel/rubygem-multi_json \ + rubygem-simplecov-html>=0.7.1:${PORTSDIR}/textproc/rubygem-simplecov-html + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +NO_STAGE= yes + +.include Added: head/devel/rubygem-simplecov/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-simplecov/distinfo Thu Oct 24 20:01:02 2013 (r331525) @@ -0,0 +1,2 @@ +SHA256 (rubygem/simplecov-0.7.1.gem) = f0b974cb466bfd9174e16a7f74bde1edc651548d6c221fd112fa07d9c56f1b25 +SIZE (rubygem/simplecov-0.7.1.gem) = 44032 Added: head/devel/rubygem-simplecov/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-simplecov/pkg-descr Thu Oct 24 20:01:02 2013 (r331525) @@ -0,0 +1,4 @@ +Code coverage for Ruby 1.9 with a powerful configuration library and automatic +merging of coverage across test suites + +WWW: http://github.com/colszowka/simplecov