From owner-svn-ports-all@freebsd.org Sat Jun 9 17:15:39 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 C55B310113D2; Sat, 9 Jun 2018 17:15:38 +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 DD60B68ABD; Sat, 9 Jun 2018 16:20:44 +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 A7B5520256; Sat, 9 Jun 2018 16:20:44 +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 w59GKiwP071039; Sat, 9 Jun 2018 16:20:44 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w59GKhK4071035; Sat, 9 Jun 2018 16:20:43 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806091620.w59GKhK4071035@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 9 Jun 2018 16:20:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472067 - in head/math: . py-petsc4py X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . py-petsc4py X-SVN-Commit-Revision: 472067 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.26 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: Sat, 09 Jun 2018 17:15:39 -0000 Author: yuri Date: Sat Jun 9 16:20:43 2018 New Revision: 472067 URL: https://svnweb.freebsd.org/changeset/ports/472067 Log: New port: math/py-petsc4py: PETSc for Python Added: head/math/py-petsc4py/ head/math/py-petsc4py/Makefile (contents, props changed) head/math/py-petsc4py/distinfo (contents, props changed) head/math/py-petsc4py/pkg-descr (contents, props changed) head/math/py-petsc4py/pkg-plist (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sat Jun 9 16:14:58 2018 (r472066) +++ head/math/Makefile Sat Jun 9 16:20:43 2018 (r472067) @@ -692,6 +692,7 @@ SUBDIR += py-pandas SUBDIR += py-pandas-datareader SUBDIR += py-patsy + SUBDIR += py-petsc4py SUBDIR += py-piranha SUBDIR += py-plastex SUBDIR += py-probstat Added: head/math/py-petsc4py/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-petsc4py/Makefile Sat Jun 9 16:20:43 2018 (r472067) @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= petsc4py +DISTVERSION= 3.9.1 +CATEGORIES= math python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +PATCH_SITES= https://bitbucket.org/petsc/petsc4py/commits/ +PATCHFILES= ab877906425e/raw:-p1 + +MAINTAINER= yuri@FreeBSD.org +COMMENT= PETSc for Python + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.rst + +BUILD_DEPENDS= ${PYNUMPY} +LIB_DEPENDS= libmpich.so:net/mpich2 \ + libpetsc.so:science/PETSc +RUN_DEPENDS= ${PYNUMPY} + +USES= python +USE_PYTHON= distutils autoplist + +MAKE_ENV= PETSC_DIR=${LOCALBASE} + +.include Added: head/math/py-petsc4py/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-petsc4py/distinfo Sat Jun 9 16:20:43 2018 (r472067) @@ -0,0 +1,5 @@ +TIMESTAMP = 1528554205 +SHA256 (petsc4py-3.9.1.tar.gz) = 0ccee912216f100d9b08637e036df00e043a530303ff8afd7c3ac7c454681fb9 +SIZE (petsc4py-3.9.1.tar.gz) = 1651526 +SHA256 (ab877906425e/raw) = ef07a5622ce5a55dc555455aff5c59a6395bdef74b11aa576d58642db7c4ccfc +SIZE (ab877906425e/raw) = 2706 Added: head/math/py-petsc4py/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-petsc4py/pkg-descr Sat Jun 9 16:20:43 2018 (r472067) @@ -0,0 +1,4 @@ +Python bindings for PETSc, the Portable, Extensible Toolkit for Scientific +Computation. + +WWW: https://bitbucket.org/petsc/petsc4py Added: head/math/py-petsc4py/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-petsc4py/pkg-plist Sat Jun 9 16:20:43 2018 (r472067) @@ -0,0 +1 @@ +%%PYTHON_SITELIBDIR%%/petsc4py/lib/PETSc.so