Commits
Renee Otten authored 343040b3214
1 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 2 | |
3 3 | PortSystem 1.0 |
4 4 | PortGroup python 1.0 |
5 5 | |
6 6 | name py-pudb |
7 - | version 2018.1 |
7 + | version 2019.1 |
8 8 | revision 0 |
9 + | |
9 10 | categories-append devel |
10 11 | platforms darwin |
11 12 | license MIT |
12 13 | maintainers nomaintainer |
13 14 | |
14 15 | description A full-screen, console-based Python debugger |
15 16 | long_description PuDB is a full-screen, console-based visual debugger for \ |
16 17 | Python. Its goal is to provide all the niceties of \ |
17 18 | modern GUI-based debuggers in a more lightweight and \ |
18 19 | keyboard-friendly package. PuDB allows you to debug code \ |
19 20 | right where you write and test it--in a terminal. If \ |
20 21 | you've worked with the excellent (but nowadays ancient) \ |
21 22 | DOS-based Turbo Pascal or C tools, PuDB's UI might look \ |
22 23 | familiar. |
23 24 | |
24 25 | homepage https://github.com/inducer/pudb |
25 26 | master_sites pypi:[string index ${python.rootname} 0]/${python.rootname} |
26 27 | distname ${python.rootname}-${version} |
27 28 | |
28 - | checksums rmd160 73409926fe8e2d2f804d1975d9169ae538a1df58 \ |
29 - | sha256 8d8b974641b7a7a2a721af01c9dce5eac8e05a2ceebc2680725ba8eef1ca876e \ |
30 - | size 56771 |
29 + | checksums rmd160 ca78e596273097904a21d8ad3a3ac783d47e1e6f \ |
30 + | sha256 ac30cfc64580958ab7265decb4cabb9141f08781ff072e9a336d5a7942ce35a6 \ |
31 + | size 57664 |
31 32 | |
32 - | python.versions 27 34 35 36 |
33 + | python.versions 27 35 36 37 38 |
33 34 | |
34 35 | if {${name} ne ${subport}} { |
35 36 | depends_lib-append \ |
36 37 | port:py${python.version}-pygments \ |
37 38 | port:py${python.version}-setuptools \ |
38 39 | port:py${python.version}-urwid |
39 40 | |
40 41 | post-destroot { |
41 42 | set docdir ${prefix}/share/doc/${subport} |
42 43 | xinstall -d ${destroot}${docdir} |