# # spec file for package python-mock # # Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed # upon. The license for this file, and modifications and additions to the # file, is the same license as for the pristine package itself (unless the # license for the pristine package is not an Open Source License, in which # case the license is the MIT License). An "Open Source License" is a # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. # Please submit bugfixes or comments via http://bugs.opensuse.org/ # Name: python-mock Version: 1.0.1 Release: 12.2 Url: http://www.voidspace.org.uk/python/mock/ Summary: A Python Mocking and Patching Library for Testing License: BSD-2-Clause Group: Development/Languages/Python Source: http://pypi.python.org/packages/source/m/mock/mock-%{version}.tar.gz # PATCH-FIX-UPSTREAM speilicke@suse.com -- http://code.google.com/p/mock/issues/detail?id=194 Patch0: mock-unittest2py27.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: python-devel BuildRequires: python-setuptools %if 0%{?suse_version} && 0%{?suse_version} < 1140 BuildRequires: python-unittest2 %endif %if 0%{?suse_version} && 0%{?suse_version} <= 1110 %{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %else BuildArch: noarch %endif %description mock is a Python module that provides a core Mock class. It removes the need to create a host of stubs throughout your test suite. After performing an action, you can make assertions about which methods / attributes were used and arguments they were called with. You can also specify return values and set needed attributes in the normal way. %prep %setup -q -n mock-%{version} %patch0 -p1 rm -rf html/.doctrees # Remove junk %build python setup.py build %install python setup.py install --prefix=%{_prefix} --root=%{buildroot} %check python setup.py test %files %defattr(-,root,root,-) %doc README.txt LICENSE.txt html %{python_sitelib}/* %changelog * Tue Feb 18 2014 ro@suse.de - added LICENSE.txt as doc file * Wed Feb 12 2014 cfarrell@suse.com - license update: BSD-2-Clause See the License.txt file * Wed Feb 12 2014 speilicke@suse.com - Replace python27x.diff with mock-unittest2py27.patch - Rather use "setup.py test" * Mon Feb 10 2014 dmueller@suse.com - add python27x.diff: Avoid dependency on unittest2 for anything newer than Python 2.7.x (bnc#863813) * Thu Oct 24 2013 speilicke@suse.com - Require python-setuptools instead of distribute (upstreams merged) * Fri Jan 11 2013 p.drouand@gmail.com - Initial python3 support * Fri Nov 23 2012 saschpe@suse.de - Update to version 1.0.1 + Functions decorated with patch variants have a __wrapped__ attribute pointing to the original function. This brings compatibility with the default behaviour in Python 3.3 (due to a new feature in functools.wraps). + See docs/changelog.txt for details * Sat Mar 10 2012 saschpe@gmx.de - Update to version 0.8.0: - See docs/changelog.txt for details * Fri Sep 2 2011 saschpe@suse.de - Update to version 0.7.2: * BUGFIX: instances of list subclasses can now be used as mock specs * BUGFIX: MagicMock equality / inequality protocol methods changed to use the default equality / inequality. - Simpler spec file * Tue Jan 25 2011 saschpe@suse.de - cleaned up spec file: * fixed noarch check (to make openSUSE-11.1 x86_64 bit work) * recompressed tarball with bzip2 * set RPM optflags * Fri Jan 21 2011 mapleoin@lavabit.com - fixed SourceURL * Fri Jan 21 2011 mapleoin@lavabit.com - removed DOS line-endings from doc file - removed spurious permissions from docs * Thu Jan 20 2011 mapleoin@lavabit.com - added README, docs and tests - run tests during %%%%check phase * Thu Jan 20 2011 mapleoin@lavabit.com - fixed Source URL * Thu Dec 9 2010 mapleoin@lavabit.com - fixed Group - set BuildArch to noarch - added py_requires macro * Tue Dec 7 2010 mapleoin@lavabit.com - initial package