summaryrefslogtreecommitdiff
path: root/textproc/py-pygments
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2014-11-19 12:57:55 +0000
committerwiz <wiz@pkgsrc.org>2014-11-19 12:57:55 +0000
commitd8d222eea964e83e9fe352631a65efde1c5085c8 (patch)
tree261f03b0ede56dcca813b2e24b5eef6c585fdb0e /textproc/py-pygments
parent7eaaed77c2d00efa78b309f11938cd7114204854 (diff)
downloadpkgsrc-d8d222eea964e83e9fe352631a65efde1c5085c8.tar.gz
Update to 2.0:
Version 2.0 ----------- (released Nov 9, 2014) - Default lexer encoding is now "guess", i.e. UTF-8 / Locale / Latin1 is tried in that order. - Major update to Swift lexer (pull request #410). - Multiple fixes to lexer guessing in conflicting cases: * recognize HTML5 by doctype * recognize XML by XML declaration * don't recognize C/C++ as SystemVerilog - Simplified regexes and builtin lists. Version 2.0rc1 -------------- (released Oct 16, 2014) - Dropped Python 2.4 and 2.5 compatibility. This is in favor of single-source compatibility between Python 2.6, 2.7 and 3.3+. - New website and documentation based on Sphinx (finally!) - Lexers added: * APL (#969) * Agda and Literate Agda (pull request #203) * Alloy (pull request #355) * AmbientTalk * BlitzBasic (pull request #197) * ChaiScript (pull request #24) * Chapel (pull request #256) * Cirru (pull request #275) * Clay (pull request #184) * ColdFusion CFC (pull request #283) * Cryptol and Literate Cryptol (pull request #344) * Cypher (pull request #257) * Docker config files * EBNF (pull request #193) * Eiffel (pull request #273) * GAP (pull request #311) * Golo (pull request #309) * Handlebars (pull request #186) * Hy (pull request #238) * Idris and Literate Idris (pull request #210) * Igor Pro (pull request #172) * Inform 6/7 (pull request #281) * Intel objdump (pull request #279) * Isabelle (pull request #386) * Jasmin (pull request #349) * JSON-LD (pull request #289) * Kal (pull request #233) * Lean (pull request #399) * LSL (pull request #296) * Limbo (pull request #291) * Liquid (#977) * MQL (pull request #285) * MaskJS (pull request #280) * Mozilla preprocessors * Mathematica (pull request #245) * NesC (pull request #166) * Nit (pull request #375) * Nix (pull request #267) * Pan * Pawn (pull request #211) * Perl 6 (pull request #181) * Pig (pull request #304) * Pike (pull request #237) * QBasic (pull request #182) * Red (pull request #341) * ResourceBundle (#1038) * Rexx (pull request #199) * Rql (pull request #251) * Rsl * SPARQL (pull request #78) * Slim (pull request #366) * Swift (pull request #371) * Swig (pull request #168) * TADS 3 (pull request #407) * Todo.txt todo lists * Twig (pull request #404) - Added a helper to "optimize" regular expressions that match one of many literal words; this can save 20% and more lexing time with lexers that highlight many keywords or builtins. - New styles: "xcode" and "igor", similar to the default highlighting of the respective IDEs. - The command-line "pygmentize" tool now tries a little harder to find the correct encoding for files and the terminal (#979). - Added "inencoding" option for lexers to override "encoding" analogous to "outencoding" (#800). - Added line-by-line "streaming" mode for pygmentize with the "-s" option. (pull request #165) Only fully works for lexers that have no constructs spanning lines! - Added an "envname" option to the LaTeX formatter to select a replacement verbatim environment (pull request #235). - Updated the Makefile lexer to yield a little more useful highlighting. - Lexer aliases passed to ``get_lexer_by_name()`` are now case-insensitive. - File name matching in lexers and formatters will now use a regex cache for speed (pull request #205). - Pygments will now recognize "vim" modelines when guessing the lexer for a file based on content (pull request #118). - Major restructure of the ``pygments.lexers`` module namespace. There are now many more modules with less lexers per module. Old modules are still around and re-export the lexers they previously contained. - The NameHighlightFilter now works with any Name.* token type (#790). - Python 3 lexer: add new exceptions from PEP 3151. - Opa lexer: add new keywords (pull request #170). - Julia lexer: add keywords and underscore-separated number literals (pull request #176). - Lasso lexer: fix method highlighting, update builtins. Fix guessing so that plain XML isn't always taken as Lasso (pull request #163). - Objective C/C++ lexers: allow "@" prefixing any expression (#871). - Ruby lexer: fix lexing of Name::Space tokens (#860) and of symbols in hashes (#873). - Stan lexer: update for version 2.4.0 of the language (pull request #162, PR#255, PR#377). - JavaScript lexer: add the "yield" keyword (pull request #196). - HTTP lexer: support for PATCH method (pull request #190). - Koka lexer: update to newest language spec (pull request #201). - Haxe lexer: rewrite and support for Haxe 3 (pull request #174). - Prolog lexer: add different kinds of numeric literals (#864). - F# lexer: rewrite with newest spec for F# 3.0 (#842), fix a bug with dotted chains (#948). - Kotlin lexer: general update (pull request #271). - Rebol lexer: fix comment detection and analyse_text (pull request #261). - LLVM lexer: update keywords to v3.4 (pull request #258). - PHP lexer: add new keywords and binary literals (pull request #222). - external/markdown-processor.py updated to newest python-markdown (pull request #221). - CSS lexer: some highlighting order fixes (pull request #231). - Ceylon lexer: fix parsing of nested multiline comments (#915). - C family lexers: fix parsing of indented preprocessor directives (#944). - Rust lexer: update to 0.9 language version (pull request #270, PR#388). - Elixir lexer: update to 0.15 language version (pull request #392). - Fix swallowing incomplete tracebacks in Python console lexer (#874).
Diffstat (limited to 'textproc/py-pygments')
-rw-r--r--textproc/py-pygments/Makefile4
-rw-r--r--textproc/py-pygments/PLIST302
-rw-r--r--textproc/py-pygments/distinfo8
3 files changed, 280 insertions, 34 deletions
diff --git a/textproc/py-pygments/Makefile b/textproc/py-pygments/Makefile
index 02a5949f20c..7604e0ab55b 100644
--- a/textproc/py-pygments/Makefile
+++ b/textproc/py-pygments/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.14 2014/01/25 10:30:25 wiz Exp $
+# $NetBSD: Makefile,v 1.15 2014/11/19 12:57:55 wiz Exp $
-DISTNAME= Pygments-1.6
+DISTNAME= Pygments-2.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl}
CATEGORIES= textproc python
MASTER_SITES= http://pypi.python.org/packages/source/P/Pygments/
diff --git a/textproc/py-pygments/PLIST b/textproc/py-pygments/PLIST
index 54972a6dab9..44601eabfcd 100644
--- a/textproc/py-pygments/PLIST
+++ b/textproc/py-pygments/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.9 2013/03/03 07:31:30 obache Exp $
+@comment $NetBSD: PLIST,v 1.10 2014/11/19 12:57:55 wiz Exp $
bin/pygmentize
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
@@ -63,105 +63,339 @@ ${PYSITELIB}/pygments/lexer.pyo
${PYSITELIB}/pygments/lexers/__init__.py
${PYSITELIB}/pygments/lexers/__init__.pyc
${PYSITELIB}/pygments/lexers/__init__.pyo
-${PYSITELIB}/pygments/lexers/_asybuiltins.py
-${PYSITELIB}/pygments/lexers/_asybuiltins.pyc
-${PYSITELIB}/pygments/lexers/_asybuiltins.pyo
-${PYSITELIB}/pygments/lexers/_clbuiltins.py
-${PYSITELIB}/pygments/lexers/_clbuiltins.pyc
-${PYSITELIB}/pygments/lexers/_clbuiltins.pyo
-${PYSITELIB}/pygments/lexers/_lassobuiltins.py
-${PYSITELIB}/pygments/lexers/_lassobuiltins.pyc
-${PYSITELIB}/pygments/lexers/_lassobuiltins.pyo
-${PYSITELIB}/pygments/lexers/_luabuiltins.py
-${PYSITELIB}/pygments/lexers/_luabuiltins.pyc
-${PYSITELIB}/pygments/lexers/_luabuiltins.pyo
+${PYSITELIB}/pygments/lexers/_asy_builtins.py
+${PYSITELIB}/pygments/lexers/_asy_builtins.pyc
+${PYSITELIB}/pygments/lexers/_asy_builtins.pyo
+${PYSITELIB}/pygments/lexers/_cl_builtins.py
+${PYSITELIB}/pygments/lexers/_cl_builtins.pyc
+${PYSITELIB}/pygments/lexers/_cl_builtins.pyo
+${PYSITELIB}/pygments/lexers/_cocoa_builtins.py
+${PYSITELIB}/pygments/lexers/_cocoa_builtins.pyc
+${PYSITELIB}/pygments/lexers/_cocoa_builtins.pyo
+${PYSITELIB}/pygments/lexers/_lasso_builtins.py
+${PYSITELIB}/pygments/lexers/_lasso_builtins.pyc
+${PYSITELIB}/pygments/lexers/_lasso_builtins.pyo
+${PYSITELIB}/pygments/lexers/_lua_builtins.py
+${PYSITELIB}/pygments/lexers/_lua_builtins.pyc
+${PYSITELIB}/pygments/lexers/_lua_builtins.pyo
${PYSITELIB}/pygments/lexers/_mapping.py
${PYSITELIB}/pygments/lexers/_mapping.pyc
${PYSITELIB}/pygments/lexers/_mapping.pyo
-${PYSITELIB}/pygments/lexers/_openedgebuiltins.py
-${PYSITELIB}/pygments/lexers/_openedgebuiltins.pyc
-${PYSITELIB}/pygments/lexers/_openedgebuiltins.pyo
-${PYSITELIB}/pygments/lexers/_phpbuiltins.py
-${PYSITELIB}/pygments/lexers/_phpbuiltins.pyc
-${PYSITELIB}/pygments/lexers/_phpbuiltins.pyo
+${PYSITELIB}/pygments/lexers/_mql_builtins.py
+${PYSITELIB}/pygments/lexers/_mql_builtins.pyc
+${PYSITELIB}/pygments/lexers/_mql_builtins.pyo
+${PYSITELIB}/pygments/lexers/_openedge_builtins.py
+${PYSITELIB}/pygments/lexers/_openedge_builtins.pyc
+${PYSITELIB}/pygments/lexers/_openedge_builtins.pyo
+${PYSITELIB}/pygments/lexers/_php_builtins.py
+${PYSITELIB}/pygments/lexers/_php_builtins.pyc
+${PYSITELIB}/pygments/lexers/_php_builtins.pyo
${PYSITELIB}/pygments/lexers/_postgres_builtins.py
${PYSITELIB}/pygments/lexers/_postgres_builtins.pyc
${PYSITELIB}/pygments/lexers/_postgres_builtins.pyo
-${PYSITELIB}/pygments/lexers/_robotframeworklexer.py
-${PYSITELIB}/pygments/lexers/_robotframeworklexer.pyc
-${PYSITELIB}/pygments/lexers/_robotframeworklexer.pyo
${PYSITELIB}/pygments/lexers/_scilab_builtins.py
${PYSITELIB}/pygments/lexers/_scilab_builtins.pyc
${PYSITELIB}/pygments/lexers/_scilab_builtins.pyo
-${PYSITELIB}/pygments/lexers/_sourcemodbuiltins.py
-${PYSITELIB}/pygments/lexers/_sourcemodbuiltins.pyc
-${PYSITELIB}/pygments/lexers/_sourcemodbuiltins.pyo
+${PYSITELIB}/pygments/lexers/_sourcemod_builtins.py
+${PYSITELIB}/pygments/lexers/_sourcemod_builtins.pyc
+${PYSITELIB}/pygments/lexers/_sourcemod_builtins.pyo
${PYSITELIB}/pygments/lexers/_stan_builtins.py
${PYSITELIB}/pygments/lexers/_stan_builtins.pyc
${PYSITELIB}/pygments/lexers/_stan_builtins.pyo
-${PYSITELIB}/pygments/lexers/_vimbuiltins.py
-${PYSITELIB}/pygments/lexers/_vimbuiltins.pyc
-${PYSITELIB}/pygments/lexers/_vimbuiltins.pyo
+${PYSITELIB}/pygments/lexers/_vim_builtins.py
+${PYSITELIB}/pygments/lexers/_vim_builtins.pyc
+${PYSITELIB}/pygments/lexers/_vim_builtins.pyo
+${PYSITELIB}/pygments/lexers/actionscript.py
+${PYSITELIB}/pygments/lexers/actionscript.pyc
+${PYSITELIB}/pygments/lexers/actionscript.pyo
${PYSITELIB}/pygments/lexers/agile.py
${PYSITELIB}/pygments/lexers/agile.pyc
${PYSITELIB}/pygments/lexers/agile.pyo
+${PYSITELIB}/pygments/lexers/algebra.py
+${PYSITELIB}/pygments/lexers/algebra.pyc
+${PYSITELIB}/pygments/lexers/algebra.pyo
+${PYSITELIB}/pygments/lexers/ambient.py
+${PYSITELIB}/pygments/lexers/ambient.pyc
+${PYSITELIB}/pygments/lexers/ambient.pyo
+${PYSITELIB}/pygments/lexers/apl.py
+${PYSITELIB}/pygments/lexers/apl.pyc
+${PYSITELIB}/pygments/lexers/apl.pyo
${PYSITELIB}/pygments/lexers/asm.py
${PYSITELIB}/pygments/lexers/asm.pyc
${PYSITELIB}/pygments/lexers/asm.pyo
+${PYSITELIB}/pygments/lexers/automation.py
+${PYSITELIB}/pygments/lexers/automation.pyc
+${PYSITELIB}/pygments/lexers/automation.pyo
+${PYSITELIB}/pygments/lexers/basic.py
+${PYSITELIB}/pygments/lexers/basic.pyc
+${PYSITELIB}/pygments/lexers/basic.pyo
+${PYSITELIB}/pygments/lexers/business.py
+${PYSITELIB}/pygments/lexers/business.pyc
+${PYSITELIB}/pygments/lexers/business.pyo
+${PYSITELIB}/pygments/lexers/c_cpp.py
+${PYSITELIB}/pygments/lexers/c_cpp.pyc
+${PYSITELIB}/pygments/lexers/c_cpp.pyo
+${PYSITELIB}/pygments/lexers/c_like.py
+${PYSITELIB}/pygments/lexers/c_like.pyc
+${PYSITELIB}/pygments/lexers/c_like.pyo
+${PYSITELIB}/pygments/lexers/chapel.py
+${PYSITELIB}/pygments/lexers/chapel.pyc
+${PYSITELIB}/pygments/lexers/chapel.pyo
${PYSITELIB}/pygments/lexers/compiled.py
${PYSITELIB}/pygments/lexers/compiled.pyc
${PYSITELIB}/pygments/lexers/compiled.pyo
+${PYSITELIB}/pygments/lexers/configs.py
+${PYSITELIB}/pygments/lexers/configs.pyc
+${PYSITELIB}/pygments/lexers/configs.pyo
+${PYSITELIB}/pygments/lexers/console.py
+${PYSITELIB}/pygments/lexers/console.pyc
+${PYSITELIB}/pygments/lexers/console.pyo
+${PYSITELIB}/pygments/lexers/css.py
+${PYSITELIB}/pygments/lexers/css.pyc
+${PYSITELIB}/pygments/lexers/css.pyo
+${PYSITELIB}/pygments/lexers/d.py
+${PYSITELIB}/pygments/lexers/d.pyc
+${PYSITELIB}/pygments/lexers/d.pyo
${PYSITELIB}/pygments/lexers/dalvik.py
${PYSITELIB}/pygments/lexers/dalvik.pyc
${PYSITELIB}/pygments/lexers/dalvik.pyo
+${PYSITELIB}/pygments/lexers/data.py
+${PYSITELIB}/pygments/lexers/data.pyc
+${PYSITELIB}/pygments/lexers/data.pyo
+${PYSITELIB}/pygments/lexers/diff.py
+${PYSITELIB}/pygments/lexers/diff.pyc
+${PYSITELIB}/pygments/lexers/diff.pyo
${PYSITELIB}/pygments/lexers/dotnet.py
${PYSITELIB}/pygments/lexers/dotnet.pyc
${PYSITELIB}/pygments/lexers/dotnet.pyo
+${PYSITELIB}/pygments/lexers/dsls.py
+${PYSITELIB}/pygments/lexers/dsls.pyc
+${PYSITELIB}/pygments/lexers/dsls.pyo
+${PYSITELIB}/pygments/lexers/dylan.py
+${PYSITELIB}/pygments/lexers/dylan.pyc
+${PYSITELIB}/pygments/lexers/dylan.pyo
+${PYSITELIB}/pygments/lexers/ecl.py
+${PYSITELIB}/pygments/lexers/ecl.pyc
+${PYSITELIB}/pygments/lexers/ecl.pyo
+${PYSITELIB}/pygments/lexers/eiffel.py
+${PYSITELIB}/pygments/lexers/eiffel.pyc
+${PYSITELIB}/pygments/lexers/eiffel.pyo
+${PYSITELIB}/pygments/lexers/erlang.py
+${PYSITELIB}/pygments/lexers/erlang.pyc
+${PYSITELIB}/pygments/lexers/erlang.pyo
+${PYSITELIB}/pygments/lexers/esoteric.py
+${PYSITELIB}/pygments/lexers/esoteric.pyc
+${PYSITELIB}/pygments/lexers/esoteric.pyo
+${PYSITELIB}/pygments/lexers/factor.py
+${PYSITELIB}/pygments/lexers/factor.pyc
+${PYSITELIB}/pygments/lexers/factor.pyo
+${PYSITELIB}/pygments/lexers/fantom.py
+${PYSITELIB}/pygments/lexers/fantom.pyc
+${PYSITELIB}/pygments/lexers/fantom.pyo
+${PYSITELIB}/pygments/lexers/felix.py
+${PYSITELIB}/pygments/lexers/felix.pyc
+${PYSITELIB}/pygments/lexers/felix.pyo
+${PYSITELIB}/pygments/lexers/fortran.py
+${PYSITELIB}/pygments/lexers/fortran.pyc
+${PYSITELIB}/pygments/lexers/fortran.pyo
${PYSITELIB}/pygments/lexers/foxpro.py
${PYSITELIB}/pygments/lexers/foxpro.pyc
${PYSITELIB}/pygments/lexers/foxpro.pyo
${PYSITELIB}/pygments/lexers/functional.py
${PYSITELIB}/pygments/lexers/functional.pyc
${PYSITELIB}/pygments/lexers/functional.pyo
+${PYSITELIB}/pygments/lexers/go.py
+${PYSITELIB}/pygments/lexers/go.pyc
+${PYSITELIB}/pygments/lexers/go.pyo
+${PYSITELIB}/pygments/lexers/graph.py
+${PYSITELIB}/pygments/lexers/graph.pyc
+${PYSITELIB}/pygments/lexers/graph.pyo
+${PYSITELIB}/pygments/lexers/graphics.py
+${PYSITELIB}/pygments/lexers/graphics.pyc
+${PYSITELIB}/pygments/lexers/graphics.pyo
+${PYSITELIB}/pygments/lexers/haskell.py
+${PYSITELIB}/pygments/lexers/haskell.pyc
+${PYSITELIB}/pygments/lexers/haskell.pyo
+${PYSITELIB}/pygments/lexers/haxe.py
+${PYSITELIB}/pygments/lexers/haxe.pyc
+${PYSITELIB}/pygments/lexers/haxe.pyo
${PYSITELIB}/pygments/lexers/hdl.py
${PYSITELIB}/pygments/lexers/hdl.pyc
${PYSITELIB}/pygments/lexers/hdl.pyo
+${PYSITELIB}/pygments/lexers/html.py
+${PYSITELIB}/pygments/lexers/html.pyc
+${PYSITELIB}/pygments/lexers/html.pyo
+${PYSITELIB}/pygments/lexers/idl.py
+${PYSITELIB}/pygments/lexers/idl.pyc
+${PYSITELIB}/pygments/lexers/idl.pyo
+${PYSITELIB}/pygments/lexers/igor.py
+${PYSITELIB}/pygments/lexers/igor.pyc
+${PYSITELIB}/pygments/lexers/igor.pyo
+${PYSITELIB}/pygments/lexers/inferno.py
+${PYSITELIB}/pygments/lexers/inferno.pyc
+${PYSITELIB}/pygments/lexers/inferno.pyo
+${PYSITELIB}/pygments/lexers/installers.py
+${PYSITELIB}/pygments/lexers/installers.pyc
+${PYSITELIB}/pygments/lexers/installers.pyo
+${PYSITELIB}/pygments/lexers/int_fiction.py
+${PYSITELIB}/pygments/lexers/int_fiction.pyc
+${PYSITELIB}/pygments/lexers/int_fiction.pyo
+${PYSITELIB}/pygments/lexers/iolang.py
+${PYSITELIB}/pygments/lexers/iolang.pyc
+${PYSITELIB}/pygments/lexers/iolang.pyo
+${PYSITELIB}/pygments/lexers/javascript.py
+${PYSITELIB}/pygments/lexers/javascript.pyc
+${PYSITELIB}/pygments/lexers/javascript.pyo
+${PYSITELIB}/pygments/lexers/julia.py
+${PYSITELIB}/pygments/lexers/julia.pyc
+${PYSITELIB}/pygments/lexers/julia.pyo
${PYSITELIB}/pygments/lexers/jvm.py
${PYSITELIB}/pygments/lexers/jvm.pyc
${PYSITELIB}/pygments/lexers/jvm.pyo
+${PYSITELIB}/pygments/lexers/lisp.py
+${PYSITELIB}/pygments/lexers/lisp.pyc
+${PYSITELIB}/pygments/lexers/lisp.pyo
+${PYSITELIB}/pygments/lexers/make.py
+${PYSITELIB}/pygments/lexers/make.pyc
+${PYSITELIB}/pygments/lexers/make.pyo
+${PYSITELIB}/pygments/lexers/markup.py
+${PYSITELIB}/pygments/lexers/markup.pyc
+${PYSITELIB}/pygments/lexers/markup.pyo
${PYSITELIB}/pygments/lexers/math.py
${PYSITELIB}/pygments/lexers/math.pyc
${PYSITELIB}/pygments/lexers/math.pyo
+${PYSITELIB}/pygments/lexers/matlab.py
+${PYSITELIB}/pygments/lexers/matlab.pyc
+${PYSITELIB}/pygments/lexers/matlab.pyo
+${PYSITELIB}/pygments/lexers/ml.py
+${PYSITELIB}/pygments/lexers/ml.pyc
+${PYSITELIB}/pygments/lexers/ml.pyo
+${PYSITELIB}/pygments/lexers/modeling.py
+${PYSITELIB}/pygments/lexers/modeling.pyc
+${PYSITELIB}/pygments/lexers/modeling.pyo
+${PYSITELIB}/pygments/lexers/nimrod.py
+${PYSITELIB}/pygments/lexers/nimrod.pyc
+${PYSITELIB}/pygments/lexers/nimrod.pyo
+${PYSITELIB}/pygments/lexers/nit.py
+${PYSITELIB}/pygments/lexers/nit.pyc
+${PYSITELIB}/pygments/lexers/nit.pyo
+${PYSITELIB}/pygments/lexers/nix.py
+${PYSITELIB}/pygments/lexers/nix.pyc
+${PYSITELIB}/pygments/lexers/nix.pyo
+${PYSITELIB}/pygments/lexers/objective.py
+${PYSITELIB}/pygments/lexers/objective.pyc
+${PYSITELIB}/pygments/lexers/objective.pyo
+${PYSITELIB}/pygments/lexers/ooc.py
+${PYSITELIB}/pygments/lexers/ooc.pyc
+${PYSITELIB}/pygments/lexers/ooc.pyo
${PYSITELIB}/pygments/lexers/other.py
${PYSITELIB}/pygments/lexers/other.pyc
${PYSITELIB}/pygments/lexers/other.pyo
${PYSITELIB}/pygments/lexers/parsers.py
${PYSITELIB}/pygments/lexers/parsers.pyc
${PYSITELIB}/pygments/lexers/parsers.pyo
+${PYSITELIB}/pygments/lexers/pascal.py
+${PYSITELIB}/pygments/lexers/pascal.pyc
+${PYSITELIB}/pygments/lexers/pascal.pyo
+${PYSITELIB}/pygments/lexers/pawn.py
+${PYSITELIB}/pygments/lexers/pawn.pyc
+${PYSITELIB}/pygments/lexers/pawn.pyo
+${PYSITELIB}/pygments/lexers/perl.py
+${PYSITELIB}/pygments/lexers/perl.pyc
+${PYSITELIB}/pygments/lexers/perl.pyo
+${PYSITELIB}/pygments/lexers/php.py
+${PYSITELIB}/pygments/lexers/php.pyc
+${PYSITELIB}/pygments/lexers/php.pyo
+${PYSITELIB}/pygments/lexers/prolog.py
+${PYSITELIB}/pygments/lexers/prolog.pyc
+${PYSITELIB}/pygments/lexers/prolog.pyo
+${PYSITELIB}/pygments/lexers/python.py
+${PYSITELIB}/pygments/lexers/python.pyc
+${PYSITELIB}/pygments/lexers/python.pyo
+${PYSITELIB}/pygments/lexers/r.py
+${PYSITELIB}/pygments/lexers/r.pyc
+${PYSITELIB}/pygments/lexers/r.pyo
+${PYSITELIB}/pygments/lexers/rdf.py
+${PYSITELIB}/pygments/lexers/rdf.pyc
+${PYSITELIB}/pygments/lexers/rdf.pyo
+${PYSITELIB}/pygments/lexers/rebol.py
+${PYSITELIB}/pygments/lexers/rebol.pyc
+${PYSITELIB}/pygments/lexers/rebol.pyo
+${PYSITELIB}/pygments/lexers/resource.py
+${PYSITELIB}/pygments/lexers/resource.pyc
+${PYSITELIB}/pygments/lexers/resource.pyo
+${PYSITELIB}/pygments/lexers/robotframework.py
+${PYSITELIB}/pygments/lexers/robotframework.pyc
+${PYSITELIB}/pygments/lexers/robotframework.pyo
+${PYSITELIB}/pygments/lexers/ruby.py
+${PYSITELIB}/pygments/lexers/ruby.pyc
+${PYSITELIB}/pygments/lexers/ruby.pyo
+${PYSITELIB}/pygments/lexers/rust.py
+${PYSITELIB}/pygments/lexers/rust.pyc
+${PYSITELIB}/pygments/lexers/rust.pyo
+${PYSITELIB}/pygments/lexers/scripting.py
+${PYSITELIB}/pygments/lexers/scripting.pyc
+${PYSITELIB}/pygments/lexers/scripting.pyo
${PYSITELIB}/pygments/lexers/shell.py
${PYSITELIB}/pygments/lexers/shell.pyc
${PYSITELIB}/pygments/lexers/shell.pyo
+${PYSITELIB}/pygments/lexers/smalltalk.py
+${PYSITELIB}/pygments/lexers/smalltalk.pyc
+${PYSITELIB}/pygments/lexers/smalltalk.pyo
+${PYSITELIB}/pygments/lexers/snobol.py
+${PYSITELIB}/pygments/lexers/snobol.pyc
+${PYSITELIB}/pygments/lexers/snobol.pyo
${PYSITELIB}/pygments/lexers/special.py
${PYSITELIB}/pygments/lexers/special.pyc
${PYSITELIB}/pygments/lexers/special.pyo
${PYSITELIB}/pygments/lexers/sql.py
${PYSITELIB}/pygments/lexers/sql.pyc
${PYSITELIB}/pygments/lexers/sql.pyo
+${PYSITELIB}/pygments/lexers/tcl.py
+${PYSITELIB}/pygments/lexers/tcl.pyc
+${PYSITELIB}/pygments/lexers/tcl.pyo
${PYSITELIB}/pygments/lexers/templates.py
${PYSITELIB}/pygments/lexers/templates.pyc
${PYSITELIB}/pygments/lexers/templates.pyo
+${PYSITELIB}/pygments/lexers/testing.py
+${PYSITELIB}/pygments/lexers/testing.pyc
+${PYSITELIB}/pygments/lexers/testing.pyo
${PYSITELIB}/pygments/lexers/text.py
${PYSITELIB}/pygments/lexers/text.pyc
${PYSITELIB}/pygments/lexers/text.pyo
+${PYSITELIB}/pygments/lexers/textedit.py
+${PYSITELIB}/pygments/lexers/textedit.pyc
+${PYSITELIB}/pygments/lexers/textedit.pyo
+${PYSITELIB}/pygments/lexers/textfmts.py
+${PYSITELIB}/pygments/lexers/textfmts.pyc
+${PYSITELIB}/pygments/lexers/textfmts.pyo
+${PYSITELIB}/pygments/lexers/theorem.py
+${PYSITELIB}/pygments/lexers/theorem.pyc
+${PYSITELIB}/pygments/lexers/theorem.pyo
+${PYSITELIB}/pygments/lexers/urbi.py
+${PYSITELIB}/pygments/lexers/urbi.pyc
+${PYSITELIB}/pygments/lexers/urbi.pyo
${PYSITELIB}/pygments/lexers/web.py
${PYSITELIB}/pygments/lexers/web.pyc
${PYSITELIB}/pygments/lexers/web.pyo
+${PYSITELIB}/pygments/lexers/webmisc.py
+${PYSITELIB}/pygments/lexers/webmisc.pyc
+${PYSITELIB}/pygments/lexers/webmisc.pyo
+${PYSITELIB}/pygments/modeline.py
+${PYSITELIB}/pygments/modeline.pyc
+${PYSITELIB}/pygments/modeline.pyo
${PYSITELIB}/pygments/plugin.py
${PYSITELIB}/pygments/plugin.pyc
${PYSITELIB}/pygments/plugin.pyo
+${PYSITELIB}/pygments/regexopt.py
+${PYSITELIB}/pygments/regexopt.pyc
+${PYSITELIB}/pygments/regexopt.pyo
${PYSITELIB}/pygments/scanner.py
${PYSITELIB}/pygments/scanner.pyc
${PYSITELIB}/pygments/scanner.pyo
+${PYSITELIB}/pygments/sphinxext.py
+${PYSITELIB}/pygments/sphinxext.pyc
+${PYSITELIB}/pygments/sphinxext.pyo
${PYSITELIB}/pygments/style.py
${PYSITELIB}/pygments/style.pyc
${PYSITELIB}/pygments/style.pyo
@@ -192,6 +426,9 @@ ${PYSITELIB}/pygments/styles/friendly.pyo
${PYSITELIB}/pygments/styles/fruity.py
${PYSITELIB}/pygments/styles/fruity.pyc
${PYSITELIB}/pygments/styles/fruity.pyo
+${PYSITELIB}/pygments/styles/igor.py
+${PYSITELIB}/pygments/styles/igor.pyc
+${PYSITELIB}/pygments/styles/igor.pyo
${PYSITELIB}/pygments/styles/manni.py
${PYSITELIB}/pygments/styles/manni.pyc
${PYSITELIB}/pygments/styles/manni.pyo
@@ -204,6 +441,12 @@ ${PYSITELIB}/pygments/styles/murphy.pyo
${PYSITELIB}/pygments/styles/native.py
${PYSITELIB}/pygments/styles/native.pyc
${PYSITELIB}/pygments/styles/native.pyo
+${PYSITELIB}/pygments/styles/paraiso_dark.py
+${PYSITELIB}/pygments/styles/paraiso_dark.pyc
+${PYSITELIB}/pygments/styles/paraiso_dark.pyo
+${PYSITELIB}/pygments/styles/paraiso_light.py
+${PYSITELIB}/pygments/styles/paraiso_light.pyc
+${PYSITELIB}/pygments/styles/paraiso_light.pyo
${PYSITELIB}/pygments/styles/pastie.py
${PYSITELIB}/pygments/styles/pastie.pyc
${PYSITELIB}/pygments/styles/pastie.pyo
@@ -225,6 +468,9 @@ ${PYSITELIB}/pygments/styles/vim.pyo
${PYSITELIB}/pygments/styles/vs.py
${PYSITELIB}/pygments/styles/vs.pyc
${PYSITELIB}/pygments/styles/vs.pyo
+${PYSITELIB}/pygments/styles/xcode.py
+${PYSITELIB}/pygments/styles/xcode.pyc
+${PYSITELIB}/pygments/styles/xcode.pyo
${PYSITELIB}/pygments/token.py
${PYSITELIB}/pygments/token.pyc
${PYSITELIB}/pygments/token.pyo
diff --git a/textproc/py-pygments/distinfo b/textproc/py-pygments/distinfo
index b364cd8f9d6..45a36d1d335 100644
--- a/textproc/py-pygments/distinfo
+++ b/textproc/py-pygments/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.8 2013/03/03 07:31:30 obache Exp $
+$NetBSD: distinfo,v 1.9 2014/11/19 12:57:55 wiz Exp $
-SHA1 (Pygments-1.6.tar.gz) = 53d831b83b1e4d4f16fec604057e70519f9f02fb
-RMD160 (Pygments-1.6.tar.gz) = 81dbd690f646efe0cc9d1efb505eb83be4d2b1bf
-Size (Pygments-1.6.tar.gz) = 1423161 bytes
+SHA1 (Pygments-2.0.tar.gz) = cc9a02cf6eebfb4301e296769c5754aa4300b921
+RMD160 (Pygments-2.0.tar.gz) = 0cb0091dd2580f465a073c99d0133eca0ccfd7d8
+Size (Pygments-2.0.tar.gz) = 2710276 bytes