14
0
Files
python-setuptools_scm/python-setuptools_scm.spec
Dirk Mueller 0eb3777d3d - update to 6.4.2:
* fix #671 : NoReturn is not avaliable in painfully dead python 3.6
  * fix regression #669: restore get_version signature
  * fix #668: harden the selftest for distribution extras
  * compatibility adjustments for setuptools >58
  * only put minimal setuptools version into toml extra to warn people with old strict pins
  * coorectly handle hg-git self-use
  * better mercurial detection
  * modernize packaging setup
  * python 3.10 support
  * better handling of setuptools install command deprecation
  * consider ``pyproject.tomls`` when running as command
  * use list in git describe command to avoid shell expansions while supporting both windows and posix
  * add ``--strip-dev`` flag to ``python -m setuptools_scm`` to print the next guessed version cleanly
  * ensure no-guess-dev will fail on bad tags instead of generating invalid versions
  * ensure we use utc everywhere to avoid confusion

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-setuptools_scm?expand=0&rev=66
2022-02-05 21:54:46 +00:00

91 lines
2.5 KiB
RPMSpec

#
# spec file
#
# Copyright (c) 2022 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() python3-%{**}}
%global flavor @BUILD_FLAVOR@%{nil}
%if "%{flavor}" == "test"
%define psuffix -test
%bcond_without test
%else
%define psuffix %{nil}
%bcond_with test
%endif
%define skip_python2 1
Name: python-setuptools_scm%{psuffix}
Version: 6.4.2
Release: 0
Summary: Python setuptools handler for SCM tags
License: MIT
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 packaging >= 20.0}
BuildRequires: %{python_module setuptools >= 45}
BuildRequires: %{python_module tomli >= 1.0}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-packaging >= 20.0
Requires: python-setuptools
Requires: python-tomli
BuildArch: noarch
%if %{with test}
# Testing requirements
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools_scm = %{version}}
BuildRequires: %{python_module virtualenv}
BuildRequires: git-core
BuildRequires: mercurial
%endif
%if 0%{?suse_version} || 0%{?fedora_version} >= 24
Recommends: git-core
%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}
%autopatch -p1
%build
%python_build
%install
%if !%{with test}
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%endif
%if %{with test}
%check
# pip download needs network
%pytest -k "not test_pip_download"
%endif
%if !%{with test}
%files %{python_files}
%license LICENSE
%doc README.rst CHANGELOG.rst
%{python_sitelib}/setuptools_scm
%{python_sitelib}/setuptools_scm-%{version}*-info
%endif
%changelog