Date: Fri, 8 Jun 2018 15:51:31 +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: r472010 - in head/math: . ecos Message-ID: <201806081551.w58FpV8M042790@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806081551.w58FpV8M042790>