Accepting request 432173 from home:matwey:branches:devel:languages:python

OBS-URL: https://build.opensuse.org/request/show/432173
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-construct?expand=0&rev=8
This commit is contained in:
Dirk Mueller 2016-10-04 10:59:24 +00:00 committed by Git OBS Bridge
parent ba4cda03f4
commit d032f22ee8
5 changed files with 15 additions and 9 deletions

View File

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

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

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

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Sat Oct 1 15:10:47 UTC 2016 - matwey.kornilov@gmail.com
- Version 2.5.5:
- Many minor fixups
-------------------------------------------------------------------
Sat May 3 12:42:41 UTC 2014 - matwey.kornilov@gmail.com

View File

@ -1,7 +1,7 @@
#
# spec file for package python-construct
#
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2016 SUSE LINUX 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-construct
Version: 2.5.2
Version: 2.5.5
Release: 0
Summary: A powerful declarative parser/builder for binary data
License: MIT

View File

@ -1,10 +1,10 @@
Index: construct-2.5.2/construct/__init__.py
Index: construct-2.5.5/construct/__init__.py
===================================================================
--- construct-2.5.2.orig/construct/__init__.py
+++ construct-2.5.2/construct/__init__.py
--- construct-2.5.5.orig/construct/__init__.py
+++ construct-2.5.5/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)
ULInt8, UNInt16, UNInt32, UNInt64, UNInt8, GreedyString)
from construct.lib.expr import this
-from construct.debug import Probe, Debugger
from construct.version import version, version_string as __version__