python-setuptools_scm/python-setuptools_scm.spec
Matej Cepl 2d20371294 Accepting request 1034961 from home:bnavigator:branches:devel:languages:python:numeric
- Update to 7.0.5
  * fixes #742 , #745: correctly hande accidentally released
    archival files
- Release v7.0.4
  * fix #727: correctly handle incomplete archivals from
    setuptools_scm_git_archival
  * fix #691: correctly handle specifying root in pyproject.toml
  * correct root override check condition (to ensure absolute path
    matching)
  * allow root by the cli to be considered relative to the cli
    (using abspath)
- Release v7.0.3
  * fix mercurial usage when pip primes a isolated environment
  * fix regression for branch names on git + add a test
- Release v7.0.2
  * fix #723 and #722: remove bootstrap dependencies
  * bugfix: ensure we read the distribution name from setup.cfg if
    needed even for pyproject
- Release v7.0.1
  * fix #718: Avoid `ModuleNotFoundError` by requiring
    importlib_metadata in python < 3.8
- Release v7.0.0
  * drop python 3.6 support
  * include git archival support
  * fix #707: support git version detection even when git protects
              against mistmatched owners (common with misconfigured
              containers, thanks @chrisburr )
- Release v6.4.3
  * fix #548: correctly handle parsing the commit timestamp of HEAD
    when ``log.showSignature`` is set

OBS-URL: https://build.opensuse.org/request/show/1034961
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-setuptools_scm?expand=0&rev=68
2022-11-10 10:45:44 +00:00

98 lines
2.8 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/
#
%global flavor @BUILD_FLAVOR@%{nil}
%if "%{flavor}" == "test"
%define psuffix -test
%bcond_without test
%else
%define psuffix %{nil}
%bcond_with test
%endif
Name: python-setuptools_scm%{psuffix}
Version: 7.0.5
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 base >= 3.7}
BuildRequires: %{python_module packaging >= 20.0}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools >= 45}
BuildRequires: %{python_module typing-extensions}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-packaging >= 20.0
Requires: python-setuptools
Requires: python-tomli >= 1.0.0
Requires: python-typing-extensions
%if 0%{?python_version_nodots} < 38
Requires: python-importlib-metadata
%endif
BuildArch: noarch
%if %{with test}
# Testing requirements
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
%autosetup -p1 -n setuptools_scm-%{version}
%build
%pyproject_wheel
%install
%if !%{with test}
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%endif
%if %{with test}
%check
# pip download needs network
donttest="test_pip_download"
# tested file not installed into sitelib. Yes the test is named that way.
donttest+=" or test_git_archhival_from_unfiltered"
%pytest -k "not ($donttest)"
%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