From 9b2249f70ab52cefb241a77ec3e57a50878437cde5335ebbc2394e5edf14df05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= Date: Sun, 8 Mar 2020 03:37:02 +0000 Subject: [PATCH] - Swith to multibuild in order to avoid full python buildcycle OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyfakefs?expand=0&rev=27 --- _multibuild | 3 +++ python-pyfakefs.changes | 5 +++++ python-pyfakefs.spec | 32 ++++++++++++++++++++++++-------- 3 files changed, 32 insertions(+), 8 deletions(-) create mode 100644 _multibuild diff --git a/_multibuild b/_multibuild new file mode 100644 index 0000000..fcc7b97 --- /dev/null +++ b/_multibuild @@ -0,0 +1,3 @@ + + test + diff --git a/python-pyfakefs.changes b/python-pyfakefs.changes index 092fcd3..bf044c5 100644 --- a/python-pyfakefs.changes +++ b/python-pyfakefs.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Sun Mar 8 03:36:36 UTC 2020 - Tomáš Chvátal + +- Swith to multibuild in order to avoid full python buildcycle + ------------------------------------------------------------------- Sat Mar 7 13:52:47 UTC 2020 - Tomáš Chvátal diff --git a/python-pyfakefs.spec b/python-pyfakefs.spec index da10463..4783dce 100644 --- a/python-pyfakefs.spec +++ b/python-pyfakefs.spec @@ -17,23 +17,33 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} -Name: python-pyfakefs +%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