From 54a411dd3d1b423304811f63ff5db8fcb37b179a4353f55fb8f12885f868d41a Mon Sep 17 00:00:00 2001
From: Denisart Benjamin
Date: Tue, 13 Jan 2015 13:23:21 +0000
Subject: [PATCH] Accepting request 280937 from security:forensics
update to v2.0.2 Required by latest python-plaso package.
OBS-URL: https://build.opensuse.org/request/show/280937
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyparsing?expand=0&rev=30
---
pyparsing-2.0.1.tar.gz | 3 ---
pyparsing-2.0.2.tar.gz | 3 +++
python-pyparsing.changes | 55 ++++++++++++++++++++++++++++++++++++++++
python-pyparsing.spec | 4 +--
4 files changed, 60 insertions(+), 5 deletions(-)
delete mode 100644 pyparsing-2.0.1.tar.gz
create mode 100644 pyparsing-2.0.2.tar.gz
diff --git a/pyparsing-2.0.1.tar.gz b/pyparsing-2.0.1.tar.gz
deleted file mode 100644
index 44e0c8d..0000000
--- a/pyparsing-2.0.1.tar.gz
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:0007cd3f008eba4a203f1f6b4b133ddc352552c8808b694c88c23db56416e4e4
-size 1129563
diff --git a/pyparsing-2.0.2.tar.gz b/pyparsing-2.0.2.tar.gz
new file mode 100644
index 0000000..d7b4fb0
--- /dev/null
+++ b/pyparsing-2.0.2.tar.gz
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:17e43d6b17588ed5968735575b3983a952133ec4082596d214d7090b56d48a06
+size 1136568
diff --git a/python-pyparsing.changes b/python-pyparsing.changes
index 19f531a..743aede 100644
--- a/python-pyparsing.changes
+++ b/python-pyparsing.changes
@@ -1,3 +1,58 @@
+-------------------------------------------------------------------
+Tue Nov 11 17:34:18 UTC 2014 - Greg.Freemyer@gmail.com
+
+- update to v2.0.2
+ - Extended "expr(name)" shortcut (same as "expr.setResultsName(name)")
+ to accept "expr()" as a shortcut for "expr.copy()".
+
+ - Added "locatedExpr(expr)" helper, to decorate any returned tokens
+ with their location within the input string. Adds the results names
+ locn_start and locn_end to the output parse results.
+
+ - Added "pprint()" method to ParseResults, to simplify troubleshooting
+ and prettified output. Now instead of importing the pprint module
+ and then writing "pprint.pprint(result)", you can just write
+ "result.pprint()". This method also accepts addtional positional and
+ keyword arguments (such as indent, width, etc.), which get passed
+ through directly to the pprint method
+ (see http://docs.python.org/2/library/pprint.html#pprint.pprint).
+
+ - Removed deprecation warnings when using '<<' for Forward expression
+ assignment. '<<=' is still preferred, but '<<' will be retained
+ for cases whre '<<=' operator is not suitable (such as in defining
+ lambda expressions).
+
+ - Expanded argument compatibility for classes and functions that
+ take list arguments, to now accept generators as well.
+
+ - Extended list-like behavior of ParseResults, adding support for
+ append and extend. NOTE: if you have existing applications using
+ these names as results names, you will have to access them using
+ dict-style syntax: res["append"] and res["extend"]
+
+ - ParseResults emulates the change in list vs. iterator semantics for
+ methods like keys(), values(), and items(). Under Python 2.x, these
+ methods will return lists, under Python 3.x, these methods will
+ return iterators.
+
+ - ParseResults now has a method haskeys() which returns True or False
+ depending on whether any results names have been defined. This simplifies
+ testing for the existence of results names under Python 3.x, which
+ returns keys() as an iterator, not a list.
+
+ - ParseResults now supports both list and dict semantics for pop().
+ If passed no argument or an integer argument, it will use list semantics
+ and pop tokens from the list of parsed tokens. If passed a non-integer
+ argument (most likely a string), it will use dict semantics and
+ pop the corresponding value from any defined results names. A
+ second default return value argument is supported, just as in
+ dict.pop().
+
+ - Fixed bug in markInputline, thanks for reporting this, Matt Grant!
+
+ - Cleaned up my unit test environment, now runs with Python 2.6 and
+ 3.3.
+
-------------------------------------------------------------------
Mon Sep 23 08:45:12 UTC 2013 - hpj@urpla.net
diff --git a/python-pyparsing.spec b/python-pyparsing.spec
index f7ce748..b91dcfe 100644
--- a/python-pyparsing.spec
+++ b/python-pyparsing.spec
@@ -1,7 +1,7 @@
#
# spec file for package python-pyparsing
#
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
Name: python-pyparsing
-Version: 2.0.1
+Version: 2.0.2
Release: 0
Url: http://pyparsing.wikispaces.com/
Summary: Grammar Parser Library for Python