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-3.6.1.tar.gz b/python-pyfakefs-3.6.1.tar.gz deleted file mode 100644 index ba972cb..0000000 --- a/python-pyfakefs-3.6.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b3c603bed878d5428c4e7719094387b6f3b6beadeaee4b1c1eed1b9bcac2de3c -size 176272 diff --git a/python-pyfakefs-3.7.2.tar.gz b/python-pyfakefs-3.7.2.tar.gz new file mode 100644 index 0000000..10d6f85 --- /dev/null +++ b/python-pyfakefs-3.7.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99512e30277a823290faf74041c3bc34c910e439426c8c9ef2230781aa41c390 +size 180195 diff --git a/python-pyfakefs.changes b/python-pyfakefs.changes index bf7c030..bf044c5 100644 --- a/python-pyfakefs.changes +++ b/python-pyfakefs.changes @@ -1,3 +1,14 @@ +------------------------------------------------------------------- +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 + +- Update to 3.7.2: + * Various fixes for python 3.8 + ------------------------------------------------------------------- Wed Dec 11 08:44:45 UTC 2019 - Tomáš Chvátal diff --git a/python-pyfakefs.spec b/python-pyfakefs.spec index 4514e45..4783dce 100644 --- a/python-pyfakefs.spec +++ b/python-pyfakefs.spec @@ -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