Matej Cepl
3667b0bd77
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-setuptools_scm?expand=0&rev=40
86 lines
2.5 KiB
RPMSpec
86 lines
2.5 KiB
RPMSpec
#
|
|
# spec file for package python-setuptools_scm
|
|
#
|
|
# Copyright (c) 2019 SUSE LINUX 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
%global flavor @BUILD_FLAVOR@%{nil}
|
|
%if "%{flavor}" == "test"
|
|
%define test 1
|
|
%bcond_without test
|
|
%else
|
|
%bcond_with test
|
|
%endif
|
|
%if %{with test}
|
|
Name: python-setuptools_scm-%{flavor}
|
|
%else
|
|
Name: python-setuptools_scm
|
|
%endif
|
|
Version: 3.1.0
|
|
Release: 0
|
|
Summary: Python setuptools handler for SCM tags
|
|
License: MIT
|
|
Group: Development/Languages/Python
|
|
URL: https://github.com/pypa/setuptools_scm
|
|
Source: https://files.pythonhosted.org/packages/source/s/setuptools_scm/setuptools_scm-%{version}.tar.gz
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-setuptools
|
|
BuildArch: noarch
|
|
%if %{with test}
|
|
# Testing requirements
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module setuptools_scm = %{version}}
|
|
BuildRequires: git
|
|
%endif
|
|
%if 0%{?suse_version} || 0%{?fedora_version} >= 24
|
|
Recommends: git
|
|
%endif
|
|
%python_subpackages
|
|
|
|
%description
|
|
The setuptools_scm package handles managing one's Python package versions
|
|
in SCM metadata. It also handles file finders for the supperted SCMs.
|
|
|
|
%prep
|
|
%setup -q -n setuptools_scm-%{version}
|
|
rm tox.ini
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%if !%{with test}
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
%endif
|
|
|
|
%if %{with test}
|
|
%check
|
|
%python_expand PYTHONPATH=%{$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 or test_mercurial or hg)'
|
|
%endif
|
|
|
|
%files %{python_files}
|
|
%license LICENSE
|
|
%if !%{with test}
|
|
%doc README.rst CHANGELOG.rst
|
|
%{python_sitelib}/setuptools_scm*
|
|
%endif
|
|
|
|
%changelog
|