From owner-svn-ports-all@freebsd.org Sun Apr 1 05:32:23 2018 Return-Path: Delivered-To: svn-ports-all@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 16D71F94D30; Sun, 1 Apr 2018 05:32:23 +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 C148F6B88F; Sun, 1 Apr 2018 05:32:22 +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 A3DAF22983; Sun, 1 Apr 2018 05:32:22 +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 w315WMvp087537; Sun, 1 Apr 2018 05:32:22 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w315WMEg087532; Sun, 1 Apr 2018 05:32:22 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201804010532.w315WMEg087532@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 1 Apr 2018 05:32:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466116 - in head/math: . py-cyipopt X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . py-cyipopt X-SVN-Commit-Revision: 466116 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Apr 2018 05:32:23 -0000 Author: yuri Date: Sun Apr 1 05:32:21 2018 New Revision: 466116 URL: https://svnweb.freebsd.org/changeset/ports/466116 Log: New port: math/py-cyipopt: Cython interface for the interior point optimizer IPOPT Added: head/math/py-cyipopt/ head/math/py-cyipopt/Makefile (contents, props changed) head/math/py-cyipopt/distinfo (contents, props changed) head/math/py-cyipopt/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sun Apr 1 04:58:18 2018 (r466115) +++ head/math/Makefile Sun Apr 1 05:32:21 2018 (r466116) @@ -637,6 +637,7 @@ SUBDIR += py-colormath SUBDIR += py-cryptominisat SUBDIR += py-cvxopt + SUBDIR += py-cyipopt SUBDIR += py-fastcluster SUBDIR += py-ffc SUBDIR += py-fiat Added: head/math/py-cyipopt/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-cyipopt/Makefile Sun Apr 1 05:32:21 2018 (r466116) @@ -0,0 +1,31 @@ +# $FreeBSD$ + +PORTNAME= cyipopt +DISTVERSIONPREFIX= v +DISTVERSION= 0.1.7 +CATEGORIES= math python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Cython interface for the interior point optimizer IPOPT + +LICENSE= EPL + +BUILD_DEPENDS= ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${FLAVOR} +LIB_DEPENDS= libblas.so:math/blas \ + libcoinmetis.so:math/ipopt \ + liblapack.so:math/lapack +RUN_DEPENDS= ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${FLAVOR} + +USES= fortran python pkgconfig # fortran because ipopt's pkg-config returns gcc libs +USE_GITHUB= yes +GH_ACCOUNT= matthias-k +USE_PYTHON= distutils cython autoplist + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/${PORTNAME}.so + +.include Added: head/math/py-cyipopt/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-cyipopt/distinfo Sun Apr 1 05:32:21 2018 (r466116) @@ -0,0 +1,3 @@ +TIMESTAMP = 1522559375 +SHA256 (matthias-k-cyipopt-v0.1.7_GH0.tar.gz) = e62d4265743078c60f0af1426218310a9fbc1b6d0d0e60879e172d569dd3343d +SIZE (matthias-k-cyipopt-v0.1.7_GH0.tar.gz) = 40782 Added: head/math/py-cyipopt/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-cyipopt/pkg-descr Sun Apr 1 05:32:21 2018 (r466116) @@ -0,0 +1,7 @@ +Ipopt (Interior Point OPTimizer, pronounced eye-pea-Opt) is a software package +for large-scale nonlinear optimization. + +cyipopt is a python wrapper around Ipopt. It enables using Ipopt from the +comfort of the great Python scripting language. + +WWW: https://github.com/matthias-k/cyipopt