From owner-svn-ports-head@freebsd.org Sun Apr 15 08:12:22 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 62554FA27E0; Sun, 15 Apr 2018 08:12:22 +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 0ED6B8697F; Sun, 15 Apr 2018 08:12: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 09B1E4681; Sun, 15 Apr 2018 08:12: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 w3F8CLbM028184; Sun, 15 Apr 2018 08:12:21 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3F8CLq1028180; Sun, 15 Apr 2018 08:12:21 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201804150812.w3F8CLq1028180@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 15 Apr 2018 08:12:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r467372 - in head/math: . py-PySCIPOpt X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . py-PySCIPOpt X-SVN-Commit-Revision: 467372 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 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, 15 Apr 2018 08:12:22 -0000 Author: yuri Date: Sun Apr 15 08:12:21 2018 New Revision: 467372 URL: https://svnweb.freebsd.org/changeset/ports/467372 Log: New port: math/py-PySCIPOpt: Python interface and modeling environment for SCIP Added: head/math/py-PySCIPOpt/ head/math/py-PySCIPOpt/Makefile (contents, props changed) head/math/py-PySCIPOpt/distinfo (contents, props changed) head/math/py-PySCIPOpt/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sun Apr 15 07:54:28 2018 (r467371) +++ head/math/Makefile Sun Apr 15 08:12:21 2018 (r467372) @@ -638,6 +638,7 @@ SUBDIR += pure-mpfr SUBDIR += pure-rational SUBDIR += py-Diofant + SUBDIR += py-PySCIPOpt SUBDIR += py-PyWavelets SUBDIR += py-Pyomo SUBDIR += py-altgraph Added: head/math/py-PySCIPOpt/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-PySCIPOpt/Makefile Sun Apr 15 08:12:21 2018 (r467372) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= PySCIPOpt +DISTVERSION= 1.4.3 +CATEGORIES= math python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Python interface and modeling environment for SCIP + +LICENSE= MIT + +LIB_DEPENDS= libscip.so:math/SCIP + +USES= localbase python +USE_PYTHON= distutils cython autoplist + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/pyscipopt/scip.so + +.include Added: head/math/py-PySCIPOpt/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-PySCIPOpt/distinfo Sun Apr 15 08:12:21 2018 (r467372) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523778755 +SHA256 (PySCIPOpt-1.4.3.tar.gz) = 2f5741acf41e50787fc28c73eee5840d553f6c9a7e800c6ad61e6cce3b0f95fa +SIZE (PySCIPOpt-1.4.3.tar.gz) = 469159 Added: head/math/py-PySCIPOpt/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-PySCIPOpt/pkg-descr Sun Apr 15 08:12:21 2018 (r467372) @@ -0,0 +1,3 @@ +This project provides an interface from Python to the SCIP Optimization Suite. + +WWW: https://github.com/SCIP-Interfaces/PySCIPOpt