2015-08-12 15:10:39 +00:00
#
# spec file for package python-setuptools_scm
#
2018-02-27 21:31:52 +00:00
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
2015-08-12 15:10:39 +00:00
#
# 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/
#
2017-03-02 14:49:06 +00:00
2017-03-02 14:38:21 +00:00
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
2018-07-31 10:03:39 +00:00
%global flavor @BUILD_FLAVOR@%{nil}
%if "%{flavor}" == "test"
%define test 1
%bcond_without test
%else
2018-04-14 06:46:36 +00:00
%bcond_with test
2018-07-31 10:03:39 +00:00
%endif
2015-08-12 15:10:39 +00:00
Name : python-setuptools_scm
2018-08-01 07:28:38 +00:00
Version : 3.0.6
2015-08-12 15:10:39 +00:00
Release : 0
Summary : Manage your versions by scm tags
License : MIT
Group : Development/Languages/Python
2018-05-15 08:10:01 +00:00
URL : https://github.com/pypa/setuptools_scm
2017-03-02 15:07:15 +00:00
Source : https://files.pythonhosted.org/packages/source/s/setuptools_scm/setuptools_scm-%{version} .tar.gz
2017-03-02 14:38:21 +00:00
BuildRequires : %{python_module setuptools}
2017-03-02 14:49:06 +00:00
BuildRequires : python-rpm-macros
2018-04-14 06:46:36 +00:00
Requires : python-setuptools
2018-07-31 09:18:18 +00:00
BuildRequires : fdupes
2018-04-14 06:46:36 +00:00
BuildArch : noarch
2017-06-26 14:10:23 +00:00
%if %{with test}
2015-08-12 15:10:39 +00:00
# Testing requirements
2018-07-31 09:18:18 +00:00
BuildRequires : %{python_module pip}
2017-03-02 14:49:06 +00:00
BuildRequires : %{python_module pytest}
2017-06-26 14:10:23 +00:00
BuildRequires : git
2015-08-12 15:10:39 +00:00
BuildRequires : mercurial
2018-07-31 10:03:39 +00:00
Requires : this-is-only-for-build-envs
2017-06-26 14:10:23 +00:00
%endif
2018-07-31 09:18:18 +00:00
%if 0%{?suse_version} || 0%{?fedora_version} >= 24
2015-08-12 15:10:39 +00:00
Recommends: git
Recommends: mecurial
2018-02-27 21:31:52 +00:00
%endif
2017-03-02 14:38:21 +00:00
%python_subpackages
2015-08-12 15:10:39 +00:00
%description
The setuptools_scm package handles managing your python package versions
in scm metadata. It also handles file finders for the supperted scm's.
%prep
%setup -q -n setuptools_scm-%{version}
%build
2017-03-02 14:38:21 +00:00
%python_build
2015-08-12 15:10:39 +00:00
%install
2017-03-02 14:38:21 +00:00
%python_install
2018-07-31 09:18:18 +00:00
%python_expand %fdupes %{buildroot} %{$python_sitelib}
2015-08-12 15:10:39 +00:00
2017-06-26 14:10:23 +00:00
%if %{with test}
2015-08-12 15:10:39 +00:00
%check
2018-07-31 10:03:39 +00:00
%python_expand PYTHONPATH=%{buildroot} %{$python_sitelib} py.test-%{$python_bin_suffix} -v -k 'not (test_pip_download or test_old_setuptools_fails or test_old_setuptools_allows_with_warnings or test_distlib_setuptools_works)'
2017-06-26 14:10:23 +00:00
%endif
2015-08-12 15:10:39 +00:00
2018-04-14 06:46:36 +00:00
%files %{python_files}
%license LICENSE
%doc README.rst CHANGELOG.rst
2018-07-30 07:32:50 +00:00
%{python_sitelib} /setuptools_scm*
2015-08-12 15:10:39 +00:00
%changelog