Date: Sat, 21 Dec 2019 23:16:45 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r520592 - in head/math: . rehearse Message-ID: <201912212316.xBLNGjFB015474@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Sat Dec 21 23:16:45 2019 New Revision: 520592 URL: https://svnweb.freebsd.org/changeset/ports/520592 Log: New port: math/rehearse: Algebraic modeling library in C++ for linear optimization solvers Added: head/math/rehearse/ head/math/rehearse/Makefile (contents, props changed) head/math/rehearse/distinfo (contents, props changed) head/math/rehearse/pkg-descr (contents, props changed) head/math/rehearse/pkg-plist (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sat Dec 21 23:03:02 2019 (r520591) +++ head/math/Makefile Sat Dec 21 23:16:45 2019 (r520592) @@ -813,6 +813,7 @@ SUBDIR += reduce SUBDIR += reduce-psl SUBDIR += reed-solomon + SUBDIR += rehearse SUBDIR += rexx-regmath SUBDIR += rkward-kde SUBDIR += rngstreams Added: head/math/rehearse/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/rehearse/Makefile Sat Dec 21 23:16:45 2019 (r520592) @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= rehearse +DISTVERSION= g20190305 +CATEGORIES= math +PKGNAMEPREFIX= coin-or- + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Algebraic modeling library in C++ for linear optimization solvers + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libClp.so:math/clp \ + libOsi.so:math/osi + +USES= gmake libtool pkgconfig +USE_GITHUB= yes +GH_ACCOUNT= coin-or +GH_PROJECT= Rehearse +GH_TAGNAME= 31d12f8 +GNU_CONFIGURE= yes +USE_LDCONFIG= yes + +post-stage: + @${RM} -r ${STAGEDIR}${LOCALBASE}/share/coin + +.include <bsd.port.mk> Added: head/math/rehearse/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/rehearse/distinfo Sat Dec 21 23:16:45 2019 (r520592) @@ -0,0 +1,3 @@ +TIMESTAMP = 1576969222 +SHA256 (coin-or-Rehearse-g20190305-31d12f8_GH0.tar.gz) = c8dcedb6304b42e864ece26052bdbdd4eb85143e975c720dc378915024c32bbc +SIZE (coin-or-Rehearse-g20190305-31d12f8_GH0.tar.gz) = 704657 Added: head/math/rehearse/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/rehearse/pkg-descr Sat Dec 21 23:16:45 2019 (r520592) @@ -0,0 +1,7 @@ +Rehearse is a C++ library designed to describe linear optimization problems +programmatically. + +You can describe linear objectives and constraints using native C++ algebraic +expressions, in a similar way you write a mathematical model on a paper. + +WWW: https://projects.coin-or.org/Rehearse Added: head/math/rehearse/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/rehearse/pkg-plist Sat Dec 21 23:16:45 2019 (r520592) @@ -0,0 +1,15 @@ +include/coin/CelBoolVar.h +include/coin/CelBoolVarArray.h +include/coin/CelCoefficients.fwd.h +include/coin/CelExpression.h +include/coin/CelIntVar.h +include/coin/CelModel.h +include/coin/CelNumVar.h +include/coin/CelNumVarArray.h +include/coin/CelVariable.h +include/coin/CelVariableArray.h +include/coin/RehearseConfig.h +lib/librehearse.so +lib/librehearse.so.0 +lib/librehearse.so.0.0.0 +libdata/pkgconfig/rehearse.pc
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201912212316.xBLNGjFB015474>