From owner-svn-ports-all@freebsd.org Sat Dec 21 23:16:46 2019 Return-Path: Delivered-To: svn-ports-all@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 D71631DF019; Sat, 21 Dec 2019 23:16:46 +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) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47gM265PSMz3G3H; Sat, 21 Dec 2019 23:16:46 +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 B41BD1E898; Sat, 21 Dec 2019 23:16:46 +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 xBLNGkVk015478; Sat, 21 Dec 2019 23:16:46 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xBLNGjFB015474; Sat, 21 Dec 2019 23:16:45 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201912212316.xBLNGjFB015474@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 21 Dec 2019 23:16:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r520592 - in head/math: . rehearse X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . rehearse X-SVN-Commit-Revision: 520592 X-SVN-Commit-Repository: ports 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.29 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: Sat, 21 Dec 2019 23:16:46 -0000 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 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