Commits
Andrew Stromnov authored 7f228a19951
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-nbconvert |
7 - | version 5.4.1 |
7 + | version 5.5.0 |
8 8 | revision 0 |
9 9 | categories-append textproc |
10 10 | platforms darwin |
11 11 | license BSD |
12 12 | supported_archs noarch |
13 13 | |
14 14 | python.versions 27 34 35 36 37 |
15 15 | |
16 16 | maintainers {stromnov @stromnov} openmaintainer |
17 17 | |
18 18 | description Jupyter Notebooks converter. |
19 19 | long_description ${description} |
20 20 | |
21 21 | homepage http://jupyter.org |
22 22 | master_sites pypi:[string index ${python.rootname} 0]/${python.rootname} |
23 23 | |
24 24 | distname ${python.rootname}-${version} |
25 25 | |
26 - | checksums rmd160 c4c235e3eddb2c6e8f017ecc3033314927d35520 \ |
27 - | sha256 302554a2e219bc0fc84f3edd3e79953f3767b46ab67626fdec16e38ba3f7efe4 \ |
28 - | size 542123 |
26 + | checksums rmd160 9bbc61ecc4d33c03ebaa0c5b552af9b8d86afeec \ |
27 + | sha256 138381baa41d83584459b5cfecfc38c800ccf1f37d9ddd0bd440783346a4c39c \ |
28 + | size 583216 |
29 29 | |
30 30 | if {${name} ne ${subport}} { |
31 31 | depends_lib-append port:py${python.version}-setuptools \ |
32 32 | port:py${python.version}-mistune \ |
33 33 | port:py${python.version}-jinja2 \ |
34 34 | port:py${python.version}-pygments \ |
35 35 | port:py${python.version}-traitlets \ |
36 36 | port:py${python.version}-jupyter_core \ |
37 37 | port:py${python.version}-nbformat \ |
38 38 | port:py${python.version}-entrypoints \ |
39 39 | port:py${python.version}-bleach \ |
40 40 | port:py${python.version}-pandocfilters \ |
41 41 | port:py${python.version}-testpath \ |
42 42 | port:py${python.version}-defusedxml |
43 43 | |
44 + | if {${python.version} eq 34} { |
45 + | version 5.4.1 |
46 + | revision 0 |
47 + | distname ${python.rootname}-${version} |
48 + | checksums rmd160 c4c235e3eddb2c6e8f017ecc3033314927d35520 \ |
49 + | sha256 302554a2e219bc0fc84f3edd3e79953f3767b46ab67626fdec16e38ba3f7efe4 \ |
50 + | size 542123 |
51 + | } |
52 + | |
44 53 | livecheck.type none |
45 54 | } |