From owner-svn-ports-all@freebsd.org Fri Jun 8 15:51:33 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E472C101E51A; Fri, 8 Jun 2018 15:51:32 +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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8B4C268527; Fri, 8 Jun 2018 15:51:32 +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 6E05A1114E; Fri, 8 Jun 2018 15:51:32 +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 w58FpWSS042796; Fri, 8 Jun 2018 15:51:32 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w58FpV8M042790; Fri, 8 Jun 2018 15:51:31 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806081551.w58FpV8M042790@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Fri, 8 Jun 2018 15:51:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472010 - in head/math: . ecos X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . ecos X-SVN-Commit-Revision: 472010 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.26 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: Fri, 08 Jun 2018 15:51:33 -0000 Author: yuri Date: Fri Jun 8 15:51:31 2018 New Revision: 472010 URL: https://svnweb.freebsd.org/changeset/ports/472010 Log: New port: math/ecos: Lightweight conic solver for second-order cone programming Added: head/math/ecos/ head/math/ecos/Makefile (contents, props changed) head/math/ecos/distinfo (contents, props changed) head/math/ecos/pkg-descr (contents, props changed) head/math/ecos/pkg-plist (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Fri Jun 8 15:49:42 2018 (r472009) +++ head/math/Makefile Fri Jun 8 15:51:31 2018 (r472010) @@ -172,6 +172,7 @@ SUBDIR += drgeo SUBDIR += dynare SUBDIR += e + SUBDIR += ecos SUBDIR += edenmath SUBDIR += eigen2 SUBDIR += eigen3 Added: head/math/ecos/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/ecos/Makefile Fri Jun 8 15:51:31 2018 (r472010) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= ecos +DISTVERSIONPREFIX= v +DISTVERSION= 2.0.6 +CATEGORIES= math + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Lightweight conic solver for second-order cone programming + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= gmake +USE_GITHUB= yes +GH_ACCOUNT= embotech +ALL_TARGET= shared +USE_LDCONFIG= yes + +do-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/include/ecos + ${INSTALL_DATA} ${WRKSRC}/include/*.h ${STAGEDIR}${PREFIX}/include/ecos + ${INSTALL_LIB} ${WRKSRC}/libecos.so ${STAGEDIR}${PREFIX}/lib + +.include Added: head/math/ecos/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/ecos/distinfo Fri Jun 8 15:51:31 2018 (r472010) @@ -0,0 +1,3 @@ +TIMESTAMP = 1528436129 +SHA256 (embotech-ecos-v2.0.6_GH0.tar.gz) = ffc4b44e813a5c68abd464b638d216f09385d9b6e40cf487ac384289e6a27988 +SIZE (embotech-ecos-v2.0.6_GH0.tar.gz) = 1266378 Added: head/math/ecos/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/ecos/pkg-descr Fri Jun 8 15:51:31 2018 (r472010) @@ -0,0 +1,10 @@ +ECOS is a numerical software for solving convex second-order cone programs +(SOCPs) of type: + +min c'*x +s.t. A*x = b + G*x <=_K h + +where the last inequality is generalized, i.e. h - G*x belongs to the cone K. + +WWW: https://github.com/embotech/ecos Added: head/math/ecos/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/ecos/pkg-plist Fri Jun 8 15:51:31 2018 (r472010) @@ -0,0 +1,14 @@ +include/ecos/cone.h +include/ecos/ctrlc.h +include/ecos/data.h +include/ecos/ecos.h +include/ecos/ecos_bb.h +include/ecos/equil.h +include/ecos/expcone.h +include/ecos/glblopts.h +include/ecos/kkt.h +include/ecos/spla.h +include/ecos/splamm.h +include/ecos/timer.h +include/ecos/wright_omega.h +lib/libecos.so