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 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python 1.0 |
---|
5 | |
---|
6 | name py-jupyter_core |
---|
7 | version 4.3.0 |
---|
8 | revision 1 |
---|
9 | platforms darwin |
---|
10 | license BSD |
---|
11 | supported_archs noarch |
---|
12 | |
---|
13 | python.versions 27 34 35 36 |
---|
14 | |
---|
15 | maintainers stromnov openmaintainer |
---|
16 | |
---|
17 | description Jupyter core package. |
---|
18 | long_description ${description} |
---|
19 | |
---|
20 | homepage http://jupyter.org |
---|
21 | master_sites pypi:[string index ${python.rootname} 0]/${python.rootname} |
---|
22 | |
---|
23 | distname ${python.rootname}-${version} |
---|
24 | |
---|
25 | checksums rmd160 bbecbc5f5cde82a084aa4b523212f3dc8777e956 \ |
---|
26 | sha256 a96b129e1641425bf057c3d46f4f44adce747a7d60107e8ad771045c36514d40 |
---|
27 | |
---|
28 | if {${name} ne ${subport}} { |
---|
29 | depends_lib-append port:py${python.version}-setuptools \ |
---|
30 | port:py${python.version}-traitlets |
---|
31 | |
---|
32 | livecheck.type none |
---|
33 | |
---|
34 | patchfiles-append patch-jupyter_core-paths.py.diff |
---|
35 | |
---|
36 | post-patch { |
---|
37 | reinplace "s|%PREFIX%|${prefix}|" \ |
---|
38 | ${worksrcpath}/jupyter_core/paths.py |
---|
39 | } |
---|
40 | } |
---|