pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/textproc
Module Name: pkgsrc
Committed By: adam
Date: Sun Feb 7 20:10:18 UTC 2021
Modified Files:
pkgsrc/textproc: Makefile
Added Files:
pkgsrc/textproc/py-parsimonious: DESCR Makefile PLIST distinfo
Log Message:
py-parsimonious: added version 0.8.1
Parsimonious aims to be the fastest arbitrary-lookahead parser written in pure
Python-and the most usable. It's based on parsing expression grammars (PEGs),
which means you feed it a simplified sort of EBNF notation. Parsimonious was
designed to undergird a MediaWiki parser that wouldn't take 5 seconds or a GB
of RAM to do one page, but it's applicable to all sorts of languages
To generate a diff of this commit:
cvs rdiff -u -r1.1192 -r1.1193 pkgsrc/textproc/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/textproc/py-parsimonious/DESCR \
pkgsrc/textproc/py-parsimonious/Makefile \
pkgsrc/textproc/py-parsimonious/PLIST \
pkgsrc/textproc/py-parsimonious/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/textproc/Makefile
diff -u pkgsrc/textproc/Makefile:1.1192 pkgsrc/textproc/Makefile:1.1193
--- pkgsrc/textproc/Makefile:1.1192 Wed Feb 3 10:28:41 2021
+++ pkgsrc/textproc/Makefile Sun Feb 7 20:10:18 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1192 2021/02/03 10:28:41 nia Exp $
+# $NetBSD: Makefile,v 1.1193 2021/02/07 20:10:18 adam Exp $
#
COMMENT= Text processing utilities (does not include desktop publishing)
@@ -922,6 +922,7 @@ SUBDIR+= py-pallets-sphinx-themes
SUBDIR+= py-pandocfilters
SUBDIR+= py-parse
SUBDIR+= py-parse_type
+SUBDIR+= py-parsimonious
SUBDIR+= py-pdf-parser
SUBDIR+= py-pdfrw
SUBDIR+= py-peg2
Added files:
Index: pkgsrc/textproc/py-parsimonious/DESCR
diff -u /dev/null pkgsrc/textproc/py-parsimonious/DESCR:1.1
--- /dev/null Sun Feb 7 20:10:18 2021
+++ pkgsrc/textproc/py-parsimonious/DESCR Sun Feb 7 20:10:18 2021
@@ -0,0 +1,5 @@
+Parsimonious aims to be the fastest arbitrary-lookahead parser written in pure
+Python-and the most usable. It's based on parsing expression grammars (PEGs),
+which means you feed it a simplified sort of EBNF notation. Parsimonious was
+designed to undergird a MediaWiki parser that wouldn't take 5 seconds or a GB
+of RAM to do one page, but it's applicable to all sorts of languages
Index: pkgsrc/textproc/py-parsimonious/Makefile
diff -u /dev/null pkgsrc/textproc/py-parsimonious/Makefile:1.1
--- /dev/null Sun Feb 7 20:10:18 2021
+++ pkgsrc/textproc/py-parsimonious/Makefile Sun Feb 7 20:10:18 2021
@@ -0,0 +1,19 @@
+# $NetBSD: Makefile,v 1.1 2021/02/07 20:10:18 adam Exp $
+
+DISTNAME= parsimonious-0.8.1
+PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
+CATEGORIES= textproc python
+MASTER_SITES= ${MASTER_SITE_PYPI:=p/parsimonious/}
+
+MAINTAINER= pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE= https://github.com/erikrose/parsimonious
+COMMENT= The fastest pure-Python PEG parser I could muster
+LICENSE= mit
+
+DEPENDS+= ${PYPKGPREFIX}-six>=1.9.0:../../lang/py-six
+TEST_DEPENDS+= ${PYPKGPREFIX}-nose>=0:../../devel/py-nose
+
+USE_LANGUAGES= # none
+
+.include "../../lang/python/egg.mk"
+.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/textproc/py-parsimonious/PLIST
diff -u /dev/null pkgsrc/textproc/py-parsimonious/PLIST:1.1
--- /dev/null Sun Feb 7 20:10:18 2021
+++ pkgsrc/textproc/py-parsimonious/PLIST Sun Feb 7 20:10:18 2021
@@ -0,0 +1,42 @@
+@comment $NetBSD: PLIST,v 1.1 2021/02/07 20:10:18 adam Exp $
+${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
+${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
+${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/requires.txt
+${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/parsimonious/__init__.py
+${PYSITELIB}/parsimonious/__init__.pyc
+${PYSITELIB}/parsimonious/__init__.pyo
+${PYSITELIB}/parsimonious/exceptions.py
+${PYSITELIB}/parsimonious/exceptions.pyc
+${PYSITELIB}/parsimonious/exceptions.pyo
+${PYSITELIB}/parsimonious/expressions.py
+${PYSITELIB}/parsimonious/expressions.pyc
+${PYSITELIB}/parsimonious/expressions.pyo
+${PYSITELIB}/parsimonious/grammar.py
+${PYSITELIB}/parsimonious/grammar.pyc
+${PYSITELIB}/parsimonious/grammar.pyo
+${PYSITELIB}/parsimonious/nodes.py
+${PYSITELIB}/parsimonious/nodes.pyc
+${PYSITELIB}/parsimonious/nodes.pyo
+${PYSITELIB}/parsimonious/tests/__init__.py
+${PYSITELIB}/parsimonious/tests/__init__.pyc
+${PYSITELIB}/parsimonious/tests/__init__.pyo
+${PYSITELIB}/parsimonious/tests/benchmarks.py
+${PYSITELIB}/parsimonious/tests/benchmarks.pyc
+${PYSITELIB}/parsimonious/tests/benchmarks.pyo
+${PYSITELIB}/parsimonious/tests/test_benchmarks.py
+${PYSITELIB}/parsimonious/tests/test_benchmarks.pyc
+${PYSITELIB}/parsimonious/tests/test_benchmarks.pyo
+${PYSITELIB}/parsimonious/tests/test_expressions.py
+${PYSITELIB}/parsimonious/tests/test_expressions.pyc
+${PYSITELIB}/parsimonious/tests/test_expressions.pyo
+${PYSITELIB}/parsimonious/tests/test_grammar.py
+${PYSITELIB}/parsimonious/tests/test_grammar.pyc
+${PYSITELIB}/parsimonious/tests/test_grammar.pyo
+${PYSITELIB}/parsimonious/tests/test_nodes.py
+${PYSITELIB}/parsimonious/tests/test_nodes.pyc
+${PYSITELIB}/parsimonious/tests/test_nodes.pyo
+${PYSITELIB}/parsimonious/utils.py
+${PYSITELIB}/parsimonious/utils.pyc
+${PYSITELIB}/parsimonious/utils.pyo
Index: pkgsrc/textproc/py-parsimonious/distinfo
diff -u /dev/null pkgsrc/textproc/py-parsimonious/distinfo:1.1
--- /dev/null Sun Feb 7 20:10:18 2021
+++ pkgsrc/textproc/py-parsimonious/distinfo Sun Feb 7 20:10:18 2021
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2021/02/07 20:10:18 adam Exp $
+
+SHA1 (parsimonious-0.8.1.tar.gz) = 52eb0c338858d787f38931dd0951a1a87edcba76
+RMD160 (parsimonious-0.8.1.tar.gz) = c85c0e415f63596948ab0dd511678224739b306a
+SHA512 (parsimonious-0.8.1.tar.gz) = 8eb3959090dcbc7ea16ff72bbe1a5b695ea07de09865c5ca5832c7db2405fa609844e19ebafd0d156bd8e9efe1b9025caae22e7bff7d94b520691e86f00fcfdd
+Size (parsimonious-0.8.1.tar.gz) = 45057 bytes
Home |
Main Index |
Thread Index |
Old Index