15
0

- Version update to 2.9.45:

* No obvious changelog present
- Remove obsolete split_debug.patch
- Use github tarball in order to be able to run tests

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-construct?expand=0&rev=25
This commit is contained in:
Tomáš Chvátal
2019-01-02 09:57:00 +00:00
committed by Git OBS Bridge
parent 3bbe539ea5
commit c82d65db7a
5 changed files with 30 additions and 36 deletions

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-construct
#
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2019 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
@@ -18,19 +18,26 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-construct
Version: 2.8.12
Version: 2.9.45
Release: 0
Summary: A declarative parser/builder for binary data
License: MIT
Group: Development/Languages/Python
URL: http://construct.readthedocs.org
Source: https://files.pythonhosted.org/packages/source/c/construct/construct-%{version}.tar.gz
# PATCH-FEATURE-OPENSUSE split_debug.patch matwey.kornilov@gmail.com -- make debug.py non-loadable
Patch0: split_debug.patch
URL: https://github.com/construct/construct
Source: https://github.com/construct/construct/archive/v%{version}.tar.gz
BuildRequires: %{python_module arrow}
BuildRequires: %{python_module pytest-benchmark}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module six}
Requires: python-arrow
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-six
BuildRequires: python2-enum34
%ifpython2
Requires: python-enum34
%endif
BuildArch: noarch
%python_subpackages
@@ -44,7 +51,9 @@ and in the other direction to convert ("build") objects into binary data.
%prep
%setup -q -n construct-%{version}
%patch0 -p1
# remove gallery tests that require in place stuff
rm -rf tests/gallery
rm -rf tests/deprecated_gallery
%build
%python_build
@@ -53,6 +62,9 @@ and in the other direction to convert ("build") objects into binary data.
%python_install
%python_expand %fdupes -s %{buildroot}%{$python_sitelib}
%check
%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} py.test-%{$python_bin_suffix}
%files %{python_files}
%license LICENSE
%doc README.rst