From owner-svn-ports-all@freebsd.org Tue Dec 27 21:20:46 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8CE26C93785; Tue, 27 Dec 2016 21:20:46 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 427841A61; Tue, 27 Dec 2016 21:20:46 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBRLKjmF002692; Tue, 27 Dec 2016 21:20:45 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBRLKjwi002688; Tue, 27 Dec 2016 21:20:45 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201612272120.uBRLKjwi002688@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 27 Dec 2016 21:20:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r429664 - in head/math: . rubygem-algebra 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.23 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: Tue, 27 Dec 2016 21:20:46 -0000 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 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