# -*- 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 select 1.0 name py-pygments python.rootname Pygments version 2.19.2 revision 0 categories-append devel license BSD supported_archs noarch platforms {darwin any} python.versions 27 38 39 310 311 312 313 314 python.pep517_backend \ hatch maintainers {stromnov @stromnov} openmaintainer description Python syntax highlighter long_description \ Pygments is a fast syntax highlighter written in Python with a \ special focus on details. Can highlight source code in many supported \ languages: Python, Ruby, PHP, HTML etc. Outputs arbitrarily-styled \ HTML or LaTeX, comes with many builtin styles. homepage https://pygments.org/ checksums rmd160 26de404ae973929ccf48ef77df13bd010bf9611d \ sha256 636cb2477cec7f8952536970bc533bc43743542f70392ae026374600add5b887 \ size 4968631 distname pygments-${version} if {${name} ne ${subport}} { if {${python.version} eq 27} { version 2.5.2 revision 0 checksums rmd160 e38d8d2e69af42784f2b7235ba5ee464df71901b \ sha256 98c8aa5a9f778fcd1026a17361ddaf7330d1b7c62ae97c3bb0ae73e0b9b6b0fe \ size 20263984 distname ${python.rootname}-${version} depends_lib-append port:py${python.version}-setuptools } depends_run-append port:pygments_select post-destroot { set docdir ${prefix}/share/doc/${subport} xinstall -d ${destroot}${docdir} xinstall -m 644 -W ${worksrcpath} AUTHORS CHANGES LICENSE \ ${destroot}${docdir} set man1 ${python.prefix}/share/man/man1 xinstall -d ${destroot}${man1} xinstall -m 644 ${worksrcpath}/doc/pygmentize.1 ${destroot}${man1} ln -sf ${man1}/pygmentize.1 \ ${destroot}${prefix}/share/man/man1/pygmentize-${python.branch}.1 } select.group pygments select.file ${filespath}/py${python.version}-pygments notes " To make the Python ${python.branch} version of Pygments the one that is run when\ you execute the commands without a version suffix, e.g. 'pygmentize', run: port select --set ${select.group} [file tail ${select.file}] " livecheck.type none }