1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-01 05:45:45 +00:00

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)
This commit is contained in:
Michael Moll 2015-05-08 13:41:12 +00:00
parent 1c344de64b
commit a41eb3ca7d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=385782
4 changed files with 22 additions and 0 deletions

View File

@ -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

View File

@ -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>

View File

@ -0,0 +1,2 @@
SHA256 (rubygem/expression_parser-0.9.0.gem) = 2b56db3cffc48c3337f4f29f5bc2374c86e7ba29acb40269c74bb55af9f868a4
SIZE (rubygem/expression_parser-0.9.0.gem) = 6144

View File

@ -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