Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 16 May 2020 10:50:02 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r535386 - in head/math: . rubygem-matrix
Message-ID:  <202005161050.04GAo2be008026@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sat May 16 10:50:02 2020
New Revision: 535386
URL: https://svnweb.freebsd.org/changeset/ports/535386

Log:
  Add rubygem-matrix 0.3.0
  
  Matrix is an implementation of Matrix and Vector classes.
  
  The Matrix class represents a mathematical matrix. It provides methods for
  creating matrices, operating on them arithmetically and algebraically, and
  determining their mathematical properties (trace, rank, inverse, determinant,
  eigensystem, etc.).
  
  The Vector class represents a mathematical vector, which is useful in its own
  right, and also constitutes a row or column of a Matrix.
  
  WWW: https://github.com/ruby/matrix

Added:
  head/math/rubygem-matrix/
  head/math/rubygem-matrix/Makefile   (contents, props changed)
  head/math/rubygem-matrix/distinfo   (contents, props changed)
  head/math/rubygem-matrix/pkg-descr   (contents, props changed)
Modified:
  head/math/Makefile

Modified: head/math/Makefile
==============================================================================
--- head/math/Makefile	Sat May 16 10:49:56 2020	(r535385)
+++ head/math/Makefile	Sat May 16 10:50:02 2020	(r535386)
@@ -864,6 +864,7 @@
     SUBDIR += rubygem-expression_parser
     SUBDIR += rubygem-fftw3
     SUBDIR += rubygem-mathn
+    SUBDIR += rubygem-matrix
     SUBDIR += rubygem-mtrc
     SUBDIR += rubygem-narray
     SUBDIR += rubygem-narray_miss

Added: head/math/rubygem-matrix/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/rubygem-matrix/Makefile	Sat May 16 10:50:02 2020	(r535386)
@@ -0,0 +1,20 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	matrix
+PORTVERSION=	0.3.0
+CATEGORIES=	math rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Implementation of Matrix and Vector classes
+
+LICENSE=	BSD2CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+USES=		gem
+USE_RUBY=	yes
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/math/rubygem-matrix/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/rubygem-matrix/distinfo	Sat May 16 10:50:02 2020	(r535386)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1588336471
+SHA256 (rubygem/matrix-0.3.0.gem) = 3df4ddb8c5ef22bb4e883dbbbd860eec309788297df29a825734e8e52ad729a0
+SIZE (rubygem/matrix-0.3.0.gem) = 28160

Added: head/math/rubygem-matrix/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/rubygem-matrix/pkg-descr	Sat May 16 10:50:02 2020	(r535386)
@@ -0,0 +1,11 @@
+Matrix is an implementation of Matrix and Vector classes.
+
+The Matrix class represents a mathematical matrix. It provides methods for
+creating matrices, operating on them arithmetically and algebraically, and
+determining their mathematical properties (trace, rank, inverse, determinant,
+eigensystem, etc.).
+
+The Vector class represents a mathematical vector, which is useful in its own
+right, and also constitutes a row or column of a Matrix.
+
+WWW: https://github.com/ruby/matrix



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202005161050.04GAo2be008026>