forked from pool/python-python-lsp-black
- Skip syntax error test, failig with black 24.3 * gh#python-lsp/python-lsp-black#57 OBS-URL: https://build.opensuse.org/request/show/1159901 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-lsp-black?expand=0&rev=20
81 lines
2.9 KiB
RPMSpec
81 lines
2.9 KiB
RPMSpec
#
|
|
# spec file for package python-python-lsp-black
|
|
#
|
|
# Copyright (c) 2024 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-python-lsp-black
|
|
Version: 2.0.0
|
|
Release: 0
|
|
Summary: Black plugin for the Python LSP Server
|
|
License: MIT
|
|
URL: https://github.com/python-lsp/python-lsp-black
|
|
Source: https://github.com/python-lsp/python-lsp-black/archive/refs/tags/v%{version}.tar.gz#/python-lsp-black-%{version}-gh.tar.gz
|
|
# PATCH-FIX-UPSTREAM python-lsp-black-pr56-black24.2.patch gh#python-lsp/python-lsp-black#56
|
|
Patch0: https://github.com/python-lsp/python-lsp-black/pull/56.patch#/python-lsp-black-pr56-black24.2.patch
|
|
BuildRequires: %{python_module base >= 3.8}
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module wheel}
|
|
BuildRequires: python-rpm-macros
|
|
# SECTION test requirements
|
|
BuildRequires: %{python_module black >= 23.11.0}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module python-lsp-server >= 1.4.0}
|
|
BuildRequires: %{python_module tomli if %python-base < 3.11}
|
|
# /SECTION
|
|
BuildRequires: fdupes
|
|
Requires: python-black >= 23.11.0
|
|
Requires: python-python-lsp-server >= 1.4
|
|
%if 0%{?python_version_nodots} < 311
|
|
Requires: python-tomli
|
|
%endif
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
Black plugin for the Python LSP Server
|
|
|
|
To avoid unexpected results you should make sure yapf and autopep8 are not installed.
|
|
|
|
- pyls-black can either format an entire file or just the selected text.
|
|
- The code will only be formatted if it is syntactically valid Python.
|
|
- Text selections are treated as if they were a separate Python file.
|
|
Unfortunately this means you can't format an indented block of code.
|
|
- python-lsp-black will use your project's pyproject.toml if it has one.
|
|
|
|
%prep
|
|
%autosetup -p1 -n python-lsp-black-%{version}
|
|
|
|
%build
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%pyproject_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
# New error with black 24.3.0 gh#python-lsp/python-lsp-black#57
|
|
donttest="test_pylsp_format and syntax_error"
|
|
%pytest -k "not ($donttest)"
|
|
|
|
%files %{python_files}
|
|
%doc README.md
|
|
%{python_sitelib}/pylsp_black
|
|
%{python_sitelib}/python_lsp_black-%{version}.dist-info
|
|
|
|
%changelog
|