Ticket #68224: py-jupyterlab_server.Portfile.diff

File py-jupyterlab_server.Portfile.diff, 2.0 KB (added by johankytt, 8 months ago)
  • Portfile

    old new  
    44PortGroup           python 1.0
    55
    66name                py-jupyterlab_server
    7 version             2.4.0
     7version             2.25.0
    88revision            0
    99categories-append   devel
    1010license             BSD
     
    1212platforms           {darwin any}
    1313
    1414python.versions     37 38 39 310 311
     15python.pep517       yes
     16python.pep517_backend hatch
    1517
    1618maintainers         {stromnov @stromnov} openmaintainer
    1719
    1820description         This package is used to launch an application built using JupyterLab.
    1921long_description    {*}${description}
    2022
    21 homepage            https://jupyter.org/
     23homepage            https://github.com/jupyterlab/jupyterlab_server
    2224
    23 checksums           rmd160  bd06e2f3c2eff402a9ffdd63d597eb13c51a0d41 \
    24                     sha256  2a7f0b125a59a7cc543f62e5f9dea50b44b3459b3f679db7e3dbe0f8616f90bc \
    25                     size    36297
     25checksums           rmd160  2c5d41db3703981f04200231f1e0b6b529068847 \
     26                    sha256  77c2f1f282d610f95e496e20d5bf1d2a7706826dfb7b18f3378ae2870d272fb7 \
     27                    size    72251
    2628
    2729if {${name} ne ${subport}} {
    28     depends_build-append \
    29                         port:py${python.version}-setuptools
     30    depends_build-append  port:py${python.version}-packaging
     31
    3032    depends_lib-append  port:py${python.version}-babel \
    3133                        port:py${python.version}-jinja2 \
    3234                        port:py${python.version}-json5 \
    3335                        port:py${python.version}-jsonschema \
    34                         port:py${python.version}-packaging \
    35                         port:py${python.version}-requests \
    36                         port:py${python.version}-jupyter_server
     36                        port:py${python.version}-jupyter_server \
     37                        port:py${python.version}-requests
     38
     39    if {${python.version} < 310} {
     40        depends_lib-append  port:py${python.version}-importlib-metadata
     41    }
    3742}