From 9435dd447de01520403c0768c5010bd9a5301321ef556e75b6756ffb1e2f3cc7 Mon Sep 17 00:00:00 2001 From: Matwey Kornilov Date: Mon, 8 Jul 2013 14:18:43 +0000 Subject: [PATCH] Accepting request 182511 from home:matwey:branches:devel:languages:python - Version 2.5.1: - Misc fixes for python 3 - Misc fixes in documentation - Allow the Pointer to relocate relative to EOF OBS-URL: https://build.opensuse.org/request/show/182511 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-construct?expand=0&rev=4 --- construct-2.5.0.tar.gz | 3 --- construct-2.5.1.tar.gz | 3 +++ python-construct.changes | 8 ++++++++ python-construct.spec | 2 +- split_debug.patch | 12 ++++++------ 5 files changed, 18 insertions(+), 10 deletions(-) delete mode 100644 construct-2.5.0.tar.gz create mode 100644 construct-2.5.1.tar.gz diff --git a/construct-2.5.0.tar.gz b/construct-2.5.0.tar.gz deleted file mode 100644 index 92fa0b1..0000000 --- a/construct-2.5.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:467ffa7ba0964ee3d47d52b3deda7fffb095936c7b2764ee7b92cb60d6f4b921 -size 56073 diff --git a/construct-2.5.1.tar.gz b/construct-2.5.1.tar.gz new file mode 100644 index 0000000..87b34a5 --- /dev/null +++ b/construct-2.5.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ae387cfde856f9ce3b1f4b1fc58750b6dc30994d96bde2517cfe47d10d51323 +size 56287 diff --git a/python-construct.changes b/python-construct.changes index 135091d..345ad7a 100644 --- a/python-construct.changes +++ b/python-construct.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Mon Jul 8 13:57:11 UTC 2013 - matwey.kornilov@gmail.com + +- Version 2.5.1: + - Misc fixes for python 3 + - Misc fixes in documentation + - Allow the Pointer to relocate relative to EOF + ------------------------------------------------------------------- Wed May 8 07:40:30 UTC 2013 - matwey.kornilov@gmail.com diff --git a/python-construct.spec b/python-construct.spec index f25ac24..61567da 100644 --- a/python-construct.spec +++ b/python-construct.spec @@ -16,7 +16,7 @@ Name: python-construct -Version: 2.5.0 +Version: 2.5.1 Release: 0 License: MIT Summary: A powerful declarative parser/builder for binary data diff --git a/split_debug.patch b/split_debug.patch index d50a382..d8e33e5 100644 --- a/split_debug.patch +++ b/split_debug.patch @@ -1,8 +1,8 @@ -Index: construct-2.5.0/construct/__init__.py +Index: construct-2.5.1/construct/__init__.py =================================================================== ---- construct-2.5.0.orig/construct/__init__.py 2013-01-13 17:06:31.000000000 +0400 -+++ construct-2.5.0/construct/__init__.py 2013-05-06 13:46:33.634105595 +0400 -@@ -35,7 +35,6 @@ +--- construct-2.5.1.orig/construct/__init__.py ++++ construct-2.5.1/construct/__init__.py +@@ -35,7 +35,6 @@ from construct.macros import (Alias, Ali SNInt8, SeqOfOne, String, SymmetricMapping, UBInt16, UBInt32, UBInt64, UBInt8, ULInt16, ULInt32, ULInt64, ULInt8, UNInt16, UNInt32, UNInt64, UNInt8) from construct.lib.expr import this @@ -10,7 +10,7 @@ Index: construct-2.5.0/construct/__init__.py from construct.version import version, version_string as __version__ -@@ -61,14 +60,14 @@ +@@ -61,14 +60,14 @@ __all__ = [ 'AdaptationError', 'Adapter', 'Alias', 'Aligned', 'AlignedStruct', 'Anchor', 'Array', 'ArrayError', 'BFloat32', 'BFloat64', 'Bit', 'BitField', 'BitIntegerAdapter', 'BitIntegerError', 'BitStreamReader', 'BitStreamWriter', 'BitStruct', 'Bitwise', 'Buffered', 'CString', 'CStringAdapter', 'ConstAdapter', @@ -27,7 +27,7 @@ Index: construct-2.5.0/construct/__init__.py 'Rename', 'RepeatUntil', 'Restream', 'SBInt16', 'SBInt32', 'SBInt64', 'SBInt8', 'SLInt16', 'SLInt32', 'SLInt64', 'SLInt8', 'SNInt16', 'SNInt32', 'SNInt64', 'SNInt8', 'Select', 'SelectError', 'SeqOfOne', 'Sequence', 'SizeofError', 'SlicingAdapter', 'StaticField', 'String', 'StringAdapter', 'Struct', -@@ -77,3 +76,10 @@ +@@ -77,3 +76,10 @@ __all__ = [ 'ULInt8', 'UNInt16', 'UNInt32', 'UNInt64', 'UNInt8', 'Union', 'ValidationError', 'Validator', 'Value', 'this', 'Bits', 'Byte', 'Bytes', 'Const', 'Tunnel', 'Embed', ]