forked from pool/python-setuptools_scm
* fix #1231: don't warn about tool.setuptools.dynamic.version when only using file finder. The warning about combining version guessing with setuptools dynamic versions should only be issued when setuptools-scm is performing version inference, not when it's only being used for its file finder functionality. - Release 9.2.1 * fix #1216: accept and create a warning for usages of version = attr: in setuptools config. unfortunately dozens of projects cargo-culted that antipattern - Release * add simplified activation via setuptools-scm[simple] extra * A new streamlined way to enable version inference without requiring a [tool.setuptools_scm] section. When setuptools-scm[simple] is in build-system.requires and version is in project.dynamic, version inference is automatically enabled with default settings. * unchecked simplified activation - too many projects use setups where it would fail * refine activation logic and add unittest for the relevant cases instead of trying to speedrun setuptools - Release v8.3.1 * fixed #1131: allow self-build without importlib_metadata available on python3.9 - Release v8.3.0 * fix #1013: use modern importlib_metadata in all cases to dedup distribution objects that must shadow based on pythonpath priority starting with python 3.10 this is part of python itself OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-setuptools_scm?expand=0&rev=90
102 lines
3.1 KiB
RPMSpec
102 lines
3.1 KiB
RPMSpec
#
|
|
# spec file for package python-setuptools_scm
|
|
#
|
|
# Copyright (c) 2026 SUSE LLC and contributors
|
|
# Copyright (c) 2024 Andreas Stieger <Andreas.Stieger@gmx.de>
|
|
#
|
|
# 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
|
|
%bcond_without libalternatives
|
|
%{?sle15_python_module_pythons}
|
|
Name: python-setuptools_scm%{psuffix}
|
|
Version: 9.2.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 base >= 3.8}
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module tomli if %python-base < 3.11}
|
|
BuildRequires: %{python_module wheel}
|
|
BuildRequires: alts
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: alts
|
|
Requires: python-packaging >= 20.0
|
|
Requires: python-setuptools
|
|
BuildArch: noarch
|
|
%if 0%{?python_version_nodots} < 311
|
|
Requires: python-tomli >= 1
|
|
%endif
|
|
%if %{with test}
|
|
# Testing requirements
|
|
BuildRequires: %{python_module build}
|
|
BuildRequires: %{python_module pytest-timeout}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module setuptools_scm = %{version}}
|
|
BuildRequires: %{python_module typing-extensions if %python-base < 3.11}
|
|
BuildRequires: ca-certificates-mozilla
|
|
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}
|
|
%python_clone -a %{buildroot}%{_bindir}/setuptools-scm
|
|
%endif
|
|
|
|
%if %{with test}
|
|
%check
|
|
# pip download needs network
|
|
donttest="test_pip_download or test_xmlsec_download_regression"
|
|
%pytest -rsEf -k "not ($donttest)"
|
|
%endif
|
|
|
|
%if !%{with test}
|
|
%files %{python_files}
|
|
%license LICENSE
|
|
%doc README.md CHANGELOG.md
|
|
%python_alternative %{_bindir}/setuptools-scm
|
|
%{python_sitelib}/setuptools_scm
|
|
%{python_sitelib}/setuptools_scm-%{version}*-info
|
|
%endif
|
|
|
|
%changelog
|