From owner-svn-ports-head@freebsd.org Sun Aug 25 01:24:44 2019 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 665FCD1779; Sun, 25 Aug 2019 01:24:44 +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 46GHVh22mZz4P2l; Sun, 25 Aug 2019 01:24:44 +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 28E66DF67; Sun, 25 Aug 2019 01:24:44 +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 x7P1Ohbm082287; Sun, 25 Aug 2019 01:24:43 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7P1OhHh082283; Sun, 25 Aug 2019 01:24:43 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201908250124.x7P1OhHh082283@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 25 Aug 2019 01:24:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r509769 - in head/math: . symphony X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . symphony X-SVN-Commit-Revision: 509769 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.29 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: Sun, 25 Aug 2019 01:24:44 -0000 Author: yuri Date: Sun Aug 25 01:24:42 2019 New Revision: 509769 URL: https://svnweb.freebsd.org/changeset/ports/509769 Log: New port: math/symphony: Solver and development framework for mixed-integer linear programs Added: head/math/symphony/ head/math/symphony/Makefile (contents, props changed) head/math/symphony/distinfo (contents, props changed) head/math/symphony/pkg-descr (contents, props changed) head/math/symphony/pkg-plist (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sun Aug 25 01:15:04 2019 (r509768) +++ head/math/Makefile Sun Aug 25 01:24:42 2019 (r509769) @@ -855,6 +855,7 @@ SUBDIR += superlu SUBDIR += superlu_mt SUBDIR += symmetrica + SUBDIR += symphony SUBDIR += tablix SUBDIR += taucs SUBDIR += tblis Added: head/math/symphony/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/symphony/Makefile Sun Aug 25 01:24:42 2019 (r509769) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= symphony +DISTVERSIONPREFIX= releases/ +DISTVERSION= 5.6.17 +CATEGORIES= math +PKGNAMEPREFIX= coin-or- + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Solver and development framework for mixed-integer linear programs + +LICENSE= EPL +LICENSE_FILE= ${WRKSRC}/SYMPHONY/LICENSE + +LIB_DEPENDS= libCbc.so:math/coinmp + +USES= gmake libtool pkgconfig +GNU_CONFIGURE= yes +USE_GITHUB= yes +GH_ACCOUNT= coin-or +GH_PROJECT= SYMPHONY +USE_LDCONFIG= yes + +INSTALL_TARGET= install-strip + +.include Added: head/math/symphony/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/symphony/distinfo Sun Aug 25 01:24:42 2019 (r509769) @@ -0,0 +1,3 @@ +TIMESTAMP = 1566695939 +SHA256 (coin-or-SYMPHONY-releases-5.6.17_GH0.tar.gz) = f6c2b9c9e60ebff4a665e243e765649334c5d0680f536d3d9c0c372025ab96dc +SIZE (coin-or-SYMPHONY-releases-5.6.17_GH0.tar.gz) = 1848015 Added: head/math/symphony/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/symphony/pkg-descr Sun Aug 25 01:24:42 2019 (r509769) @@ -0,0 +1,9 @@ +SYMPHONY is an open-source solver for mixed-integer linear programs (MILPs) +written in C. It can be used in four different main modes: +* As a callable library through either the native C interface or through the + Osi. +* As an interactive solver using a command-line interface. +* As a framework to build customized solvers for specific problem classes. +* Through a number of different modeling languages: AMPL, GMPL, GAMS, PuLP. + +WWW: https://projects.coin-or.org/SYMPHONY Added: head/math/symphony/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/symphony/pkg-plist Sun Aug 25 01:24:42 2019 (r509769) @@ -0,0 +1,19 @@ +bin/symphony +include/coin/OsiSymSolverInterface.hpp +include/coin/OsiSymSolverParameters.hpp +include/coin/SymConfig.h +include/coin/SymWarmStart.hpp +include/coin/symphony.h +lib/libOsiSym.so +lib/libOsiSym.so.3 +lib/libOsiSym.so.3.6.17 +lib/libSym.so +lib/libSym.so.3 +lib/libSym.so.3.6.17 +libdata/pkgconfig/osi-sym.pc +libdata/pkgconfig/symphony-app.pc +libdata/pkgconfig/symphony.pc +share/coin/doc/SYMPHONY/AUTHORS +share/coin/doc/SYMPHONY/LICENSE +share/coin/doc/SYMPHONY/README +share/coin/doc/SYMPHONY/sym_addlibs.txt