From owner-svn-ports-all@freebsd.org Thu Sep 6 07:19:51 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 285A3FF1BE2; Thu, 6 Sep 2018 07:19:51 +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 D0E1F8A79D; Thu, 6 Sep 2018 07:19:50 +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 C714E1564; Thu, 6 Sep 2018 07:19:50 +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 w867JoIu089286; Thu, 6 Sep 2018 07:19:50 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w867Jnjn089283; Thu, 6 Sep 2018 07:19:49 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201809060719.w867Jnjn089283@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 6 Sep 2018 07:19:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r479090 - in head/math: . py-chaospy X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . py-chaospy X-SVN-Commit-Revision: 479090 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.27 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: Thu, 06 Sep 2018 07:19:51 -0000 Author: yuri Date: Thu Sep 6 07:19:49 2018 New Revision: 479090 URL: https://svnweb.freebsd.org/changeset/ports/479090 Log: New port: math/py-chaospy: Toolbox for performing uncertainty quantification Added: head/math/py-chaospy/ head/math/py-chaospy/Makefile (contents, props changed) head/math/py-chaospy/distinfo (contents, props changed) head/math/py-chaospy/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Thu Sep 6 06:56:07 2018 (r479089) +++ head/math/Makefile Thu Sep 6 07:19:49 2018 (r479090) @@ -669,6 +669,7 @@ SUBDIR += py-bitvector SUBDIR += py-bottleneck SUBDIR += py-cdecimal + SUBDIR += py-chaospy SUBDIR += py-colormath SUBDIR += py-cryptominisat SUBDIR += py-cvxopt Added: head/math/py-chaospy/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-chaospy/Makefile Thu Sep 6 07:19:49 2018 (r479090) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= chaospy +PORTVERSION= 2.3.3 +CATEGORIES= math python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Toolbox for performing uncertainty quantification + +LICENSE= MIT + +BUILD_DEPENDS= ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}networkx>0:math/py-networkx@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/math/py-chaospy/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-chaospy/distinfo Thu Sep 6 07:19:49 2018 (r479090) @@ -0,0 +1,3 @@ +TIMESTAMP = 1536217585 +SHA256 (chaospy-2.3.3.tar.gz) = c1fd674d4d8a6cd503727fd5e38ac81a89e5327ebbb5bfc5b32118395e2ac578 +SIZE (chaospy-2.3.3.tar.gz) = 120532 Added: head/math/py-chaospy/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-chaospy/pkg-descr Thu Sep 6 07:19:49 2018 (r479090) @@ -0,0 +1,10 @@ +Chaospy is a numerical tool for performing uncertainty quantification using +polynomial chaos expansions and advanced Monte Carlo methods implemented in +Python 2 and 3. + +A article in Elsevier Journal of Computational Science has been published +introducing the software: DOI:10.1016/j.jocs.2015.08.008. +If you are to use this software in work that is published, please cite this +paper. + +WWW: https://github.com/jonathf/chaospy