From owner-svn-ports-head@freebsd.org Sat Mar 6 02:08:26 2021 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 2ADA3571003; Sat, 6 Mar 2021 02:08:26 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Dsp160nr1z4bZh; Sat, 6 Mar 2021 02:08:26 +0000 (UTC) (envelope-from yuri@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0E5601B33D; Sat, 6 Mar 2021 02:08:26 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 12628PKA021413; Sat, 6 Mar 2021 02:08:25 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 12628OwS021408; Sat, 6 Mar 2021 02:08:24 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202103060208.12628OwS021408@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 6 Mar 2021 02:08:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r567456 - in head/math: . muparserx X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . muparserx X-SVN-Commit-Revision: 567456 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Mar 2021 02:08:26 -0000 Author: yuri Date: Sat Mar 6 02:08:24 2021 New Revision: 567456 URL: https://svnweb.freebsd.org/changeset/ports/567456 Log: New port: math/muparserx: C++ math parser library with array and string support Added: head/math/muparserx/ head/math/muparserx/Makefile (contents, props changed) head/math/muparserx/distinfo (contents, props changed) head/math/muparserx/pkg-descr (contents, props changed) head/math/muparserx/pkg-plist (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sat Mar 6 02:05:08 2021 (r567455) +++ head/math/Makefile Sat Mar 6 02:08:24 2021 (r567456) @@ -438,6 +438,7 @@ SUBDIR += mumps SUBDIR += mumps4 SUBDIR += muparser + SUBDIR += muparserx SUBDIR += nanoflann SUBDIR += nauty SUBDIR += ndiff Added: head/math/muparserx/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/muparserx/Makefile Sat Mar 6 02:08:24 2021 (r567456) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= muparserx +DISTVERSIONPREFIX= v +DISTVERSION= 4.0.8-30 +DISTVERSIONSUFFIX= -g0a7c3b2 +CATEGORIES= math devel + +MAINTAINER= yuri@FreeBSD.org +COMMENT= C++ math parser library with array and string support + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= cmake compiler:c++11-lang +USE_LDCONFIG= yes + +USE_GITHUB= yes +GH_ACCOUNT= beltoforion + +CMAKE_ON= BUILD_SHARED_LIBS +CMAKE_OFF= BUILD_EXAMPLES + +.include Added: head/math/muparserx/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/muparserx/distinfo Sat Mar 6 02:08:24 2021 (r567456) @@ -0,0 +1,3 @@ +TIMESTAMP = 1614995736 +SHA256 (beltoforion-muparserx-v4.0.8-30-g0a7c3b2_GH0.tar.gz) = 1c2cc4a16dbef2c8093c72f00aab876eb8bf60d531d8d08cf40b5c9d960b1740 +SIZE (beltoforion-muparserx-v4.0.8-30-g0a7c3b2_GH0.tar.gz) = 1867045 Added: head/math/muparserx/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/muparserx/pkg-descr Sat Mar 6 02:08:24 2021 (r567456) @@ -0,0 +1,4 @@ +muParserx is a C++ library initially based on muParser enhanced with support for +arrays, matrices and strings, and with a completely new parsing engine. + +WWW: https://beltoforion.de/en/muparserx/ Added: head/math/muparserx/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/muparserx/pkg-plist Sat Mar 6 02:08:24 2021 (r567456) @@ -0,0 +1,53 @@ +include/muparserx/mpCompat.h +include/muparserx/mpDefines.h +include/muparserx/mpError.h +include/muparserx/mpFuncCmplx.h +include/muparserx/mpFuncCommon.h +include/muparserx/mpFuncMatrix.h +include/muparserx/mpFuncNonCmplx.h +include/muparserx/mpFuncStr.h +include/muparserx/mpFwdDecl.h +include/muparserx/mpICallback.h +include/muparserx/mpIOprt.h +include/muparserx/mpIPackage.h +include/muparserx/mpIPrecedence.h +include/muparserx/mpIToken.h +include/muparserx/mpIValReader.h +include/muparserx/mpIValue.h +include/muparserx/mpIfThenElse.h +include/muparserx/mpMatrix.h +include/muparserx/mpMatrixError.h +include/muparserx/mpOprtBinAssign.h +include/muparserx/mpOprtBinCommon.h +include/muparserx/mpOprtCmplx.h +include/muparserx/mpOprtIndex.h +include/muparserx/mpOprtMatrix.h +include/muparserx/mpOprtNonCmplx.h +include/muparserx/mpOprtPostfixCommon.h +include/muparserx/mpPackageCmplx.h +include/muparserx/mpPackageCommon.h +include/muparserx/mpPackageMatrix.h +include/muparserx/mpPackageNonCmplx.h +include/muparserx/mpPackageStr.h +include/muparserx/mpPackageUnit.h +include/muparserx/mpParser.h +include/muparserx/mpParserBase.h +include/muparserx/mpParserMessageProvider.h +include/muparserx/mpRPN.h +include/muparserx/mpScriptTokens.h +include/muparserx/mpStack.h +include/muparserx/mpTest.h +include/muparserx/mpTokenReader.h +include/muparserx/mpTypes.h +include/muparserx/mpValReader.h +include/muparserx/mpValue.h +include/muparserx/mpValueCache.h +include/muparserx/mpVariable.h +include/muparserx/suSortPred.h +include/muparserx/suStringTokens.h +include/muparserx/utGeneric.h +lib/libmuparserx.so +lib/libmuparserx.so.4.0.9 +libdata/pkgconfig/muparserx.pc +share/cmake/muparserx/muparserxConfig.cmake +share/cmake/muparserx/muparserxConfigVersion.cmake