summaryrefslogtreecommitdiff
path: root/databases/py-sqlparse/PLIST
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2016-10-19 14:02:11 +0000
committerwiz <wiz@pkgsrc.org>2016-10-19 14:02:11 +0000
commitaedf1595623b84a30cbfce33ef6d5179d650945f (patch)
treeefd3b7e693e9f39d56ad3b044522d613f08a0cd8 /databases/py-sqlparse/PLIST
parent75302cae3b2e709ac72845544b9f355f83f1f26a (diff)
downloadpkgsrc-aedf1595623b84a30cbfce33ef6d5179d650945f.tar.gz
Updated py-sqlparse to 0.2.0.
Release 0.2.0 (Jul 20, 2016) ---------------------------- IMPORTANT: The supported Python versions have changed with this release. sqlparse 0.2.x supports Python 2.7 and Python >= 3.3. Thanks to the many contributors for writing bug reports and working on pull requests who made this version possible! Internal Changes * sqlparse.SQLParseError was removed from top-level module and moved to sqlparse.exceptions. * sqlparse.sql.Token.to_unicode was removed. * The signature of a filter's process method has changed from process(stack, stream) -> to process(stream). Stack was never used at all. * Lots of code cleanups and modernization (thanks esp. to vmuriart!). * Improved grouping performance. (sjoerdjob) Enhancements * Support WHILE loops (issue215, by shenlongxing). * Better support for CTEs (issue217, by Andrew Tipton). * Recognize USING as a keyword more consistently (issue236, by koljonen). * Improve alignment of columns (issue207, issue235, by vmuriat). * Add wrap_after option for better alignment when formatting lists (issue248, by Dennis Taylor). * Add reindent-aligned option for alternate formatting (Adam Greenhall) * Improved grouping of operations (issue211, by vmuriat). Bug Fixes * Leading whitespaces are now removed when format() is called with strip_whitespace=True (issue213, by shenlongxing). * Fix typo in keywords list (issue229, by cbeloni). * Fix parsing of functions in comparisons (issue230, by saaj). * Fix grouping of identifiers (issue233). * Fix parsing of CREATE TABLE statements (issue242, by Tenghuan). * Minor bug fixes (issue101). * Improve formatting of CASE WHEN constructs (issue164, by vmuriat). Release 0.1.19 (Mar 07, 2016) ----------------------------- Bug Fixes * Fix IndexError when statement contains WITH clauses (issue205). Release 0.1.18 (Oct 25, 2015) ----------------------------- Bug Fixes * Remove universal wheel support, added in 0.1.17 by mistake. Release 0.1.17 (Oct 24, 2015) ----------------------------- Enhancements * Speed up parsing of large SQL statements (pull request: issue201, fixes the following issues: issue199, issue135, issue62, issue41, by Ryan Wooden). Bug Fixes * Fix another splitter bug regarding DECLARE (issue194). Misc * Packages on PyPI are signed from now on. Release 0.1.16 (Jul 26, 2015) ----------------------------- Bug Fixes * Fix a regression in get_alias() introduced in 0.1.15 (issue185). * Fix a bug in the splitter regarding DECLARE (issue193). * sqlformat command line tool doesn't duplicat newlines anymore (issue191). * Don't mix up MySQL comments starting with hash and MSSQL temp tables (issue192). * Statement.get_type() now ignores comments at the beginning of a statement (issue186). Release 0.1.15 (Apr 15, 2015) ----------------------------- Bug Fixes * Fix a regression for identifiers with square bracktes notation (issue153, by darikg). * Add missing SQL types (issue154, issue155, issue156, by jukebox). * Fix parsing of multi-line comments (issue172, by JacekPliszka). * Fix parsing of escaped backslashes (issue174, by caseyching). * Fix parsing of identifiers starting with underscore (issue175). * Fix misinterpretation of IN keyword (issue183). Enhancements * Improve formatting of HAVING statements. * Improve parsing of inline comments (issue163). * Group comments to parent object (issue128, issue160). * Add double precision builtin (issue169, by darikg). * Add support for square bracket array indexing (issue170, issue176, issue177 by darikg). * Improve grouping of aliased elements (issue167, by darikg). * Support comments starting with '#' character (issue178).
Diffstat (limited to 'databases/py-sqlparse/PLIST')
-rw-r--r--databases/py-sqlparse/PLIST53
1 files changed, 39 insertions, 14 deletions
diff --git a/databases/py-sqlparse/PLIST b/databases/py-sqlparse/PLIST
index f0e4f73d9db..2ba4f6cab53 100644
--- a/databases/py-sqlparse/PLIST
+++ b/databases/py-sqlparse/PLIST
@@ -1,42 +1,67 @@
-@comment $NetBSD: PLIST,v 1.1 2013/09/30 17:24:18 wiz Exp $
-bin/sqlformat
+@comment $NetBSD: PLIST,v 1.2 2016/10/19 14:02:11 wiz Exp $
+bin/sqlformat-${PYVERSSUFFIX}
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/sqlparse/__init__.py
${PYSITELIB}/sqlparse/__init__.pyc
${PYSITELIB}/sqlparse/__init__.pyo
+${PYSITELIB}/sqlparse/__main__.py
+${PYSITELIB}/sqlparse/__main__.pyc
+${PYSITELIB}/sqlparse/__main__.pyo
+${PYSITELIB}/sqlparse/cli.py
+${PYSITELIB}/sqlparse/cli.pyc
+${PYSITELIB}/sqlparse/cli.pyo
+${PYSITELIB}/sqlparse/compat.py
+${PYSITELIB}/sqlparse/compat.pyc
+${PYSITELIB}/sqlparse/compat.pyo
${PYSITELIB}/sqlparse/engine/__init__.py
${PYSITELIB}/sqlparse/engine/__init__.pyc
${PYSITELIB}/sqlparse/engine/__init__.pyo
-${PYSITELIB}/sqlparse/engine/filter.py
-${PYSITELIB}/sqlparse/engine/filter.pyc
-${PYSITELIB}/sqlparse/engine/filter.pyo
+${PYSITELIB}/sqlparse/engine/filter_stack.py
+${PYSITELIB}/sqlparse/engine/filter_stack.pyc
+${PYSITELIB}/sqlparse/engine/filter_stack.pyo
${PYSITELIB}/sqlparse/engine/grouping.py
${PYSITELIB}/sqlparse/engine/grouping.pyc
${PYSITELIB}/sqlparse/engine/grouping.pyo
+${PYSITELIB}/sqlparse/engine/statement_splitter.py
+${PYSITELIB}/sqlparse/engine/statement_splitter.pyc
+${PYSITELIB}/sqlparse/engine/statement_splitter.pyo
${PYSITELIB}/sqlparse/exceptions.py
${PYSITELIB}/sqlparse/exceptions.pyc
${PYSITELIB}/sqlparse/exceptions.pyo
-${PYSITELIB}/sqlparse/filters.py
-${PYSITELIB}/sqlparse/filters.pyc
-${PYSITELIB}/sqlparse/filters.pyo
+${PYSITELIB}/sqlparse/filters/__init__.py
+${PYSITELIB}/sqlparse/filters/__init__.pyc
+${PYSITELIB}/sqlparse/filters/__init__.pyo
+${PYSITELIB}/sqlparse/filters/aligned_indent.py
+${PYSITELIB}/sqlparse/filters/aligned_indent.pyc
+${PYSITELIB}/sqlparse/filters/aligned_indent.pyo
+${PYSITELIB}/sqlparse/filters/others.py
+${PYSITELIB}/sqlparse/filters/others.pyc
+${PYSITELIB}/sqlparse/filters/others.pyo
+${PYSITELIB}/sqlparse/filters/output.py
+${PYSITELIB}/sqlparse/filters/output.pyc
+${PYSITELIB}/sqlparse/filters/output.pyo
+${PYSITELIB}/sqlparse/filters/reindent.py
+${PYSITELIB}/sqlparse/filters/reindent.pyc
+${PYSITELIB}/sqlparse/filters/reindent.pyo
+${PYSITELIB}/sqlparse/filters/right_margin.py
+${PYSITELIB}/sqlparse/filters/right_margin.pyc
+${PYSITELIB}/sqlparse/filters/right_margin.pyo
+${PYSITELIB}/sqlparse/filters/tokens.py
+${PYSITELIB}/sqlparse/filters/tokens.pyc
+${PYSITELIB}/sqlparse/filters/tokens.pyo
${PYSITELIB}/sqlparse/formatter.py
${PYSITELIB}/sqlparse/formatter.pyc
${PYSITELIB}/sqlparse/formatter.pyo
-${PYSITELIB}/sqlparse/functions.py
-${PYSITELIB}/sqlparse/functions.pyc
-${PYSITELIB}/sqlparse/functions.pyo
${PYSITELIB}/sqlparse/keywords.py
${PYSITELIB}/sqlparse/keywords.pyc
${PYSITELIB}/sqlparse/keywords.pyo
${PYSITELIB}/sqlparse/lexer.py
${PYSITELIB}/sqlparse/lexer.pyc
${PYSITELIB}/sqlparse/lexer.pyo
-${PYSITELIB}/sqlparse/pipeline.py
-${PYSITELIB}/sqlparse/pipeline.pyc
-${PYSITELIB}/sqlparse/pipeline.pyo
${PYSITELIB}/sqlparse/sql.py
${PYSITELIB}/sqlparse/sql.pyc
${PYSITELIB}/sqlparse/sql.pyo