Accepting request 434114 from devel:languages:python

- correct download url

- Version 2.5.5:
  - Many minor fixups

OBS-URL: https://build.opensuse.org/request/show/434114
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-construct?expand=0&rev=5
This commit is contained in:
Dominique Leuenberger 2016-10-14 07:05:23 +00:00 committed by Git OBS Bridge
commit f61c17c87d
5 changed files with 21 additions and 10 deletions

View File

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

View File

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

View File

@ -1,3 +1,14 @@
-------------------------------------------------------------------
Mon Oct 10 12:45:01 UTC 2016 - dmueller@suse.com
- correct download url
-------------------------------------------------------------------
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,13 +17,13 @@
Name: python-construct
Version: 2.5.2
Version: 2.5.5
Release: 0
Summary: A powerful declarative parser/builder for binary data
License: MIT
Group: Development/Languages/Python
Url: http://construct.readthedocs.org
Source: http://pypi.python.org/packages/source/c/construct/construct-%{version}.tar.gz
Source: https://pypi.io/packages/source/c/construct/construct-%{version}-reupload.tar.gz
# PATCH-FEATURE-OPENSUSE split_debug.patch matwey.kornilov@gmail.com -- make debug.py non-loadable
Patch0: split_debug.patch
BuildRequires: python-devel

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__