Accepting request 424467 from home:tbechtold:branches:devel:languages:python

- update to 3.9:
  * Exposed the parser state number as the parser.state attribute
    in productions and error functions.
  * Fixed Issue #88. Python3 compatibility with ply/cpp.
  * Fixed Issue #93. Ply can crash if SyntaxError is raised inside
    a production.   Not actually sure if the original implementation
    worked as documented at all.  Yacc has been modified to follow
    the spec as outlined in the CHANGES noted for 11/27/07 below.
  * Fixed Issue #97. Failure with code validation when the original
    source files aren't present.   Validation step now ignores
    the missing file.
  * Minor fixes to version numbers.

OBS-URL: https://build.opensuse.org/request/show/424467
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ply?expand=0&rev=28
This commit is contained in:
Alberto Planas 2016-09-02 14:03:01 +00:00 committed by Git OBS Bridge
parent 2fabc4f1a3
commit 391bb140da
4 changed files with 21 additions and 5 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e7d1bdff026beb159c9942f7a17e102c375638d9478a7ecd4cc0c76afd8de0b8
size 157286

3
ply-3.9.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0d7e2940b9c57151392fceaa62b0865c45e06ce1e36687fd8d03f011a907f43e
size 150750

View File

@ -1,3 +1,19 @@
-------------------------------------------------------------------
Fri Sep 2 13:55:35 UTC 2016 - tbechtold@suse.com
- update to 3.9:
* Exposed the parser state number as the parser.state attribute
in productions and error functions.
* Fixed Issue #88. Python3 compatibility with ply/cpp.
* Fixed Issue #93. Ply can crash if SyntaxError is raised inside
a production. Not actually sure if the original implementation
worked as documented at all. Yacc has been modified to follow
the spec as outlined in the CHANGES noted for 11/27/07 below.
* Fixed Issue #97. Failure with code validation when the original
source files aren't present. Validation step now ignores
the missing file.
* Minor fixes to version numbers.
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Oct 7 06:24:38 UTC 2015 - hpj@urpla.net Wed Oct 7 06:24:38 UTC 2015 - hpj@urpla.net

View File

@ -1,7 +1,7 @@
# #
# spec file for package python-ply # spec file for package python-ply
# #
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@ -18,7 +18,7 @@
%define modname ply %define modname ply
Name: python-%{modname} Name: python-%{modname}
Version: 3.8 Version: 3.9
Release: 0 Release: 0
Url: http://www.dabeaz.com/ply/ Url: http://www.dabeaz.com/ply/
Summary: Python Lex & Yacc Summary: Python Lex & Yacc