Permalink
Showing
with
69 additions
and 0 deletions.
| @@ -0,0 +1,34 @@ | ||
| # -*- 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 | ||
|
|
||
| PortSystem 1.0 | ||
| PortGroup python 1.0 | ||
| PortGroup github 1.0 | ||
|
|
||
| github.setup ryan-roemer sphinx-bootstrap-theme v0.7.1 | ||
| name py-sphinx-bootstrap-theme | ||
| platforms darwin | ||
| supported_archs noarch | ||
| license MIT | ||
| maintainers nomaintainer | ||
|
|
||
| description Sphinx bootstrap theme. | ||
| long_description ${description} | ||
|
|
||
| checksums \ | ||
| rmd160 b57d6742d215223f9b4e995b3456ff00ae0c32ec \ | ||
| sha256 df0cafc62db5768f2b595a0709099d2ff65bf19b1c19855bdfd9e1d6a1af6bfb \ | ||
| size 1253883 | ||
|
|
||
| python.versions 27 36 37 | ||
|
|
||
| if {${subport} ne ${name}} { | ||
| depends_build port:py${python.version}-setuptools | ||
| livecheck.type none | ||
|
|
||
| post-destroot { | ||
| set DOCDIR "${destroot}${prefix}/share/doc/${subport}" | ||
| xinstall -d ${DOCDIR} | ||
| xinstall -m 0644 -W ${worksrcpath} LICENSE.txt ${DOCDIR} | ||
| } | ||
| } | ||
|
|
| @@ -0,0 +1,35 @@ | ||
| # -*- 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 | ||
|
|
||
| PortSystem 1.0 | ||
| PortGroup python 1.0 | ||
| PortGroup github 1.0 | ||
|
|
||
| github.setup sphinx-gallery sphinx-gallery 0.3.1 v | ||
| name py-sphinx-gallery | ||
| platforms darwin | ||
| supported_archs noarch | ||
| license BSD | ||
| maintainers nomaintainer | ||
|
|
||
| description Extension for automatic generation of an example gallery | ||
| long_description ${description} | ||
|
|
||
| checksums \ | ||
| rmd160 e1171e7d9d86f8c3c104574edcde8bbdfeef1cb8 \ | ||
| sha256 bd8dea86dacf48091229c2d7737bbf6efa5a9dd5b49060f232d0c232cfbcc563 \ | ||
| size 383518 | ||
|
|
||
| python.versions 27 36 37 | ||
|
|
||
| if {${subport} ne ${name}} { | ||
| depends_build port:py${python.version}-setuptools \ | ||
| port:py${python.version}-pytest-runner | ||
| livecheck.type none | ||
|
|
||
| post-destroot { | ||
| set DOCDIR "${destroot}${prefix}/share/doc/${subport}" | ||
| xinstall -d ${DOCDIR} | ||
| xinstall -m 0644 -W ${worksrcpath} LICENSE ${DOCDIR} | ||
| } | ||
| } | ||
|
|