Date: Sun, 18 Nov 2018 22:31:48 +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: r485286 - in head/math: . py-scs Message-ID: <201811182231.wAIMVm62077913@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Sun Nov 18 22:31:48 2018 New Revision: 485286 URL: https://svnweb.freebsd.org/changeset/ports/485286 Log: New port: math/py-scs: Splitting conic solver for Python Added: head/math/py-scs/ head/math/py-scs/Makefile (contents, props changed) head/math/py-scs/distinfo (contents, props changed) head/math/py-scs/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sun Nov 18 22:17:24 2018 (r485285) +++ head/math/Makefile Sun Nov 18 22:31:48 2018 (r485286) @@ -757,6 +757,7 @@ SUBDIR += py-rpy2 SUBDIR += py-scientific SUBDIR += py-scikit-umfpack + SUBDIR += py-scs SUBDIR += py-seaborn SUBDIR += py-secp256k1 SUBDIR += py-simhash Added: head/math/py-scs/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-scs/Makefile Sun Nov 18 22:31:48 2018 (r485286) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= scs +DISTVERSION= 2.0.2 +CATEGORIES= math python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Splitting conic solver for Python + +LICENSE= MIT + +BUILD_DEPENDS= ${PYNUMPY} +RUN_DEPENDS= ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}scipy>=0.13.2:science/py-scipy@${PY_FLAVOR} + +USES= python blaslapack:openblas fortran # fortran is for openblas +USE_PYTHON= distutils autoplist + +CONFIGURE_ENV= BLAS_LAPACK_LIBS="openblas" +MAKE_ENV= ${CONFIGURE_ENV} + +.include <bsd.port.mk> Added: head/math/py-scs/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-scs/distinfo Sun Nov 18 22:31:48 2018 (r485286) @@ -0,0 +1,3 @@ +TIMESTAMP = 1542579078 +SHA256 (scs-2.0.2.tar.gz) = c468a475c49327599d9e89fa1aff1ba6196cc967df5364d74db66de4fceab65a +SIZE (scs-2.0.2.tar.gz) = 133826 Added: head/math/py-scs/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-scs/pkg-descr Sun Nov 18 22:31:48 2018 (r485286) @@ -0,0 +1,5 @@ +Python binding for SCS, splitting conic solver. + +SCS can be used for solving large-scale convex cone problems. + +WWW: https://github.com/cvxgrp/scs
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811182231.wAIMVm62077913>