From owner-svn-ports-all@freebsd.org Tue Nov 1 20:26:51 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 A4641C2A58B; Tue, 1 Nov 2016 20:26:51 +0000 (UTC) (envelope-from jrm@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 46E9514A2; Tue, 1 Nov 2016 20:26:51 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uA1KQowV022326; Tue, 1 Nov 2016 20:26:50 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA1KQo5A022322; Tue, 1 Nov 2016 20:26:50 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <201611012026.uA1KQo5A022322@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Tue, 1 Nov 2016 20:26:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r425086 - in head/math: . amath 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, 01 Nov 2016 20:26:51 -0000 Author: jrm Date: Tue Nov 1 20:26:49 2016 New Revision: 425086 URL: https://svnweb.freebsd.org/changeset/ports/425086 Log: New port, math/amath: simple command line calculator https://gitlab.com/rnger/amath/ Features a case sensitive command line interface, internal IEEE 754 calculations with 15 significant digits, calculations with real and complex numbers, variables and user defined functions, logarithmic and exponential functions, trigonometric and hyperbolic function and selected mathematical constants and rounding functions. PR: 209905 Submitted by: cs@innolan.dk (maintainer) Reviewed by: mat Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D8386 Added: head/math/amath/ head/math/amath/Makefile (contents, props changed) head/math/amath/distinfo (contents, props changed) head/math/amath/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Tue Nov 1 20:25:32 2016 (r425085) +++ head/math/Makefile Tue Nov 1 20:26:49 2016 (r425086) @@ -79,6 +79,7 @@ SUBDIR += algae SUBDIR += algotutor SUBDIR += alt-ergo + SUBDIR += amath SUBDIR += analitza SUBDIR += ann SUBDIR += apc Added: head/math/amath/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/amath/Makefile Tue Nov 1 20:26:49 2016 (r425086) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= amath +PORTVERSION= 1.6.0 +CATEGORIES= math +MASTER_SITES= http://suyai.innolan.net/ + +MAINTAINER= cs@innolan.dk +COMMENT= Simple command line calculator + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +HAS_CONFIGURE= yes +MAKE_ARGS= CC=${CC} +PLIST_FILES= bin/${PORTNAME} +USE_GCC= yes + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + +do-test: + ${WRKSRC}/${PORTNAME} test + +.include Added: head/math/amath/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/amath/distinfo Tue Nov 1 20:26:49 2016 (r425086) @@ -0,0 +1,3 @@ +TIMESTAMP = 1468439952 +SHA256 (amath-1.6.0.tar.gz) = 82caf96dd59a72bf165892c9b8ec429c8f1bf6cecbaa4e9bbfc33b31537f3dbb +SIZE (amath-1.6.0.tar.gz) = 1073583 Added: head/math/amath/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/amath/pkg-descr Tue Nov 1 20:26:49 2016 (r425086) @@ -0,0 +1,7 @@ +Features a case sensitive command line interface, internal IEEE 754 +calculations with 15 significant digits, calculations with real and +complex numbers, variables and user defined functions, logarithmic +and exponential functions, trigonometric and hyperbolic function +and selected mathematical constants and rounding functions. + +WWW: https://gitlab.com/rnger/amath/