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
This commit is contained in:
Matwey Kornilov 2013-07-08 14:18:43 +00:00 committed by Git OBS Bridge
parent d9aeca6d4e
commit 9435dd447d
5 changed files with 18 additions and 10 deletions

View File

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

3
construct-2.5.1.tar.gz Normal file
View File

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

View File

@ -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

View File

@ -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

View File

@ -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',
]