From owner-svn-ports-head@FreeBSD.ORG Tue Mar 25 20:20:24 2014 Return-Path: Delivered-To: svn-ports-head@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 4591E6D6; Tue, 25 Mar 2014 20:20:24 +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 274EFEDC; Tue, 25 Mar 2014 20:20:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s2PKKOgU075531; Tue, 25 Mar 2014 20:20:24 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s2PKKNmV075527; Tue, 25 Mar 2014 20:20:23 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201403252020.s2PKKNmV075527@svn.freebsd.org> From: Steve Wills Date: Tue, 25 Mar 2014 20:20:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r349189 - in head/math: . rubygem-narray 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: Tue, 25 Mar 2014 20:20:24 -0000 Author: swills Date: Tue Mar 25 20:20:23 2014 New Revision: 349189 URL: http://svnweb.freebsd.org/changeset/ports/349189 QAT: https://qat.redports.org/buildarchive/r349189/ Log: NArray is an Numerical N-dimensional Array class. Supported element types are 1/2/4-byte Integer, single/double-precision Real/Complex, and Ruby Object. This extension library incorporates fast calculation and easy manipulation of large numerical arrays into the Ruby language. NArray has features similar to NumPy, but NArray has vector and matrix subclasses. WWW: http://narray.rubyforge.org/ PR: ports/187917 Submitted by: Shin-ya MURAKAMI Added: head/math/rubygem-narray/ head/math/rubygem-narray/Makefile (contents, props changed) head/math/rubygem-narray/distinfo (contents, props changed) head/math/rubygem-narray/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Tue Mar 25 20:15:41 2014 (r349188) +++ head/math/Makefile Tue Mar 25 20:20:23 2014 (r349189) @@ -611,6 +611,7 @@ SUBDIR += ruby-narray_miss SUBDIR += ruby-numru_misc SUBDIR += ruby-numru_units + SUBDIR += rubygem-narray SUBDIR += saga SUBDIR += sage SUBDIR += sc Added: head/math/rubygem-narray/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/rubygem-narray/Makefile Tue Mar 25 20:20:23 2014 (r349189) @@ -0,0 +1,17 @@ +# Created by: Shin-ya MURAKAMI +# $FreeBSD$ + +PORTNAME= narray +PORTVERSION= 0.6.0.8 +CATEGORIES= math rubygems +MASTER_SITES= RG + +MAINTAINER= murashin@gfd-dennou.org +COMMENT= Numerical N-dimensional array library for Ruby + +USE_RUBY= yes +USE_RAKE= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/math/rubygem-narray/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/rubygem-narray/distinfo Tue Mar 25 20:20:23 2014 (r349189) @@ -0,0 +1,2 @@ +SHA256 (rubygem/narray-0.6.0.8.gem) = 6ebe71c6047b2058fd456041ce29ba4bcc91615bfa8a87b0c4f60cdd82a7275d +SIZE (rubygem/narray-0.6.0.8.gem) = 65024 Added: head/math/rubygem-narray/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/rubygem-narray/pkg-descr Tue Mar 25 20:20:23 2014 (r349189) @@ -0,0 +1,7 @@ +NArray is an Numerical N-dimensional Array class. Supported element types are +1/2/4-byte Integer, single/double-precision Real/Complex, and Ruby Object. This +extension library incorporates fast calculation and easy manipulation of large +numerical arrays into the Ruby language. NArray has features similar to NumPy, +but NArray has vector and matrix subclasses. + +WWW: http://narray.rubyforge.org/