Date: Sat, 31 Mar 2018 08:23:34 +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: r466033 - in head/math: . py-Pyomo Message-ID: <201803310823.w2V8NYZN014567@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Sat Mar 31 08:23:34 2018 New Revision: 466033 URL: https://svnweb.freebsd.org/changeset/ports/466033 Log: New port: math/py-Pyomo: Python Optimization Modeling Objects Added: head/math/py-Pyomo/ head/math/py-Pyomo/Makefile (contents, props changed) head/math/py-Pyomo/distinfo (contents, props changed) head/math/py-Pyomo/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sat Mar 31 08:21:30 2018 (r466032) +++ head/math/Makefile Sat Mar 31 08:23:34 2018 (r466033) @@ -625,6 +625,7 @@ SUBDIR += pure-rational SUBDIR += py-Diofant SUBDIR += py-PyWavelets + SUBDIR += py-Pyomo SUBDIR += py-altgraph SUBDIR += py-apgl SUBDIR += py-basemap Added: head/math/py-Pyomo/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-Pyomo/Makefile Sat Mar 31 08:23:34 2018 (r466033) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= Pyomo +DISTVERSION= 5.4.3 +CATEGORIES= math python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Python Optimization Modeling Objects + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}appdirs>0:devel/py-appdirs@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}ply>0:devel/py-ply@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}PyUtilib>=5.6.2:devel/py-PyUtilib@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>=1.4:devel/py-six@${FLAVOR} + +USES= python +USE_PYTHON= distutils concurrent autoplist +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/math/py-Pyomo/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-Pyomo/distinfo Sat Mar 31 08:23:34 2018 (r466033) @@ -0,0 +1,3 @@ +TIMESTAMP = 1522480103 +SHA256 (Pyomo-5.4.3.tar.gz) = 722887e1b4d8963eb648aaa61a70f5060cc3db63f48f5d2ffdc822ed90bb0f22 +SIZE (Pyomo-5.4.3.tar.gz) = 1377037 Added: head/math/py-Pyomo/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-Pyomo/pkg-descr Sat Mar 31 08:23:34 2018 (r466033) @@ -0,0 +1,24 @@ +Pyomo is a Python-based open-source software package that supports a diverse +set of optimization capabilities for formulating and analyzing optimization +models. + +Modeling optimization applications is a core capability of Pyomo. Pyomo can be +used to define symbolic problems, create concrete problem instances, and solve +these instances with standard solvers. Thus, Pyomo provides a capability that is +commonly associated with algebraic modeling languages such as AMPL, AIMMS, and +GAMS, but Pyomo's modeling objects are embedded within a full-featured +high-level programming language with a rich set of supporting libraries. Pyomo +supports a wide range of problem types, including: +* Linear programming +* Quadratic programming +* Nonlinear programming +* Mixed-integer linear programming +* Mixed-integer quadratic programming +* Mixed-integer nonlinear programming +* Mixed-integer stochastic programming +* Generalized disjunctive programming +* Differential algebraic equations +* Bilevel programming +* Mathematical programming with equilibrium constraints + +WWW: https://github.com/Pyomo/pyomo
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803310823.w2V8NYZN014567>