Update Pygments to 0.11.1.
Pygments changelog ================== Version 0.11.1 -------------- (released Aug 24, 2008) - Fix a Jython compatibility issue in pygments.unistring (#358). Version 0.11 ------------ (codename Straußenei, released Aug 23, 2008) Many thanks go to Tim Hatch for writing or integrating most of the bug fixes and new features. - Lexers added: * Nasm-style assembly language, thanks to delroth * YAML, thanks to Kirill Simonov * ActionScript 3, thanks to Pierre Bourdon * Cheetah/Spitfire templates, thanks to Matt Good * Lighttpd config files * Nginx config files * Gnuplot plotting scripts * Clojure * POV-Ray scene files * Sqlite3 interactive console sessions * Scala source files, thanks to Krzysiek Goj - Lexers improved: * C lexer highlights standard library functions now and supports C99 types. * Bash lexer now correctly highlights heredocs without preceding whitespace. * Vim lexer now highlights hex colors properly and knows a couple more keywords. * Irc logs lexer now handles xchat's default time format (#340) and correctly highlights lines ending in ``>``. * Support more delimiters for perl regular expressions (#258). * ObjectiveC lexer now supports 2.0 features. - Added "Visual Studio" style. - Updated markdown processor to Markdown 1.7. - Support roman/sans/mono style defs and use them in the LaTeX formatter. - The RawTokenFormatter is no longer registered to ``*.raw`` and it's documented that tokenization with this lexer may raise exceptions. - New option ``hl_lines`` to HTML formatter, to highlight certain lines. - New option ``prestyles`` to HTML formatter. - New option *-g* to pygmentize, to allow lexer guessing based on filetext (can be slowish, so file extensions are still checked first). - ``guess_lexer()`` now makes its decision much faster due to a cache of whether data is xml-like (a check which is used in several versions of ``analyse_text()``. Several lexers also have more accurate ``analyse_text()`` now.
This commit is contained in:
parent
cd808b0bff
commit
026e8bc05d
3 changed files with 11 additions and 9 deletions
|
@ -1,11 +1,10 @@
|
|||
# $NetBSD: Makefile,v 1.2 2008/09/12 05:32:38 epg Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2008/11/18 07:29:11 obache Exp $
|
||||
#
|
||||
|
||||
DISTNAME= Pygments-0.10
|
||||
DISTNAME= Pygments-0.11.1
|
||||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl}
|
||||
CATEGORIES= textproc python
|
||||
MASTER_SITES= http://pypi.python.org/packages/source/P/Pygments/ \
|
||||
${MASTER_SITE_SOURCEFORGE:=pygments/}
|
||||
MASTER_SITES= http://pypi.python.org/packages/source/P/Pygments/
|
||||
|
||||
MAINTAINER= obache@NetBSD.org
|
||||
HOMEPAGE= http://pygments.org/
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2008/08/01 08:31:38 obache Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2008/11/18 07:29:11 obache Exp $
|
||||
bin/pygmentize
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
|
@ -168,6 +168,9 @@ ${PYSITELIB}/pygments/styles/trac.pyo
|
|||
${PYSITELIB}/pygments/styles/vim.py
|
||||
${PYSITELIB}/pygments/styles/vim.pyc
|
||||
${PYSITELIB}/pygments/styles/vim.pyo
|
||||
${PYSITELIB}/pygments/styles/vs.py
|
||||
${PYSITELIB}/pygments/styles/vs.pyc
|
||||
${PYSITELIB}/pygments/styles/vs.pyo
|
||||
${PYSITELIB}/pygments/token.py
|
||||
${PYSITELIB}/pygments/token.pyc
|
||||
${PYSITELIB}/pygments/token.pyo
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2008/08/01 08:31:38 obache Exp $
|
||||
$NetBSD: distinfo,v 1.2 2008/11/18 07:29:11 obache Exp $
|
||||
|
||||
SHA1 (Pygments-0.10.tar.gz) = 09ca526b40655db993fdc9f1c1b89de525f32080
|
||||
RMD160 (Pygments-0.10.tar.gz) = 8bfe3e3f9267f8f9366ff4dd2c3ae9b10fa778d8
|
||||
Size (Pygments-0.10.tar.gz) = 836229 bytes
|
||||
SHA1 (Pygments-0.11.1.tar.gz) = 1209029a1b06c779c523e71a33d096ec7f1237d1
|
||||
RMD160 (Pygments-0.11.1.tar.gz) = a0ff959c56a4754ec17141f59c0679e7f2a073da
|
||||
Size (Pygments-0.11.1.tar.gz) = 865977 bytes
|
||||
|
|
Loading…
Reference in a new issue