Hello community,
here is the log from the commit of package python-spark_parser for
openSUSE:Factory checked in at 2017-10-13 14:16:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-spark_parser (Old)
and /work/SRC/openSUSE:Factory/.python-spark_parser.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-spark_parser"
Fri Oct 13 14:16:30 2017 rev:2 rq:533147 version:1.6.1
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-spark_parser/python-spark_parser.changes
2017-09-19 16:31:30.562341169 +0200
+++
/work/SRC/openSUSE:Factory/.python-spark_parser.new/python-spark_parser.changes
2017-10-13 14:16:32.059050217 +0200
@@ -1,0 +2,5 @@
+Mon Sep 11 15:32:25 UTC 2017 - [email protected]
+
+- Trim history from package description.
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-spark_parser.spec ++++++
--- /var/tmp/diff_new_pack.MGQepN/_old 2017-10-13 14:16:32.935011701 +0200
+++ /var/tmp/diff_new_pack.MGQepN/_new 2017-10-13 14:16:32.939011526 +0200
@@ -13,6 +13,7 @@
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
+#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
@@ -20,15 +21,15 @@
Name: python-spark_parser
Version: 1.6.1
Release: 0
-License: MIT
Summary: An Earley-Algorithm Context-free grammar Parser Toolkit
-Url: https://github.com/rocky/python-spark/
+License: MIT
Group: Development/Languages/Python
+Url: https://github.com/rocky/python-spark/
Source:
https://files.pythonhosted.org/packages/source/s/spark_parser/spark_parser-%{version}.tar.gz
-BuildRequires: fdupes
-BuildRequires: python-rpm-macros
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
+BuildRequires: fdupes
+BuildRequires: python-rpm-macros
%if %{with test}
BuildRequires: %{python_module click}
BuildRequires: %{python_module nose >= 1.0}
@@ -40,16 +41,10 @@
%description
SPARK stands for Scanning, Parsing, and Rewriting Kit. It uses Jay
-Earley's algorithm for parsing context free grammars, and comes with
+Earley's algorithm for parsing context-free grammars, and comes with
some generic Abstract Syntax Tree routines. There is also a prototype
scanner which does its job by combining Python regular expressions.
-The original version of this was written by John Aycock for his Ph.d
-thesis and was described in his 1998 paper: "Compiling Little
-Languages in Python" at the 7th International Python Conference. The
-current incarnation of this code is maintained (or not) by Rocky
-Bernstein.
-
Please Note: Earley algorithm parsers are almost linear when given an LR
grammar. These are grammars which are left-recursive.