From owner-svn-ports-all@FreeBSD.ORG Sun Nov 25 07:46:51 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C93CEF61; Sun, 25 Nov 2012 07:46:51 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id A66658FC13; Sun, 25 Nov 2012 07:46:51 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAP7kpFR019346; Sun, 25 Nov 2012 07:46:51 GMT (envelope-from tota@svn.freebsd.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAP7kpiw019341; Sun, 25 Nov 2012 07:46:51 GMT (envelope-from tota@svn.freebsd.org) Message-Id: <201211250746.qAP7kpiw019341@svn.freebsd.org> From: TAKATSU Tomonari Date: Sun, 25 Nov 2012 07:46:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r307736 - in head/devel: . rubygem-typed-array 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.14 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: Sun, 25 Nov 2012 07:46:52 -0000 Author: tota Date: Sun Nov 25 07:46:51 2012 New Revision: 307736 URL: http://svnweb.freebsd.org/changeset/ports/307736 Log: - Add a new port: devel/rubygem-typed-array All methods that alter the contents of an array that implements this Gem are first checked to ensure that the added items are of the types allowed. All methods behave exactly as their Array counterparts, including additional forms, block processing, etc. WWW: https://github.com/yaauie/typed-array Feature safe: yes Added: head/devel/rubygem-typed-array/ head/devel/rubygem-typed-array/Makefile (contents, props changed) head/devel/rubygem-typed-array/distinfo (contents, props changed) head/devel/rubygem-typed-array/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Nov 25 07:17:49 2012 (r307735) +++ head/devel/Makefile Sun Nov 25 07:46:51 2012 (r307736) @@ -4010,6 +4010,7 @@ SUBDIR += rubygem-treetop SUBDIR += rubygem-trollop SUBDIR += rubygem-turn + SUBDIR += rubygem-typed-array SUBDIR += rubygem-tzinfo SUBDIR += rubygem-unicode SUBDIR += rubygem-uuid Added: head/devel/rubygem-typed-array/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-typed-array/Makefile Sun Nov 25 07:46:51 2012 (r307736) @@ -0,0 +1,16 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= typed-array +PORTVERSION= 0.1.2 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= tota@FreeBSD.org +COMMENT= Provides methods for creating type-enforced Arrays + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/devel/rubygem-typed-array/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-typed-array/distinfo Sun Nov 25 07:46:51 2012 (r307736) @@ -0,0 +1,2 @@ +SHA256 (rubygem/typed-array-0.1.2.gem) = 891fa1de2cdccad5f9e03936569c3c15d413d8c6658e2edfe439d9386d169b62 +SIZE (rubygem/typed-array-0.1.2.gem) = 10752 Added: head/devel/rubygem-typed-array/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-typed-array/pkg-descr Sun Nov 25 07:46:51 2012 (r307736) @@ -0,0 +1,6 @@ +All methods that alter the contents of an array that implements +this Gem are first checked to ensure that the added items are of +the types allowed. All methods behave exactly as their Array +counterparts, including additional forms, block processing, etc. + +WWW: https://github.com/yaauie/typed-array