15
0

- Add denose_tests.patch removing the need for nose

(gh#dsoprea/PyEasyArchive#44).

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-libarchive?expand=0&rev=15
This commit is contained in:
2020-07-30 15:44:34 +00:00
committed by Git OBS Bridge
parent fe06c4d4fc
commit 021b05bb8d
3 changed files with 59 additions and 3 deletions

View File

@@ -25,6 +25,9 @@ Summary: Python adapter for universal, libarchive-based archive access
License: GPL-2.0-only
URL: https://github.com/dsoprea/PyEasyArchive
Source: https://files.pythonhosted.org/packages/source/l/libarchive/libarchive-%{version}.tar.gz
# PATCH-FEATURE-UPSTREAM denose_tests.patch gh#dsoprea/PyEasyArchive#44 mcepl@suse.com
# Removes the need for nose test requirement
Patch0: denose_tests.patch
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: libarchive-devel
@@ -33,7 +36,7 @@ Requires: libarchive-devel
Conflicts: python-libarchive-c
BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module nose}
BuildRequires: %{python_module pytest}
# /SECTION
%ifpython2
Conflicts: %{oldpython}-libarchive-c
@@ -46,14 +49,15 @@ A ctypes-based adapter to libarchive.
%prep
%setup -q -n libarchive-%{version}
%autopatch -p1
%build
%python_build
%check
# https://github.com/dsoprea/PyEasyArchive/issues/33
export LANG=en_US.UTF8
%python_expand nosetests-%{$python_bin_suffix} -v -e test_read_symlinks
# excluded test due to gh#dsoprea/PyEasyArchive#33
%pytest -k 'not test_read_symlinks'
%install
%python_install