svn commit: r494188 - in head/math: . py-quadprog

Stephen Montgomery-Smith stephen at FreeBSD.org
Thu Feb 28 21:31:22 UTC 2019


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 at 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 <bsd.port.mk>

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


More information about the svn-ports-all mailing list