Date: Fri, 8 May 2015 13:41:13 +0000 (UTC) From: Michael Moll <mmoll@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r385782 - in head/math: . rubygem-expression_parser Message-ID: <201505081341.t48DfD37075431@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mmoll Date: Fri May 8 13:41:12 2015 New Revision: 385782 URL: https://svnweb.freebsd.org/changeset/ports/385782 Log: new port: math/rubygem-expression_parser A mathematical expression parser for Ruby WWW: http://lukaszwrobel.pl/blog/math-parser-part-1-introduction PR: 199923 Differential Revision: https://reviews.freebsd.org/D2483 Submitted by: Torsten Zuehlsdorff <ports@toco-domains.de> Approved by: mat (mentor) Added: head/math/rubygem-expression_parser/ head/math/rubygem-expression_parser/Makefile (contents, props changed) head/math/rubygem-expression_parser/distinfo (contents, props changed) head/math/rubygem-expression_parser/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Fri May 8 13:40:03 2015 (r385781) +++ head/math/Makefile Fri May 8 13:41:12 2015 (r385782) @@ -605,6 +605,7 @@ SUBDIR += rpy SUBDIR += rpy2 SUBDIR += ruby-algebra + SUBDIR += rubygem-expression_parser SUBDIR += rubygem-fftw3 SUBDIR += rubygem-narray SUBDIR += rubygem-narray_miss Added: head/math/rubygem-expression_parser/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/rubygem-expression_parser/Makefile Fri May 8 13:41:12 2015 (r385782) @@ -0,0 +1,15 @@ +# $FreeBSD$ + +PORTNAME= expression_parser +PORTVERSION= 0.9.0 +CATEGORIES= math rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Mathematical expression parser for Ruby + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include <bsd.port.mk> Added: head/math/rubygem-expression_parser/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/rubygem-expression_parser/distinfo Fri May 8 13:41:12 2015 (r385782) @@ -0,0 +1,2 @@ +SHA256 (rubygem/expression_parser-0.9.0.gem) = 2b56db3cffc48c3337f4f29f5bc2374c86e7ba29acb40269c74bb55af9f868a4 +SIZE (rubygem/expression_parser-0.9.0.gem) = 6144 Added: head/math/rubygem-expression_parser/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/rubygem-expression_parser/pkg-descr Fri May 8 13:41:12 2015 (r385782) @@ -0,0 +1,4 @@ +Implementation of mathematical expression parsing in Ruby including +support for reverse polish notation (RPN). + +WWW: http://lukaszwrobel.pl/blog/math-parser-part-1-introduction
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505081341.t48DfD37075431>