14
0
forked from pool/python-ruff
Files
python-ruff/python-ruff.spec
Ondřej Súkup 67edae790f - update to 0.12.1
* Preview features
   * [flake8-errmsg] Extend EM101 to support byte strings 
   * [flake8-use-pathlib] Add autofix for PTH202 
   * [pygrep-hooks] Add AsyncMock methods to invalid-mock-access (PGH005) 
   * [pylint] Ignore __init__.py files in (PLC0414) 
   * [ruff] Trigger RUF037 for empty string and byte strings 
   * [formatter] Fix missing blank lines before decorated classes in .pyi files 
 * Bug fixes
   * Avoid generating diagnostics with per-file ignores 
   * Handle parenthesized arguments in remove_argument 
   * [flake8-logging] Avoid false positive for exc_info=True outside logger.exception (LOG014) 
   * [flake8-pytest-style] Enforce pytest import for decorators 
   * [flake8-pytest-style] Mark autofix for PT001 and PT023 as unsafe if there's comments in the decorator 
   * [flake8-pytest-style] PT001/PT023 fix makes syntax error on parenthesized decorator 
   * [flake8-raise] Make fix unsafe if it deletes comments (RSE102) 
   * [flake8-simplify] Fix SIM911 autofix creating a syntax error 
   * [flake8-simplify] Fix false negatives for shadowed bindings (SIM910, SIM911) 
   * [flake8-simplify] Preserve original behavior for except () and bare except (SIM105) 
   * [flake8-pyi] Fix PYI041's fix causing TypeError with None | None | ... 
   * [perflint] Fix PERF101 autofix creating a syntax error and mark autofix as unsafe if there are comments in the list call expr 
   * [perflint] Fix false negative in PERF401 
   * [pylint] Avoid flattening nested min/max when outer call has single argument (PLW3301) 
   * [pylint] Fix PLC2801 autofix creating a syntax error 
   * [pylint] Mark PLE0241 autofix as unsafe if there's comments in the base classes 
   * [pylint] Suppress PLE2510/PLE2512/PLE2513/PLE2514/PLE2515 autofix if the text contains an odd number of backslashes 
   * [refurb] Detect more exotic float literals in FURB164 
   * [refurb] Fix FURB163 autofix creating a syntax error for yield expressions 
   * [refurb] Mark FURB129 autofix as unsafe if there's comments in the readlines call 
   * [ruff] Fix false positives and negatives in RUF010

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ruff?expand=0&rev=159
2025-06-28 16:33:02 +00:00

63 lines
1.8 KiB
RPMSpec

#
# spec file for package python-ruff
#
# Copyright (c) 2025 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/
#
%bcond_without libalternatives
%{?sle15_python_module_pythons}
Name: python-ruff
Version: 0.12.1
Release: 0
Summary: An extremely fast Python linter, written in Rust
License: MIT
URL: https://github.com/astral-sh/ruff
Source: https://files.pythonhosted.org/packages/source/r/ruff/ruff-%{version}.tar.gz
Source1: vendor.tar.zst
BuildRequires: %{python_module maturin}
BuildRequires: %{python_module pip}
BuildRequires: cargo-packaging
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Provides: ruff = %{version}-%{release}
Requires: alts
BuildRequires: alts
%python_subpackages
%description
Ruff extremely fast Python linter written in rust supperseding many other linting tools
%prep
%autosetup -a1 -p1 -n ruff-%{version}
%build
%pyproject_wheel
%install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitearch}
%python_clone -a %{buildroot}%{_bindir}/ruff
%python_group_libalternatives ruff
%pre
%python_libalternatives_reset_alternative ruff
%files %{python_files}
%python_alternative %{_bindir}/ruff
%{python_sitearch}/ruff
%{python_sitearch}/ruff-%{version}.dist-info
%changelog