Tue Jan 24 12:50:34 2023 UTC ()
py-pygments: updated to 2.14.0

Version 2.14.0
--------------
- Added lexers:
  * Arturo
  * GAP session
  * Fift
  * func
  * Jsonnet
  * Minecraft schema
  * MIPS
  * Phix
  * Portugol
  * TL-b
  * World of Warcraft TOC format
  * Wren

- Updated lexers:
  * Abap: Update keywords
  * Alloy: Update for Alloy 6
  * C family (C, C++ and many others):
    - Fix an issue where a chunk would be wrongly recognized as a function
      definition due to braces in comments
    - Improve parantheses handling for function definitions

  * C#: Fix number and operator recognition
  * CSound: Updated builtins
  * F#: Add ``.fsx`` file extension
  * gas (GNU assembler): recognize braces as punctuation
  * HTTP: Add `CONNECT` keyword
  * Inform 6: Fix lexing of properties and doubles
  * INI: Allow comments that are not their own line
  * Java properties: Fix issue with whitespace-delimited keys, support
    comments starting with `!` and escapes, no longer support undocumented
    `;` and `//` comments
  * LilyPond: Improve heuristics, add ``\maxima`` duration
  * LLVM: Add opaque pointer type
  * Macaulay2: Update keywords
  * Minecraft-related lexers (SNB and Minecraft function) moved to
    ``pygments.lexers.minecraft``
  * Nim: General improvements
  * Nix: Fix single quotes inside indented strings
  * Objective J: Fix catastrophic backtracking
  * NASM: Add support for SSE/AVX/AVX-512 registers as well as 'rel'
    and 'abs' address operators
  * Powershell:
    - Add ``local:`` keyword
    - Allow continuations without markers

  * Solidity: Add boolean operators
  * Spice: Add ``enum`` keyword and fix a bug regarding binary,
    hexadecimal and octal number tokens
  * YAML: Accept colons in key names

- Fix `make mapfiles` when Pygments is not installed in editable mode
- Support more filetypes and compression types in `autopygmentize`
- Merge consecutive tokens in Autohotkey, Clay
- Add ``.nasm`` as a recognized file type for NASM
- Add ``*Spec.hs`` as a recognized file type for ``HSpec``
- Add ``*.pyi`` (for typing stub files) as a recognized file type for
  Python
- The HTML lexer no longer emits empty spans for whitespace
- Fix ``IRCFormatter`` inserting linenumbers incorrectly


(adam)
diff -r1.44 -r1.45 pkgsrc/textproc/py-pygments/Makefile
diff -r1.22 -r1.23 pkgsrc/textproc/py-pygments/PLIST
diff -r1.27 -r1.28 pkgsrc/textproc/py-pygments/distinfo

cvs diff -r1.44 -r1.45 pkgsrc/textproc/py-pygments/Makefile (expand / switch to unified diff)

--- pkgsrc/textproc/py-pygments/Makefile 2022/11/28 20:54:40 1.44
+++ pkgsrc/textproc/py-pygments/Makefile 2023/01/24 12:50:34 1.45
@@ -1,36 +1,31 @@ @@ -1,36 +1,31 @@
1# $NetBSD: Makefile,v 1.44 2022/11/28 20:54:40 abs Exp $ 1# $NetBSD: Makefile,v 1.45 2023/01/24 12:50:34 adam Exp $
2 2
3DISTNAME= Pygments-2.13.0 3DISTNAME= Pygments-2.14.0
4PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl} 4PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl}
5CATEGORIES= textproc python 5CATEGORIES= textproc python
6MASTER_SITES= ${MASTER_SITE_PYPI:=P/Pygments/} 6MASTER_SITES= ${MASTER_SITE_PYPI:=P/Pygments/}
7 7
8MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
9HOMEPAGE= https://pygments.org/ 9HOMEPAGE= https://pygments.org/
10COMMENT= Python syntax highlighter 10COMMENT= Python syntax highlighter
11LICENSE= 2-clause-bsd 11LICENSE= 2-clause-bsd
12 12
13TEST_DEPENDS+= ${PYPKGPREFIX}-lxml-[0-9]*:../../textproc/py-lxml 13TEST_DEPENDS+= ${PYPKGPREFIX}-lxml-[0-9]*:../../textproc/py-lxml
14TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test 14TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
15TEST_DEPENDS+= ${PYPKGPREFIX}-wcag-contrast-ratio-[0-9]*:../../graphics/py-wcag-contrast-ratio 15TEST_DEPENDS+= ${PYPKGPREFIX}-wcag-contrast-ratio-[0-9]*:../../graphics/py-wcag-contrast-ratio
16 16
17USE_LANGUAGES= # none 17USE_LANGUAGES= # none
18 18
19PYTHON_VERSIONS_INCOMPATIBLE= 27 
20 
21.include "../../lang/python/pyversion.mk" 
22.if ${_PYTHON_VERSION} == 37 
23DEPENDS+= ${PYPKGPREFIX}-importlib-metadata-[0-9]*:../../devel/py-importlib-metadata 
24.endif 
25 
26USE_PKG_RESOURCES= yes 19USE_PKG_RESOURCES= yes
27 20
 21PYTHON_VERSIONS_INCOMPATIBLE= 27
 22
28post-install: 23post-install:
29 cd ${DESTDIR}${PREFIX}/bin && \ 24 cd ${DESTDIR}${PREFIX}/bin && \
30 ${MV} pygmentize pygmentize-${PYVERSSUFFIX} || ${TRUE} 25 ${MV} pygmentize pygmentize-${PYVERSSUFFIX} || ${TRUE}
31 26
32do-test: 27do-test:
33 cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests 28 cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests
34 29
35.include "../../lang/python/egg.mk" 30.include "../../lang/python/egg.mk"
36.include "../../mk/bsd.pkg.mk" 31.include "../../mk/bsd.pkg.mk"

cvs diff -r1.22 -r1.23 pkgsrc/textproc/py-pygments/PLIST (expand / switch to unified diff)

--- pkgsrc/textproc/py-pygments/PLIST 2022/08/16 14:01:18 1.22
+++ pkgsrc/textproc/py-pygments/PLIST 2023/01/24 12:50:34 1.23
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.22 2022/08/16 14:01:18 adam Exp $ 1@comment $NetBSD: PLIST,v 1.23 2023/01/24 12:50:34 adam Exp $
2bin/pygmentize-${PYVERSSUFFIX} 2bin/pygmentize-${PYVERSSUFFIX}
3${PYSITELIB}/${EGG_INFODIR}/PKG-INFO 3${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
4${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt 4${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
5${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt 5${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
6${PYSITELIB}/${EGG_INFODIR}/entry_points.txt 6${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
7${PYSITELIB}/${EGG_INFODIR}/not-zip-safe 7${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
8${PYSITELIB}/${EGG_INFODIR}/requires.txt 8${PYSITELIB}/${EGG_INFODIR}/requires.txt
9${PYSITELIB}/${EGG_INFODIR}/top_level.txt 9${PYSITELIB}/${EGG_INFODIR}/top_level.txt
10${PYSITELIB}/pygments/__init__.py 10${PYSITELIB}/pygments/__init__.py
11${PYSITELIB}/pygments/__init__.pyc 11${PYSITELIB}/pygments/__init__.pyc
12${PYSITELIB}/pygments/__init__.pyo 12${PYSITELIB}/pygments/__init__.pyo
13${PYSITELIB}/pygments/__main__.py 13${PYSITELIB}/pygments/__main__.py
14${PYSITELIB}/pygments/__main__.pyc 14${PYSITELIB}/pygments/__main__.pyc
@@ -177,26 +177,29 @@ ${PYSITELIB}/pygments/lexers/ampl.pyc @@ -177,26 +177,29 @@ ${PYSITELIB}/pygments/lexers/ampl.pyc
177${PYSITELIB}/pygments/lexers/ampl.pyo 177${PYSITELIB}/pygments/lexers/ampl.pyo
178${PYSITELIB}/pygments/lexers/apdlexer.py 178${PYSITELIB}/pygments/lexers/apdlexer.py
179${PYSITELIB}/pygments/lexers/apdlexer.pyc 179${PYSITELIB}/pygments/lexers/apdlexer.pyc
180${PYSITELIB}/pygments/lexers/apdlexer.pyo 180${PYSITELIB}/pygments/lexers/apdlexer.pyo
181${PYSITELIB}/pygments/lexers/apl.py 181${PYSITELIB}/pygments/lexers/apl.py
182${PYSITELIB}/pygments/lexers/apl.pyc 182${PYSITELIB}/pygments/lexers/apl.pyc
183${PYSITELIB}/pygments/lexers/apl.pyo 183${PYSITELIB}/pygments/lexers/apl.pyo
184${PYSITELIB}/pygments/lexers/archetype.py 184${PYSITELIB}/pygments/lexers/archetype.py
185${PYSITELIB}/pygments/lexers/archetype.pyc 185${PYSITELIB}/pygments/lexers/archetype.pyc
186${PYSITELIB}/pygments/lexers/archetype.pyo 186${PYSITELIB}/pygments/lexers/archetype.pyo
187${PYSITELIB}/pygments/lexers/arrow.py 187${PYSITELIB}/pygments/lexers/arrow.py
188${PYSITELIB}/pygments/lexers/arrow.pyc 188${PYSITELIB}/pygments/lexers/arrow.pyc
189${PYSITELIB}/pygments/lexers/arrow.pyo 189${PYSITELIB}/pygments/lexers/arrow.pyo
 190${PYSITELIB}/pygments/lexers/arturo.py
 191${PYSITELIB}/pygments/lexers/arturo.pyc
 192${PYSITELIB}/pygments/lexers/arturo.pyo
190${PYSITELIB}/pygments/lexers/asc.py 193${PYSITELIB}/pygments/lexers/asc.py
191${PYSITELIB}/pygments/lexers/asc.pyc 194${PYSITELIB}/pygments/lexers/asc.pyc
192${PYSITELIB}/pygments/lexers/asc.pyo 195${PYSITELIB}/pygments/lexers/asc.pyo
193${PYSITELIB}/pygments/lexers/asm.py 196${PYSITELIB}/pygments/lexers/asm.py
194${PYSITELIB}/pygments/lexers/asm.pyc 197${PYSITELIB}/pygments/lexers/asm.pyc
195${PYSITELIB}/pygments/lexers/asm.pyo 198${PYSITELIB}/pygments/lexers/asm.pyo
196${PYSITELIB}/pygments/lexers/automation.py 199${PYSITELIB}/pygments/lexers/automation.py
197${PYSITELIB}/pygments/lexers/automation.pyc 200${PYSITELIB}/pygments/lexers/automation.pyc
198${PYSITELIB}/pygments/lexers/automation.pyo 201${PYSITELIB}/pygments/lexers/automation.pyo
199${PYSITELIB}/pygments/lexers/bare.py 202${PYSITELIB}/pygments/lexers/bare.py
200${PYSITELIB}/pygments/lexers/bare.pyc 203${PYSITELIB}/pygments/lexers/bare.pyc
201${PYSITELIB}/pygments/lexers/bare.pyo 204${PYSITELIB}/pygments/lexers/bare.pyo
202${PYSITELIB}/pygments/lexers/basic.py 205${PYSITELIB}/pygments/lexers/basic.py
@@ -306,41 +309,47 @@ ${PYSITELIB}/pygments/lexers/esoteric.py @@ -306,41 +309,47 @@ ${PYSITELIB}/pygments/lexers/esoteric.py
306${PYSITELIB}/pygments/lexers/esoteric.pyo 309${PYSITELIB}/pygments/lexers/esoteric.pyo
307${PYSITELIB}/pygments/lexers/ezhil.py 310${PYSITELIB}/pygments/lexers/ezhil.py
308${PYSITELIB}/pygments/lexers/ezhil.pyc 311${PYSITELIB}/pygments/lexers/ezhil.pyc
309${PYSITELIB}/pygments/lexers/ezhil.pyo 312${PYSITELIB}/pygments/lexers/ezhil.pyo
310${PYSITELIB}/pygments/lexers/factor.py 313${PYSITELIB}/pygments/lexers/factor.py
311${PYSITELIB}/pygments/lexers/factor.pyc 314${PYSITELIB}/pygments/lexers/factor.pyc
312${PYSITELIB}/pygments/lexers/factor.pyo 315${PYSITELIB}/pygments/lexers/factor.pyo
313${PYSITELIB}/pygments/lexers/fantom.py 316${PYSITELIB}/pygments/lexers/fantom.py
314${PYSITELIB}/pygments/lexers/fantom.pyc 317${PYSITELIB}/pygments/lexers/fantom.pyc
315${PYSITELIB}/pygments/lexers/fantom.pyo 318${PYSITELIB}/pygments/lexers/fantom.pyo
316${PYSITELIB}/pygments/lexers/felix.py 319${PYSITELIB}/pygments/lexers/felix.py
317${PYSITELIB}/pygments/lexers/felix.pyc 320${PYSITELIB}/pygments/lexers/felix.pyc
318${PYSITELIB}/pygments/lexers/felix.pyo 321${PYSITELIB}/pygments/lexers/felix.pyo
 322${PYSITELIB}/pygments/lexers/fift.py
 323${PYSITELIB}/pygments/lexers/fift.pyc
 324${PYSITELIB}/pygments/lexers/fift.pyo
319${PYSITELIB}/pygments/lexers/floscript.py 325${PYSITELIB}/pygments/lexers/floscript.py
320${PYSITELIB}/pygments/lexers/floscript.pyc 326${PYSITELIB}/pygments/lexers/floscript.pyc
321${PYSITELIB}/pygments/lexers/floscript.pyo 327${PYSITELIB}/pygments/lexers/floscript.pyo
322${PYSITELIB}/pygments/lexers/forth.py 328${PYSITELIB}/pygments/lexers/forth.py
323${PYSITELIB}/pygments/lexers/forth.pyc 329${PYSITELIB}/pygments/lexers/forth.pyc
324${PYSITELIB}/pygments/lexers/forth.pyo 330${PYSITELIB}/pygments/lexers/forth.pyo
325${PYSITELIB}/pygments/lexers/fortran.py 331${PYSITELIB}/pygments/lexers/fortran.py
326${PYSITELIB}/pygments/lexers/fortran.pyc 332${PYSITELIB}/pygments/lexers/fortran.pyc
327${PYSITELIB}/pygments/lexers/fortran.pyo 333${PYSITELIB}/pygments/lexers/fortran.pyo
328${PYSITELIB}/pygments/lexers/foxpro.py 334${PYSITELIB}/pygments/lexers/foxpro.py
329${PYSITELIB}/pygments/lexers/foxpro.pyc 335${PYSITELIB}/pygments/lexers/foxpro.pyc
330${PYSITELIB}/pygments/lexers/foxpro.pyo 336${PYSITELIB}/pygments/lexers/foxpro.pyo
331${PYSITELIB}/pygments/lexers/freefem.py 337${PYSITELIB}/pygments/lexers/freefem.py
332${PYSITELIB}/pygments/lexers/freefem.pyc 338${PYSITELIB}/pygments/lexers/freefem.pyc
333${PYSITELIB}/pygments/lexers/freefem.pyo 339${PYSITELIB}/pygments/lexers/freefem.pyo
 340${PYSITELIB}/pygments/lexers/func.py
 341${PYSITELIB}/pygments/lexers/func.pyc
 342${PYSITELIB}/pygments/lexers/func.pyo
334${PYSITELIB}/pygments/lexers/functional.py 343${PYSITELIB}/pygments/lexers/functional.py
335${PYSITELIB}/pygments/lexers/functional.pyc 344${PYSITELIB}/pygments/lexers/functional.pyc
336${PYSITELIB}/pygments/lexers/functional.pyo 345${PYSITELIB}/pygments/lexers/functional.pyo
337${PYSITELIB}/pygments/lexers/futhark.py 346${PYSITELIB}/pygments/lexers/futhark.py
338${PYSITELIB}/pygments/lexers/futhark.pyc 347${PYSITELIB}/pygments/lexers/futhark.pyc
339${PYSITELIB}/pygments/lexers/futhark.pyo 348${PYSITELIB}/pygments/lexers/futhark.pyo
340${PYSITELIB}/pygments/lexers/gcodelexer.py 349${PYSITELIB}/pygments/lexers/gcodelexer.py
341${PYSITELIB}/pygments/lexers/gcodelexer.pyc 350${PYSITELIB}/pygments/lexers/gcodelexer.pyc
342${PYSITELIB}/pygments/lexers/gcodelexer.pyo 351${PYSITELIB}/pygments/lexers/gcodelexer.pyo
343${PYSITELIB}/pygments/lexers/gdscript.py 352${PYSITELIB}/pygments/lexers/gdscript.py
344${PYSITELIB}/pygments/lexers/gdscript.pyc 353${PYSITELIB}/pygments/lexers/gdscript.pyc
345${PYSITELIB}/pygments/lexers/gdscript.pyo 354${PYSITELIB}/pygments/lexers/gdscript.pyo
346${PYSITELIB}/pygments/lexers/go.py 355${PYSITELIB}/pygments/lexers/go.py
@@ -396,26 +405,29 @@ ${PYSITELIB}/pygments/lexers/iolang.pyc @@ -396,26 +405,29 @@ ${PYSITELIB}/pygments/lexers/iolang.pyc
396${PYSITELIB}/pygments/lexers/iolang.pyo 405${PYSITELIB}/pygments/lexers/iolang.pyo
397${PYSITELIB}/pygments/lexers/j.py 406${PYSITELIB}/pygments/lexers/j.py
398${PYSITELIB}/pygments/lexers/j.pyc 407${PYSITELIB}/pygments/lexers/j.pyc
399${PYSITELIB}/pygments/lexers/j.pyo 408${PYSITELIB}/pygments/lexers/j.pyo
400${PYSITELIB}/pygments/lexers/javascript.py 409${PYSITELIB}/pygments/lexers/javascript.py
401${PYSITELIB}/pygments/lexers/javascript.pyc 410${PYSITELIB}/pygments/lexers/javascript.pyc
402${PYSITELIB}/pygments/lexers/javascript.pyo 411${PYSITELIB}/pygments/lexers/javascript.pyo
403${PYSITELIB}/pygments/lexers/jmespath.py 412${PYSITELIB}/pygments/lexers/jmespath.py
404${PYSITELIB}/pygments/lexers/jmespath.pyc 413${PYSITELIB}/pygments/lexers/jmespath.pyc
405${PYSITELIB}/pygments/lexers/jmespath.pyo 414${PYSITELIB}/pygments/lexers/jmespath.pyo
406${PYSITELIB}/pygments/lexers/jslt.py 415${PYSITELIB}/pygments/lexers/jslt.py
407${PYSITELIB}/pygments/lexers/jslt.pyc 416${PYSITELIB}/pygments/lexers/jslt.pyc
408${PYSITELIB}/pygments/lexers/jslt.pyo 417${PYSITELIB}/pygments/lexers/jslt.pyo
 418${PYSITELIB}/pygments/lexers/jsonnet.py
 419${PYSITELIB}/pygments/lexers/jsonnet.pyc
 420${PYSITELIB}/pygments/lexers/jsonnet.pyo
409${PYSITELIB}/pygments/lexers/julia.py 421${PYSITELIB}/pygments/lexers/julia.py
410${PYSITELIB}/pygments/lexers/julia.pyc 422${PYSITELIB}/pygments/lexers/julia.pyc
411${PYSITELIB}/pygments/lexers/julia.pyo 423${PYSITELIB}/pygments/lexers/julia.pyo
412${PYSITELIB}/pygments/lexers/jvm.py 424${PYSITELIB}/pygments/lexers/jvm.py
413${PYSITELIB}/pygments/lexers/jvm.pyc 425${PYSITELIB}/pygments/lexers/jvm.pyc
414${PYSITELIB}/pygments/lexers/jvm.pyo 426${PYSITELIB}/pygments/lexers/jvm.pyo
415${PYSITELIB}/pygments/lexers/kuin.py 427${PYSITELIB}/pygments/lexers/kuin.py
416${PYSITELIB}/pygments/lexers/kuin.pyc 428${PYSITELIB}/pygments/lexers/kuin.pyc
417${PYSITELIB}/pygments/lexers/kuin.pyo 429${PYSITELIB}/pygments/lexers/kuin.pyo
418${PYSITELIB}/pygments/lexers/lilypond.py 430${PYSITELIB}/pygments/lexers/lilypond.py
419${PYSITELIB}/pygments/lexers/lilypond.pyc 431${PYSITELIB}/pygments/lexers/lilypond.pyc
420${PYSITELIB}/pygments/lexers/lilypond.pyo 432${PYSITELIB}/pygments/lexers/lilypond.pyo
421${PYSITELIB}/pygments/lexers/lisp.py 433${PYSITELIB}/pygments/lexers/lisp.py
@@ -429,35 +441,38 @@ ${PYSITELIB}/pygments/lexers/make.pyc @@ -429,35 +441,38 @@ ${PYSITELIB}/pygments/lexers/make.pyc
429${PYSITELIB}/pygments/lexers/make.pyo 441${PYSITELIB}/pygments/lexers/make.pyo
430${PYSITELIB}/pygments/lexers/markup.py 442${PYSITELIB}/pygments/lexers/markup.py
431${PYSITELIB}/pygments/lexers/markup.pyc 443${PYSITELIB}/pygments/lexers/markup.pyc
432${PYSITELIB}/pygments/lexers/markup.pyo 444${PYSITELIB}/pygments/lexers/markup.pyo
433${PYSITELIB}/pygments/lexers/math.py 445${PYSITELIB}/pygments/lexers/math.py
434${PYSITELIB}/pygments/lexers/math.pyc 446${PYSITELIB}/pygments/lexers/math.pyc
435${PYSITELIB}/pygments/lexers/math.pyo 447${PYSITELIB}/pygments/lexers/math.pyo
436${PYSITELIB}/pygments/lexers/matlab.py 448${PYSITELIB}/pygments/lexers/matlab.py
437${PYSITELIB}/pygments/lexers/matlab.pyc 449${PYSITELIB}/pygments/lexers/matlab.pyc
438${PYSITELIB}/pygments/lexers/matlab.pyo 450${PYSITELIB}/pygments/lexers/matlab.pyo
439${PYSITELIB}/pygments/lexers/maxima.py 451${PYSITELIB}/pygments/lexers/maxima.py
440${PYSITELIB}/pygments/lexers/maxima.pyc 452${PYSITELIB}/pygments/lexers/maxima.pyc
441${PYSITELIB}/pygments/lexers/maxima.pyo 453${PYSITELIB}/pygments/lexers/maxima.pyo
442${PYSITELIB}/pygments/lexers/mcfunction.py 
443${PYSITELIB}/pygments/lexers/mcfunction.pyc 
444${PYSITELIB}/pygments/lexers/mcfunction.pyo 
445${PYSITELIB}/pygments/lexers/meson.py 454${PYSITELIB}/pygments/lexers/meson.py
446${PYSITELIB}/pygments/lexers/meson.pyc 455${PYSITELIB}/pygments/lexers/meson.pyc
447${PYSITELIB}/pygments/lexers/meson.pyo 456${PYSITELIB}/pygments/lexers/meson.pyo
448${PYSITELIB}/pygments/lexers/mime.py 457${PYSITELIB}/pygments/lexers/mime.py
449${PYSITELIB}/pygments/lexers/mime.pyc 458${PYSITELIB}/pygments/lexers/mime.pyc
450${PYSITELIB}/pygments/lexers/mime.pyo 459${PYSITELIB}/pygments/lexers/mime.pyo
 460${PYSITELIB}/pygments/lexers/minecraft.py
 461${PYSITELIB}/pygments/lexers/minecraft.pyc
 462${PYSITELIB}/pygments/lexers/minecraft.pyo
 463${PYSITELIB}/pygments/lexers/mips.py
 464${PYSITELIB}/pygments/lexers/mips.pyc
 465${PYSITELIB}/pygments/lexers/mips.pyo
451${PYSITELIB}/pygments/lexers/ml.py 466${PYSITELIB}/pygments/lexers/ml.py
452${PYSITELIB}/pygments/lexers/ml.pyc 467${PYSITELIB}/pygments/lexers/ml.pyc
453${PYSITELIB}/pygments/lexers/ml.pyo 468${PYSITELIB}/pygments/lexers/ml.pyo
454${PYSITELIB}/pygments/lexers/modeling.py 469${PYSITELIB}/pygments/lexers/modeling.py
455${PYSITELIB}/pygments/lexers/modeling.pyc 470${PYSITELIB}/pygments/lexers/modeling.pyc
456${PYSITELIB}/pygments/lexers/modeling.pyo 471${PYSITELIB}/pygments/lexers/modeling.pyo
457${PYSITELIB}/pygments/lexers/modula2.py 472${PYSITELIB}/pygments/lexers/modula2.py
458${PYSITELIB}/pygments/lexers/modula2.pyc 473${PYSITELIB}/pygments/lexers/modula2.pyc
459${PYSITELIB}/pygments/lexers/modula2.pyo 474${PYSITELIB}/pygments/lexers/modula2.pyo
460${PYSITELIB}/pygments/lexers/monte.py 475${PYSITELIB}/pygments/lexers/monte.py
461${PYSITELIB}/pygments/lexers/monte.pyc 476${PYSITELIB}/pygments/lexers/monte.pyc
462${PYSITELIB}/pygments/lexers/monte.pyo 477${PYSITELIB}/pygments/lexers/monte.pyo
463${PYSITELIB}/pygments/lexers/mosel.py 478${PYSITELIB}/pygments/lexers/mosel.py
@@ -492,26 +507,29 @@ ${PYSITELIB}/pygments/lexers/parasail.py @@ -492,26 +507,29 @@ ${PYSITELIB}/pygments/lexers/parasail.py
492${PYSITELIB}/pygments/lexers/parasail.pyo 507${PYSITELIB}/pygments/lexers/parasail.pyo
493${PYSITELIB}/pygments/lexers/parsers.py 508${PYSITELIB}/pygments/lexers/parsers.py
494${PYSITELIB}/pygments/lexers/parsers.pyc 509${PYSITELIB}/pygments/lexers/parsers.pyc
495${PYSITELIB}/pygments/lexers/parsers.pyo 510${PYSITELIB}/pygments/lexers/parsers.pyo
496${PYSITELIB}/pygments/lexers/pascal.py 511${PYSITELIB}/pygments/lexers/pascal.py
497${PYSITELIB}/pygments/lexers/pascal.pyc 512${PYSITELIB}/pygments/lexers/pascal.pyc
498${PYSITELIB}/pygments/lexers/pascal.pyo 513${PYSITELIB}/pygments/lexers/pascal.pyo
499${PYSITELIB}/pygments/lexers/pawn.py 514${PYSITELIB}/pygments/lexers/pawn.py
500${PYSITELIB}/pygments/lexers/pawn.pyc 515${PYSITELIB}/pygments/lexers/pawn.pyc
501${PYSITELIB}/pygments/lexers/pawn.pyo 516${PYSITELIB}/pygments/lexers/pawn.pyo
502${PYSITELIB}/pygments/lexers/perl.py 517${PYSITELIB}/pygments/lexers/perl.py
503${PYSITELIB}/pygments/lexers/perl.pyc 518${PYSITELIB}/pygments/lexers/perl.pyc
504${PYSITELIB}/pygments/lexers/perl.pyo 519${PYSITELIB}/pygments/lexers/perl.pyo
 520${PYSITELIB}/pygments/lexers/phix.py
 521${PYSITELIB}/pygments/lexers/phix.pyc
 522${PYSITELIB}/pygments/lexers/phix.pyo
505${PYSITELIB}/pygments/lexers/php.py 523${PYSITELIB}/pygments/lexers/php.py
506${PYSITELIB}/pygments/lexers/php.pyc 524${PYSITELIB}/pygments/lexers/php.pyc
507${PYSITELIB}/pygments/lexers/php.pyo 525${PYSITELIB}/pygments/lexers/php.pyo
508${PYSITELIB}/pygments/lexers/pointless.py 526${PYSITELIB}/pygments/lexers/pointless.py
509${PYSITELIB}/pygments/lexers/pointless.pyc 527${PYSITELIB}/pygments/lexers/pointless.pyc
510${PYSITELIB}/pygments/lexers/pointless.pyo 528${PYSITELIB}/pygments/lexers/pointless.pyo
511${PYSITELIB}/pygments/lexers/pony.py 529${PYSITELIB}/pygments/lexers/pony.py
512${PYSITELIB}/pygments/lexers/pony.pyc 530${PYSITELIB}/pygments/lexers/pony.pyc
513${PYSITELIB}/pygments/lexers/pony.pyo 531${PYSITELIB}/pygments/lexers/pony.pyo
514${PYSITELIB}/pygments/lexers/praat.py 532${PYSITELIB}/pygments/lexers/praat.py
515${PYSITELIB}/pygments/lexers/praat.pyc 533${PYSITELIB}/pygments/lexers/praat.pyc
516${PYSITELIB}/pygments/lexers/praat.pyo 534${PYSITELIB}/pygments/lexers/praat.pyo
517${PYSITELIB}/pygments/lexers/procfile.py 535${PYSITELIB}/pygments/lexers/procfile.py
@@ -651,26 +669,29 @@ ${PYSITELIB}/pygments/lexers/text.pyc @@ -651,26 +669,29 @@ ${PYSITELIB}/pygments/lexers/text.pyc
651${PYSITELIB}/pygments/lexers/text.pyo 669${PYSITELIB}/pygments/lexers/text.pyo
652${PYSITELIB}/pygments/lexers/textedit.py 670${PYSITELIB}/pygments/lexers/textedit.py
653${PYSITELIB}/pygments/lexers/textedit.pyc 671${PYSITELIB}/pygments/lexers/textedit.pyc
654${PYSITELIB}/pygments/lexers/textedit.pyo 672${PYSITELIB}/pygments/lexers/textedit.pyo
655${PYSITELIB}/pygments/lexers/textfmts.py 673${PYSITELIB}/pygments/lexers/textfmts.py
656${PYSITELIB}/pygments/lexers/textfmts.pyc 674${PYSITELIB}/pygments/lexers/textfmts.pyc
657${PYSITELIB}/pygments/lexers/textfmts.pyo 675${PYSITELIB}/pygments/lexers/textfmts.pyo
658${PYSITELIB}/pygments/lexers/theorem.py 676${PYSITELIB}/pygments/lexers/theorem.py
659${PYSITELIB}/pygments/lexers/theorem.pyc 677${PYSITELIB}/pygments/lexers/theorem.pyc
660${PYSITELIB}/pygments/lexers/theorem.pyo 678${PYSITELIB}/pygments/lexers/theorem.pyo
661${PYSITELIB}/pygments/lexers/thingsdb.py 679${PYSITELIB}/pygments/lexers/thingsdb.py
662${PYSITELIB}/pygments/lexers/thingsdb.pyc 680${PYSITELIB}/pygments/lexers/thingsdb.pyc
663${PYSITELIB}/pygments/lexers/thingsdb.pyo 681${PYSITELIB}/pygments/lexers/thingsdb.pyo
 682${PYSITELIB}/pygments/lexers/tlb.py
 683${PYSITELIB}/pygments/lexers/tlb.pyc
 684${PYSITELIB}/pygments/lexers/tlb.pyo
664${PYSITELIB}/pygments/lexers/tnt.py 685${PYSITELIB}/pygments/lexers/tnt.py
665${PYSITELIB}/pygments/lexers/tnt.pyc 686${PYSITELIB}/pygments/lexers/tnt.pyc
666${PYSITELIB}/pygments/lexers/tnt.pyo 687${PYSITELIB}/pygments/lexers/tnt.pyo
667${PYSITELIB}/pygments/lexers/trafficscript.py 688${PYSITELIB}/pygments/lexers/trafficscript.py
668${PYSITELIB}/pygments/lexers/trafficscript.pyc 689${PYSITELIB}/pygments/lexers/trafficscript.pyc
669${PYSITELIB}/pygments/lexers/trafficscript.pyo 690${PYSITELIB}/pygments/lexers/trafficscript.pyo
670${PYSITELIB}/pygments/lexers/typoscript.py 691${PYSITELIB}/pygments/lexers/typoscript.py
671${PYSITELIB}/pygments/lexers/typoscript.pyc 692${PYSITELIB}/pygments/lexers/typoscript.pyc
672${PYSITELIB}/pygments/lexers/typoscript.pyo 693${PYSITELIB}/pygments/lexers/typoscript.pyo
673${PYSITELIB}/pygments/lexers/ul4.py 694${PYSITELIB}/pygments/lexers/ul4.py
674${PYSITELIB}/pygments/lexers/ul4.pyc 695${PYSITELIB}/pygments/lexers/ul4.pyc
675${PYSITELIB}/pygments/lexers/ul4.pyo 696${PYSITELIB}/pygments/lexers/ul4.pyo
676${PYSITELIB}/pygments/lexers/unicon.py 697${PYSITELIB}/pygments/lexers/unicon.py
@@ -693,26 +714,32 @@ ${PYSITELIB}/pygments/lexers/web.pyc @@ -693,26 +714,32 @@ ${PYSITELIB}/pygments/lexers/web.pyc
693${PYSITELIB}/pygments/lexers/web.pyo 714${PYSITELIB}/pygments/lexers/web.pyo
694${PYSITELIB}/pygments/lexers/webassembly.py 715${PYSITELIB}/pygments/lexers/webassembly.py
695${PYSITELIB}/pygments/lexers/webassembly.pyc 716${PYSITELIB}/pygments/lexers/webassembly.pyc
696${PYSITELIB}/pygments/lexers/webassembly.pyo 717${PYSITELIB}/pygments/lexers/webassembly.pyo
697${PYSITELIB}/pygments/lexers/webidl.py 718${PYSITELIB}/pygments/lexers/webidl.py
698${PYSITELIB}/pygments/lexers/webidl.pyc 719${PYSITELIB}/pygments/lexers/webidl.pyc
699${PYSITELIB}/pygments/lexers/webidl.pyo 720${PYSITELIB}/pygments/lexers/webidl.pyo
700${PYSITELIB}/pygments/lexers/webmisc.py 721${PYSITELIB}/pygments/lexers/webmisc.py
701${PYSITELIB}/pygments/lexers/webmisc.pyc 722${PYSITELIB}/pygments/lexers/webmisc.pyc
702${PYSITELIB}/pygments/lexers/webmisc.pyo 723${PYSITELIB}/pygments/lexers/webmisc.pyo
703${PYSITELIB}/pygments/lexers/whiley.py 724${PYSITELIB}/pygments/lexers/whiley.py
704${PYSITELIB}/pygments/lexers/whiley.pyc 725${PYSITELIB}/pygments/lexers/whiley.pyc
705${PYSITELIB}/pygments/lexers/whiley.pyo 726${PYSITELIB}/pygments/lexers/whiley.pyo
 727${PYSITELIB}/pygments/lexers/wowtoc.py
 728${PYSITELIB}/pygments/lexers/wowtoc.pyc
 729${PYSITELIB}/pygments/lexers/wowtoc.pyo
 730${PYSITELIB}/pygments/lexers/wren.py
 731${PYSITELIB}/pygments/lexers/wren.pyc
 732${PYSITELIB}/pygments/lexers/wren.pyo
706${PYSITELIB}/pygments/lexers/x10.py 733${PYSITELIB}/pygments/lexers/x10.py
707${PYSITELIB}/pygments/lexers/x10.pyc 734${PYSITELIB}/pygments/lexers/x10.pyc
708${PYSITELIB}/pygments/lexers/x10.pyo 735${PYSITELIB}/pygments/lexers/x10.pyo
709${PYSITELIB}/pygments/lexers/xorg.py 736${PYSITELIB}/pygments/lexers/xorg.py
710${PYSITELIB}/pygments/lexers/xorg.pyc 737${PYSITELIB}/pygments/lexers/xorg.pyc
711${PYSITELIB}/pygments/lexers/xorg.pyo 738${PYSITELIB}/pygments/lexers/xorg.pyo
712${PYSITELIB}/pygments/lexers/yang.py 739${PYSITELIB}/pygments/lexers/yang.py
713${PYSITELIB}/pygments/lexers/yang.pyc 740${PYSITELIB}/pygments/lexers/yang.pyc
714${PYSITELIB}/pygments/lexers/yang.pyo 741${PYSITELIB}/pygments/lexers/yang.pyo
715${PYSITELIB}/pygments/lexers/zig.py 742${PYSITELIB}/pygments/lexers/zig.py
716${PYSITELIB}/pygments/lexers/zig.pyc 743${PYSITELIB}/pygments/lexers/zig.pyc
717${PYSITELIB}/pygments/lexers/zig.pyo 744${PYSITELIB}/pygments/lexers/zig.pyo
718${PYSITELIB}/pygments/modeline.py 745${PYSITELIB}/pygments/modeline.py

cvs diff -r1.27 -r1.28 pkgsrc/textproc/py-pygments/distinfo (expand / switch to unified diff)

--- pkgsrc/textproc/py-pygments/distinfo 2022/08/16 14:01:18 1.27
+++ pkgsrc/textproc/py-pygments/distinfo 2023/01/24 12:50:34 1.28
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.27 2022/08/16 14:01:18 adam Exp $ 1$NetBSD: distinfo,v 1.28 2023/01/24 12:50:34 adam Exp $
2 2
3BLAKE2s (Pygments-2.13.0.tar.gz) = 910784f6e02dfb96265984ce4493c34e3941a5a92139134b2623faf4ce1ae259 3BLAKE2s (Pygments-2.14.0.tar.gz) = bd9212b4c7a8b8cad7f386422eb39ec7685e5568be9f79d534f84810438cdf00
4SHA512 (Pygments-2.13.0.tar.gz) = d492acf112423fa997f35d6d3cae18b89bf11619c696879c6df49697dca933b6d54d7cb22907e06812e0a562f03e8ed5ccefde5247bc1c51cf2d3d69e7d65422 4SHA512 (Pygments-2.14.0.tar.gz) = 51416a8e2a8d0288cbbf6fd81e6870ffe9d999da255c43d0f870eb5cb4d01660416d136d39fad38b76c4bace3c3aa648fb306519e85e340545a87fc657aaeb15
5Size (Pygments-2.13.0.tar.gz) = 4324285 bytes 5Size (Pygments-2.14.0.tar.gz) = 4434562 bytes