From e627c6eb11af15b7cf99a31ab83c63278fe3bf4865edf380b5e6d8f6bfb9cc5d Mon Sep 17 00:00:00 2001 From: Todd R Date: Wed, 25 Sep 2013 09:57:51 +0000 Subject: [PATCH] Accepting request 200487 from home:frispete:python Let us postpone the py3 adjustments for the next round, please... - version 1.2 - Added 'makeProtocol' for parsing stream protocols using Parsley grammars and Twisted, with examples, docs, and a tutorial. - Added 'stack' as support for 'makeProtocol'. - Sped up parsing; started compiling python expressons only once. (thanks to eevee!) - Allowed tuple unpacking in assignment in rules. For example, `rule1 = rule2:(a, b) -> a + b`. (thanks to introom!) - Added a trace hook and an example of a trace visualizer using it. - Fixed an example in the README. (thanks to ilmarga!) - Added support for custom labels in grammars. For example, `rule1 = rule2 ^(foo)` will make Parsley consider 'foo' the name for 'rule2' in error messages. (thanks to miebster!) OBS-URL: https://build.opensuse.org/request/show/200487 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Parsley?expand=0&rev=2 --- Parsley-1.1.tar.gz | 3 --- Parsley-1.2.tar.gz | 3 +++ python-Parsley.changes | 17 +++++++++++++++++ python-Parsley.spec | 2 +- 4 files changed, 21 insertions(+), 4 deletions(-) delete mode 100644 Parsley-1.1.tar.gz create mode 100644 Parsley-1.2.tar.gz diff --git a/Parsley-1.1.tar.gz b/Parsley-1.1.tar.gz deleted file mode 100644 index 1e8bf8e..0000000 --- a/Parsley-1.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2c1e51ae248d23f2ceb8ae44cc38f125731dd09c31f25267a50b33c8f7359e99 -size 70835 diff --git a/Parsley-1.2.tar.gz b/Parsley-1.2.tar.gz new file mode 100644 index 0000000..f8fe718 --- /dev/null +++ b/Parsley-1.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50d30cee70770fd44db7cea421cb2fb75af247c3a1cd54885c06b30a7c85dd23 +size 275181 diff --git a/python-Parsley.changes b/python-Parsley.changes index 67a9dc8..071ee9a 100644 --- a/python-Parsley.changes +++ b/python-Parsley.changes @@ -1,3 +1,20 @@ +------------------------------------------------------------------- +Tue Sep 24 08:21:59 UTC 2013 - hpj@urpla.net + +- version 1.2 + - Added 'makeProtocol' for parsing stream protocols using Parsley + grammars and Twisted, with examples, docs, and a tutorial. + - Added 'stack' as support for 'makeProtocol'. + - Sped up parsing; started compiling python expressons only once. + (thanks to eevee!) + - Allowed tuple unpacking in assignment in rules. For example, + `rule1 = rule2:(a, b) -> a + b`. (thanks to introom!) + - Added a trace hook and an example of a trace visualizer using it. + - Fixed an example in the README. (thanks to ilmarga!) + - Added support for custom labels in grammars. For example, + `rule1 = rule2 ^(foo)` will make Parsley consider 'foo' the name for + 'rule2' in error messages. (thanks to miebster!) + ------------------------------------------------------------------- Thu Aug 1 10:47:07 UTC 2013 - hpj@urpla.net diff --git a/python-Parsley.spec b/python-Parsley.spec index fbf1f61..6242b9f 100644 --- a/python-Parsley.spec +++ b/python-Parsley.spec @@ -17,7 +17,7 @@ # Name: python-Parsley -Version: 1.1 +Version: 1.2 Release: 0 License: MIT Summary: Parsing and pattern matching made easy