From owner-svn-ports-head@freebsd.org Tue Jul 10 01:37:19 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 7774E10298E3; Tue, 10 Jul 2018 01:37:19 +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 25A0573F92; Tue, 10 Jul 2018 01:37:19 +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 07A5A1D0DB; Tue, 10 Jul 2018 01:37:19 +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 w6A1bIC9099675; Tue, 10 Jul 2018 01:37:18 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w6A1bIKP099671; Tue, 10 Jul 2018 01:37:18 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201807100137.w6A1bIKP099671@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 10 Jul 2018 01:37:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r474315 - in head/devel: . py-qutip X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . py-qutip X-SVN-Commit-Revision: 474315 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.27 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: Tue, 10 Jul 2018 01:37:19 -0000 Author: yuri Date: Tue Jul 10 01:37:17 2018 New Revision: 474315 URL: https://svnweb.freebsd.org/changeset/ports/474315 Log: New port: devel/py-qutip: Quantum toolbox in python Added: head/devel/py-qutip/ head/devel/py-qutip/Makefile (contents, props changed) head/devel/py-qutip/distinfo (contents, props changed) head/devel/py-qutip/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Jul 10 00:42:08 2018 (r474314) +++ head/devel/Makefile Tue Jul 10 01:37:17 2018 (r474315) @@ -4960,6 +4960,7 @@ SUBDIR += py-qt5-qscintilla2 SUBDIR += py-qt5-test SUBDIR += py-qtconsole + SUBDIR += py-qutip SUBDIR += py-ramlfications SUBDIR += py-ratelimiter SUBDIR += py-rauth Added: head/devel/py-qutip/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-qutip/Makefile Tue Jul 10 01:37:17 2018 (r474315) @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= qutip +DISTVERSION= 4.2.0 +CATEGORIES= devel +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Quantum toolbox in python + +LICENSE= BSD2CLAUSE + +BUILD_DEPENDS= ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}scipy>=0.15:science/py-scipy@${PY_FLAVOR} +RUN_DEPENDS= ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}matplotlib>=1.0:math/py-matplotlib@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}scipy>=0.15:science/py-scipy@${PY_FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>0:devel/py-nose@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils cython autoplist + +do-test: # tests are broken: https://github.com/qutip/qutip/issues/891 + @${ECHO} "==> Running tests. Please note that tests require X11 display access." + @cd ${BUILD_WRKSRC} && ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} -c "import qutip.testing as qt; qt.run();" + +.include Added: head/devel/py-qutip/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-qutip/distinfo Tue Jul 10 01:37:17 2018 (r474315) @@ -0,0 +1,3 @@ +TIMESTAMP = 1531174696 +SHA256 (qutip-4.2.0.tar.gz) = 87d677c6450a17a4dd8cfa1c7ae5f1f7646c47b63dab5abd88980093a47611e5 +SIZE (qutip-4.2.0.tar.gz) = 2049296 Added: head/devel/py-qutip/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-qutip/pkg-descr Tue Jul 10 01:37:17 2018 (r474315) @@ -0,0 +1,12 @@ +QuTiP is open-source software for simulating the dynamics of closed and open +quantum systems. The QuTiP library depends on the excellent Numpy, Scipy, and +Cython numerical packages. In addition, graphical output is provided by +Matplotlib. QuTiP aims to provide user-friendly and efficient numerical +simulations of a wide variety of quantum mechanical problems, including those +with Hamiltonians and/or collapse operators with arbitrary time-dependence, +commonly found in a wide range of physics applications. QuTiP is freely +available for use and/or modification on all common platforms. Being free of +any licensing fees, QuTiP is ideal for exploring quantum mechanics in research +as well as in the classroom. + +WWW: http://qutip.org/