From owner-svn-ports-head@freebsd.org Sun Nov 18 22:31:49 2018 Return-Path: Delivered-To: svn-ports-head@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 88E8F1126AFE; Sun, 18 Nov 2018 22:31:49 +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 2CF1D74645; Sun, 18 Nov 2018 22:31:49 +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 0F6FA19749; Sun, 18 Nov 2018 22:31:49 +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 wAIMVma4077916; Sun, 18 Nov 2018 22:31:48 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wAIMVm62077913; Sun, 18 Nov 2018 22:31:48 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201811182231.wAIMVm62077913@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 18 Nov 2018 22:31:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r485286 - in head/math: . py-scs X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . py-scs X-SVN-Commit-Revision: 485286 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 2CF1D74645 X-Spamd-Result: default: False [0.32 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_SPAM_SHORT(0.18)[0.180,0]; NEURAL_SPAM_MEDIUM(0.14)[0.139,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-Rspamd-Server: mx1.freebsd.org 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, 18 Nov 2018 22:31:49 -0000 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 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