From owner-svn-ports-head@freebsd.org Thu Feb 28 21:31:22 2019 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 28D8C1519AFD; Thu, 28 Feb 2019 21:31:22 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BB7D788FDB; Thu, 28 Feb 2019 21:31:21 +0000 (UTC) (envelope-from stephen@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 ACDA2AE26; Thu, 28 Feb 2019 21:31:21 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x1SLVLFM006344; Thu, 28 Feb 2019 21:31:21 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x1SLVKJs006340; Thu, 28 Feb 2019 21:31:20 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201902282131.x1SLVKJs006340@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Thu, 28 Feb 2019 21:31:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r494188 - in head/math: . py-quadprog X-SVN-Group: ports-head X-SVN-Commit-Author: stephen X-SVN-Commit-Paths: in head/math: . py-quadprog X-SVN-Commit-Revision: 494188 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: BB7D788FDB X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] 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: Thu, 28 Feb 2019 21:31:22 -0000 Author: stephen Date: Thu Feb 28 21:31:20 2019 New Revision: 494188 URL: https://svnweb.freebsd.org/changeset/ports/494188 Log: - New port math/quadprog Quadratic programming package for python. Added: head/math/py-quadprog/ head/math/py-quadprog/Makefile (contents, props changed) head/math/py-quadprog/distinfo (contents, props changed) head/math/py-quadprog/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Thu Feb 28 20:43:23 2019 (r494187) +++ head/math/Makefile Thu Feb 28 21:31:20 2019 (r494188) @@ -770,6 +770,7 @@ SUBDIR += py-pysym SUBDIR += py-python-louvain SUBDIR += py-pyvtk + SUBDIR += py-quadprog SUBDIR += py-random2 SUBDIR += py-rapi SUBDIR += py-roman Added: head/math/py-quadprog/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-quadprog/Makefile Thu Feb 28 21:31:20 2019 (r494188) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= quadprog +DISTVERSION= 0.1.6 +CATEGORIES= math python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= stephen@FreeBSD.org +COMMENT= Quadratic programming package + +LICENSE= GPLv2+ + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>=1.2,1:math/py-numpy@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist cython + +.include Added: head/math/py-quadprog/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-quadprog/distinfo Thu Feb 28 21:31:20 2019 (r494188) @@ -0,0 +1,3 @@ +TIMESTAMP = 1551374538 +SHA256 (quadprog-0.1.6.tar.gz) = 5e161635fb7f2730edef0070448bdbe93784552202c12e15e0fbf640f0cef0f4 +SIZE (quadprog-0.1.6.tar.gz) = 107537 Added: head/math/py-quadprog/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-quadprog/pkg-descr Thu Feb 28 21:31:20 2019 (r494188) @@ -0,0 +1,6 @@ +Solve a strictly convex quadratic program: + +Minimize 1/2 x^T G x - a^T x +Subject to C.T x >= b + +WWW: https://pypi.org/project/quadprog