1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python27 1.0 |
---|
6 | PortGroup qt4 1.0 |
---|
7 | |
---|
8 | name py27-spyder |
---|
9 | version 2.0.12 |
---|
10 | categories python devel |
---|
11 | platforms darwin |
---|
12 | maintainers jameskyle openmaintainer |
---|
13 | homepage http://packages.python.org/spyder/ |
---|
14 | description development environment with advanced editing, \ |
---|
15 | interactive testing, debugging and introspection features. |
---|
16 | long_description ${description} It is especially recommended for \ |
---|
17 | scientific computing thanks to NumPy (linear algebra), \ |
---|
18 | SciPy (signal and image processing), matplotlib \ |
---|
19 | (interactive 2D/3D plotting) and MayaVi’s mlab \ |
---|
20 | (interactive 3D visualization) support. |
---|
21 | |
---|
22 | master_sites googlecode:spyderlib |
---|
23 | distname spyder-${version} |
---|
24 | use_zip yes |
---|
25 | |
---|
26 | depends_lib-append port:py27-pyqt4 \ |
---|
27 | port:py27-lint \ |
---|
28 | port:py27-numpy \ |
---|
29 | port:py27-scipy \ |
---|
30 | port:py27-matplotlib \ |
---|
31 | port:py27-sphinx |
---|
32 | |
---|
33 | checksums md5 035852cfc6109541d72003111cf31bb3 \ |
---|
34 | sha1 a592caf81f4c1f72d637a5269f5c60f8f43e57ee |
---|
35 | |
---|
36 | patchfiles patch-widgets-pylintgui.py.diff |
---|
37 | |
---|
38 | post-destroot { |
---|
39 | ln -s ${python.prefix}/bin/spyder ${destroot}${prefix}/bin/ |
---|
40 | } |
---|
41 | |
---|
42 | livecheck.type regex |
---|
43 | livecheck.url http://code.google.com/p/spyderlib/ |
---|
44 | livecheck.regex spyder-(0\.\[0-9\]+\.\[0-9\]+) |
---|