Date: Tue, 27 Dec 2016 21:20:45 +0000 (UTC) From: Steve Wills <swills@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r429664 - in head/math: . rubygem-algebra Message-ID: <201612272120.uBRLKjwi002688@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: swills Date: Tue Dec 27 21:20:44 2016 New Revision: 429664 URL: https://svnweb.freebsd.org/changeset/ports/429664 Log: math/rubygem-algebra: create port This is a library for mathematical computations. Our purpose is to express the mathematical object naturally in Ruby. Though it is not operated fast, we can see the algorithm of the mathematical processing not in black box but in scripts. This library is in development stage. WWW: https://github.com/kunishi/algebra-ruby2 Added: head/math/rubygem-algebra/ head/math/rubygem-algebra/Makefile (contents, props changed) head/math/rubygem-algebra/distinfo (contents, props changed) head/math/rubygem-algebra/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Tue Dec 27 21:19:22 2016 (r429663) +++ head/math/Makefile Tue Dec 27 21:20:44 2016 (r429664) @@ -652,6 +652,7 @@ SUBDIR += rpy SUBDIR += rpy2 SUBDIR += ruby-algebra + SUBDIR += rubygem-algebra SUBDIR += rubygem-expression_parser SUBDIR += rubygem-fftw3 SUBDIR += rubygem-narray Added: head/math/rubygem-algebra/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/rubygem-algebra/Makefile Tue Dec 27 21:20:44 2016 (r429664) @@ -0,0 +1,14 @@ +# $FreeBSD$ + +PORTNAME= algebra +PORTVERSION= 0.2.3 +CATEGORIES= math rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Library for mathematical computations + +USE_RUBY= yes +USES= gem + +.include <bsd.port.mk> Added: head/math/rubygem-algebra/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/rubygem-algebra/distinfo Tue Dec 27 21:20:44 2016 (r429664) @@ -0,0 +1,3 @@ +TIMESTAMP = 1482869542 +SHA256 (rubygem/algebra-0.2.3.gem) = 6729bec6984ea642b51d4094395ef253015c5b20ed0a9b68c9988a6048ba37f9 +SIZE (rubygem/algebra-0.2.3.gem) = 210944 Added: head/math/rubygem-algebra/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/rubygem-algebra/pkg-descr Tue Dec 27 21:20:44 2016 (r429664) @@ -0,0 +1,6 @@ +This is a library for mathematical computations. Our purpose is to express the +mathematical object naturally in Ruby. Though it is not operated fast, we can +see the algorithm of the mathematical processing not in black box but in +scripts. This library is in development stage. + +WWW: https://github.com/kunishi/algebra-ruby2
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201612272120.uBRLKjwi002688>