# # spec file # # Copyright (c) 2023 SUSE LLC # # 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 https://bugs.opensuse.org/ # %{?!python_module:%define python_module() python-%{**} python3-%{**}} # A build cycle exists between python-extras and python-testtools. %global flavor %{nil} %if "%{flavor}" == "test" %define psuffix -test %bcond_without test %else %define psuffix %{nil} %bcond_with test %endif %{?sle15_python_module_pythons} Name: python-extras%{psuffix} Version: 1.0.0 Release: 6.12 Summary: Extra bits for Python License: MIT URL: https://github.com/testing-cabal/extras Source: https://files.pythonhosted.org/packages/source/e/extras/extras-%{version}.tar.gz BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: python-rpm-macros # Break cycle #!BuildIgnore: python-extras BuildArch: noarch # Test requirements: %if %{with test} BuildRequires: %{python_module testtools} %endif %python_subpackages %description extras is a set of extensions to the Python standard library, originally written to make the code within testtools cleaner, but now split out for general use outside of a testing context. %prep %setup -q -n extras-%{version} %build %python_build %install %if !%{with test} %python_install %python_expand %fdupes %{buildroot}%{$python_sitelib} %endif %if %{with test} %check %python_exec -m unittest discover %endif %if !%{with test} %files %{python_files} %license LICENSE %doc NEWS README.rst %{python_sitelib}/extras %{python_sitelib}/extras-%{version}-py%{python_version}.egg-info/ %endif %changelog * Fri Apr 21 2023 Dirk Müller - add sle15_python_module_pythons (jsc#PED-68) * Thu Apr 13 2023 Matej Cepl - Make calling of %%{sle15modernpython} optional. * Wed Jun 10 2020 Marketa Calabkova - replace nose - enable testing by default with multibuild * Mon Oct 14 2019 Matej Cepl - Replace %%fdupes -s with plain %%fdupes; hardlinks are better. * Wed Dec 5 2018 Jan Engelhardt - Trim bias from descriptions. * Tue Dec 4 2018 Matej Cepl - Remove superfluous devel dependency for noarch package * Sat Apr 1 2017 aloisio@gmx.com - Converted to single-spec * Wed Aug 31 2016 aplanas@suse.com - User https schema for Source URL * Tue Aug 30 2016 tbechtold@suse.com - Use pypi.io as Source url * Tue Aug 30 2016 tbechtold@suse.com update to version 1.0.0 * Add trove classifiers specifying Python 3 support. * Release 1.0.0. * Add a tox.ini for testing with. * Add a .travis.yml. * Handle import cycles. * Support universal wheels * Fri Mar 7 2014 speilicke@suse.com - Add 'tests' build conditional * Mon Nov 25 2013 speilicke@suse.com - Drop nose buildrequires, use testtools directly * Mon Apr 29 2013 dmueller@suse.com - update to 0.0.3: * Fix support with older testtools * Mon Jan 14 2013 saschpe@suse.de - Run testsuite - Add documentation - Use SPDX style license (MIT) * Mon Jan 14 2013 dmueller@suse.com - Initial package (0.0.2)