71 lines
2.1 KiB
RPMSpec
71 lines
2.1 KiB
RPMSpec
#
|
|
# spec file for package codespell
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
%define pythons python3
|
|
Name: codespell
|
|
Version: 2.2.4
|
|
Release: 0
|
|
Summary: Source code checker for common misspellings
|
|
License: GPL-2.0-only
|
|
Group: Development/Tools/Other
|
|
URL: https://github.com/codespell-project/codespell/
|
|
Source0: https://github.com/codespell-project/codespell/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
# PATCH-FIX-OPENSUSE - patch_version.patch
|
|
Patch0: patch_version.patch
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
BuildRequires: python3-chardet
|
|
BuildRequires: python3-pip
|
|
BuildRequires: python3-pytest
|
|
BuildRequires: python3-setuptools
|
|
BuildRequires: python3-wheel
|
|
Requires: python3-chardet
|
|
Requires: python3-setuptools
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
codespell fixes common misspellings in text files. It primarily checks
|
|
misspelled words in source code, but it can be used with other files as well.
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch0 -p1
|
|
# remove everything coverage-related
|
|
sed -i '/\-cov/ d' pyproject.toml
|
|
|
|
%build
|
|
%pyproject_wheel
|
|
|
|
%check
|
|
# disable command test; does not work in chroot
|
|
export PATH=$PATH:%{buildroot}%{_bindir}
|
|
%pytest -k 'not test_command'
|
|
|
|
%install
|
|
%pyproject_install
|
|
%fdupes %{buildroot}%{python3_sitelib}
|
|
|
|
%files
|
|
%license COPYING
|
|
%doc README.rst
|
|
%{_bindir}/codespell
|
|
%{python3_sitelib}/codespell_lib
|
|
%{python3_sitelib}/%{name}-%{version}.dist-info
|
|
|
|
%changelog
|