Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 18 Nov 2018 23:04:41 +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: r485288 - in head/math: . py-cvxpy
Message-ID:  <201811182304.wAIN4ffr093438@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Sun Nov 18 23:04:41 2018
New Revision: 485288
URL: https://svnweb.freebsd.org/changeset/ports/485288

Log:
  New port: math/py-cvxpy: Domain-specific language for modeling convex optimization problems

Added:
  head/math/py-cvxpy/
  head/math/py-cvxpy/Makefile   (contents, props changed)
  head/math/py-cvxpy/distinfo   (contents, props changed)
  head/math/py-cvxpy/pkg-descr   (contents, props changed)
Modified:
  head/math/Makefile

Modified: head/math/Makefile
==============================================================================
--- head/math/Makefile	Sun Nov 18 22:49:45 2018	(r485287)
+++ head/math/Makefile	Sun Nov 18 23:04:41 2018	(r485288)
@@ -692,6 +692,7 @@
     SUBDIR += py-colormath
     SUBDIR += py-cryptominisat
     SUBDIR += py-cvxopt
+    SUBDIR += py-cvxpy
     SUBDIR += py-cyipopt
     SUBDIR += py-ecos
     SUBDIR += py-fastcluster

Added: head/math/py-cvxpy/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-cvxpy/Makefile	Sun Nov 18 23:04:41 2018	(r485288)
@@ -0,0 +1,29 @@
+# $FreeBSD$
+
+PORTNAME=	cvxpy
+DISTVERSION=	1.0.10
+CATEGORIES=	math python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	Domain-specific language for modeling convex optimization problems
+
+LICENSE=	APACHE20
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=	${PYNUMPY}
+RUN_DEPENDS=	${PYNUMPY} \
+		${PYTHON_PKGNAMEPREFIX}ecos>=2:math/py-ecos@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}fastcache>0:devel/py-fastcache@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}multiprocess>0:devel/py-multiprocess@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}osqp>0:math/py-osqp@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}scipy>=0.19:science/py-scipy@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}scs>=1.1.3:math/py-scs@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}toolz>0:devel/py-toolz@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+
+.include <bsd.port.mk>

Added: head/math/py-cvxpy/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-cvxpy/distinfo	Sun Nov 18 23:04:41 2018	(r485288)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1542573041
+SHA256 (cvxpy-1.0.10.tar.gz) = bd362f638c661cd532451948892647580d8726d5b70b557cdca3ebb993a23282
+SIZE (cvxpy-1.0.10.tar.gz) = 900149

Added: head/math/py-cvxpy/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-cvxpy/pkg-descr	Sun Nov 18 23:04:41 2018	(r485288)
@@ -0,0 +1,5 @@
+CVXPY is a Python-embedded modeling language for convex optimization problems.
+It allows you to express your problem in a natural way that follows the math,
+rather than in the restrictive standard form required by solvers.
+
+WWW: https://www.cvxpy.org/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811182304.wAIN4ffr093438>