Date: Sun, 25 Nov 2012 07:46:51 +0000 (UTC) From: TAKATSU Tomonari <tota@FreeBSD.org> 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 Message-ID: <201211250746.qAP7kpiw019341@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <tota@FreeBSD.org> +# $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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201211250746.qAP7kpiw019341>