Accepting request 782610 from devel:languages:python

- Swith to multibuild in order to avoid full python buildcycle

- Update to 3.7.2:
  * Various fixes for python 3.8

OBS-URL: https://build.opensuse.org/request/show/782610
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyfakefs?expand=0&rev=11
This commit is contained in:
Dominique Leuenberger 2020-03-08 21:22:58 +00:00 committed by Git OBS Bridge
commit e6f5e3abf2
5 changed files with 43 additions and 13 deletions

3
_multibuild Normal file
View File

@ -0,0 +1,3 @@
<multibuild>
<package>test</package>
</multibuild>

View File

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

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:99512e30277a823290faf74041c3bc34c910e439426c8c9ef2230781aa41c390
size 180195

View File

@ -1,3 +1,14 @@
-------------------------------------------------------------------
Sun Mar 8 03:36:36 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>
- Swith to multibuild in order to avoid full python buildcycle
-------------------------------------------------------------------
Sat Mar 7 13:52:47 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>
- Update to 3.7.2:
* Various fixes for python 3.8
-------------------------------------------------------------------
Wed Dec 11 08:44:45 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>

View File

@ -1,7 +1,7 @@
#
# spec file for package python-pyfakefs
#
# Copyright (c) 2019 SUSE LLC
# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -17,23 +17,33 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-pyfakefs
Version: 3.6.1
%global flavor @BUILD_FLAVOR@%{nil}
%if "%{flavor}" == "test"
%define psuffix -test
%bcond_without test
%else
%define psuffix %{nil}
%bcond_with test
%endif
Name: python-pyfakefs%{psuffix}
Version: 3.7.2
Release: 0
Summary: Fake file system that mocks the Python file system modules
License: Apache-2.0
URL: https://github.com/jmcgeheeiv/pyfakefs
Source: https://github.com/jmcgeheeiv/pyfakefs/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
BuildRequires: %{python_module pathlib2 >= 2.3.2}
BuildRequires: %{python_module pytest >= 2.8.6}
Source: https://github.com/jmcgeheeiv/pyfakefs/archive/v%{version}.tar.gz#/python-pyfakefs-%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: %{pythons}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildRequires: python2-scandir >= 1.8
Requires: python
Requires: python-pathlib2 >= 2.3.2
BuildArch: noarch
%if %{with test}
BuildRequires: %{python_module pathlib2 >= 2.3.2}
BuildRequires: %{python_module pytest >= 2.8.6}
BuildRequires: %{pythons}
BuildRequires: python2-scandir >= 1.8
%endif
%ifpython2
Requires: python-scandir >= 1.8
%endif
@ -52,17 +62,23 @@ no modification to work with pyfakefs.
%python_build
%install
%if !%{with test}
%python_install
%python_expand rm -r %{buildroot}%{$python_sitelib}/pyfakefs/tests/
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%python_expand rm -rf %{buildroot}%{$python_sitelib}/pyfakefs/tests/
%endif
%check
%if %{with test}
export LANG=C.UTF-8
%python_exec setup.py test
%python_expand PYTHONPATH=$(pwd) $python -m pyfakefs.tests.all_tests
%endif
%if !%{with test}
%files %{python_files}
%doc CHANGES* README*
%license COPYING*
%{python_sitelib}/*
%endif
%changelog