forked from pool/python-radon
* Prevent tomllib error when the `toml` module is not available * Add support for `match` pattern in Python 3.10+, by @DolajoCZ: #227 * Fix typo in Markdown export, reported by @huornlmj: #231 * Remove unnecessary "future" dependency, by @mgorny: #234 * Add `pyproject.toml` support, by @ajslater: #236 * Allow Mando v0.7.1, by @ajslater: #237 * Fix HCHarvester JSON results format, by @benabel: #240 - Use pyproject macros due to the switch to poetry. - Add patch add-scripts-to-pyproject.toml.patch, make sure the CLI tool is built. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-radon?expand=0&rev=28
86 lines
2.5 KiB
RPMSpec
86 lines
2.5 KiB
RPMSpec
#
|
|
# spec file for package python-radon
|
|
#
|
|
# Copyright (c) 2023 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/
|
|
#
|
|
|
|
|
|
%{?sle15_python_module_pythons}
|
|
Name: python-radon
|
|
Version: 6.0.1
|
|
Release: 0
|
|
Summary: Code Metrics in Python
|
|
License: MIT
|
|
URL: https://github.com/rubik/radon
|
|
Source: https://files.pythonhosted.org/packages/source/r/radon/radon-%{version}.tar.gz
|
|
# PATCH-FIX-UPSTREAM gh#rubik/radon#250
|
|
Patch0: add-scripts-to-pyproject.toml.patch
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: %{python_module poetry}
|
|
BuildRequires: %{python_module wheel}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-colorama >= 0.4.1
|
|
Requires: python-mando >= 0.6
|
|
Requires(post): update-alternatives
|
|
Requires(postun):update-alternatives
|
|
BuildArch: noarch
|
|
# SECTION test requirements
|
|
BuildRequires: %{python_module colorama >= 0.4.1}
|
|
BuildRequires: %{python_module mando >= 0.6}
|
|
BuildRequires: %{python_module pytest >= 2.7}
|
|
BuildRequires: %{python_module pytest-mock}
|
|
# /SECTION
|
|
%python_subpackages
|
|
|
|
%description
|
|
Radon is a Python tool that computes various metrics from the source code.
|
|
Radon can compute:
|
|
|
|
* McCabe's complexity**, i.e. cyclomatic complexity
|
|
* raw metrics (these include SLOC, comment lines, blank lines, &c.)
|
|
* Halstead metrics (all of them)
|
|
* Maintainability Index (the one used in Visual Studio)
|
|
|
|
%prep
|
|
%autosetup -p1 -n radon-%{version}
|
|
# unpin mando
|
|
sed -i -E 's/(mando.*),<0\.7/\1/' setup.py
|
|
|
|
%build
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%pyproject_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
%python_clone -a %{buildroot}%{_bindir}/radon
|
|
|
|
%check
|
|
%pytest
|
|
|
|
%post
|
|
%python_install_alternative radon
|
|
|
|
%postun
|
|
%python_uninstall_alternative radon
|
|
|
|
%files %{python_files}
|
|
%doc CHANGELOG README.rst
|
|
%license LICENSE
|
|
%python_alternative %{_bindir}/radon
|
|
%{python_sitelib}/radon
|
|
%{python_sitelib}/radon-%{version}.dist-info
|
|
|
|
%changelog
|