From a680e94f1988c6abbbfc80e9e2bf91ac51e420694f524850005f7ee509509be0 Mon Sep 17 00:00:00 2001 From: Jan Matejek Date: Mon, 11 Sep 2017 15:41:58 +0000 Subject: [PATCH] Accepting request 523265 from home:jengelh:branches:devel:languages:python - Trim history from package description. OBS-URL: https://build.opensuse.org/request/show/523265 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-spark_parser?expand=0&rev=2 --- python-spark_parser.changes | 5 +++++ python-spark_parser.spec | 17 ++++++----------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/python-spark_parser.changes b/python-spark_parser.changes index babc5d9..29e0000 100644 --- a/python-spark_parser.changes +++ b/python-spark_parser.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Sep 11 15:32:25 UTC 2017 - jengelh@inai.de + +- Trim history from package description. + ------------------------------------------------------------------- Thu Sep 7 22:42:35 UTC 2017 - toddrme2178@gmail.com diff --git a/python-spark_parser.spec b/python-spark_parser.spec index 928b120..c07e7e5 100644 --- a/python-spark_parser.spec +++ b/python-spark_parser.spec @@ -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 @@ BuildArch: noarch %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.