Files
2026-05-15 13:19:54 -04:00

76 lines
2.5 KiB
Tcl

# -*- 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.20.0
revision 0
categories-append devel
license BSD
supported_archs noarch
platforms {darwin any}
python.versions 27 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 c0f7a26be02633a1eabe2906a6a9a22b2acf3a70 \
sha256 6757cd03768053ff99f3039c1a36d6c0aa0b263438fcab17520b30a303a82b5f \
size 4955991
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
}