1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | name py-qutip |
---|
6 | version 2.0.0 |
---|
7 | |
---|
8 | PortGroup python 1.0 |
---|
9 | |
---|
10 | python.versions 27 32 |
---|
11 | python.default_version 27 |
---|
12 | |
---|
13 | categories python science |
---|
14 | platforms darwin |
---|
15 | maintainers pnation openmaintainer |
---|
16 | license GPL3 |
---|
17 | homepage http://code.google.com/p/qutip/ |
---|
18 | description QuTiP: Quantum Toolbox in Python |
---|
19 | long_description ${description}. \ |
---|
20 | QuTiP is open-source software for simulating the dynamics of \ |
---|
21 | open quantum systems. The QuTiP library depends on the \ |
---|
22 | excellent Numpy and Scipy numerical packages. In addition, \ |
---|
23 | graphical output is provided by Matplotlib. QuTiP aims \ |
---|
24 | to provide user-friendly and efficient numerical simulations \ |
---|
25 | of a wide variety of Hamiltonian's, including those with \ |
---|
26 | arbitrary time-dependence, commonly found in a wide range of \ |
---|
27 | physics applications. QuTiP is freely available for use and/or \ |
---|
28 | modification on all Unix based platforms. Being free of any \ |
---|
29 | licensing fees, QuTiP is ideal for exploring quantum mechanics \ |
---|
30 | and dynamics in the classroom. |
---|
31 | |
---|
32 | master_sites googlecode:qutip |
---|
33 | distname QuTiP-${version} |
---|
34 | |
---|
35 | checksums \ |
---|
36 | sha1 a5dbd03aad8183c757ef7774f0b042e244976518 |
---|
37 | |
---|
38 | if {${subport} != ${name}} { |
---|
39 | |
---|
40 | depends_lib-append \ |
---|
41 | port:py${python.version}-scipy \ |
---|
42 | port:py${python.version}-cython \ |
---|
43 | port:py${python.version}-pyside \ |
---|
44 | } |
---|
45 | |
---|
46 | post-destroot { |
---|
47 | notes "To finish installing QuTiP run the following commands: |
---|
48 | |
---|
49 | sudo port install py${python.version}-ipython +notebook+parallel+pyside |
---|
50 | |
---|
51 | sudo port install py${python.version}-matplotlib +latex |
---|
52 | |
---|
53 | sudo port install texlive-latex-extra |
---|
54 | " |
---|
55 | } |
---|
56 | |
---|
57 | livecheck.type regex |
---|
58 | livecheck.url http://code.google.com/p/qutip/ |
---|
59 | livecheck.regex QuTiP-(\[0-9\]+\.\[0-9\]+(\.\[0-9\]+)?) |
---|