svn commit: r349189 - in head/math: . rubygem-narray
Steve Wills
swills at FreeBSD.org
Tue Mar 25 20:20:24 UTC 2014
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 <murashin at gfd-dennou.org>
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 <murashin at gfd-dennou.org>
+# $FreeBSD$
+
+PORTNAME= narray
+PORTVERSION= 0.6.0.8
+CATEGORIES= math rubygems
+MASTER_SITES= RG
+
+MAINTAINER= murashin at gfd-dennou.org
+COMMENT= Numerical N-dimensional array library for Ruby
+
+USE_RUBY= yes
+USE_RAKE= yes
+USE_RUBYGEMS= yes
+RUBYGEM_AUTOPLIST= yes
+
+.include <bsd.port.mk>
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/
More information about the svn-ports-all
mailing list