73 lines
2.4 KiB
RPMSpec
73 lines
2.4 KiB
RPMSpec
#
|
|
# spec file for package saltbundlepy-wcwidth
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
%{?!saltbundlepy_module:%define saltbundlepy_module() saltbundlepy-%{**}}
|
|
%define pythons saltbundlepy
|
|
|
|
Name: saltbundlepy-wcwidth
|
|
Version: 0.2.6
|
|
Release: 0
|
|
Summary: Number of Terminal column cells of wide-character codes
|
|
License: MIT
|
|
Group: Development/Languages/Python
|
|
URL: https://github.com/jquast/wcwidth
|
|
Source: https://files.pythonhosted.org/packages/source/w/wcwidth/wcwidth-%{version}.tar.gz
|
|
BuildRequires: %{saltbundlepy_module base >= 3.10}
|
|
BuildRequires: %{saltbundlepy_module pytest}
|
|
BuildRequires: %{saltbundlepy_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: saltbundlepy-rpm-macros
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
This API is mainly for Terminal Emulator implementors -- any python
|
|
program that attempts to determine the printable width of a string on
|
|
a Terminal. It is implemented in python (no C library calls) and has
|
|
no 3rd-party dependencies.
|
|
|
|
It is certainly possible to use your Operating System's wcwidth(3)
|
|
and wcswidth(3) calls if it is POSIX-conforming, but this would not
|
|
be possible on non-POSIX platforms, such as Windows, or for
|
|
alternative Python implementations, such as jython. It is also
|
|
commonly many releases older than the most current Unicode Standard
|
|
release files, which this project aims to track.
|
|
|
|
%prep
|
|
%autosetup -p1 -n wcwidth-%{version}
|
|
sed -i 's/--cov[-=a-z]*//g' tox.ini
|
|
# this option is nonsense
|
|
sed -i 's/looponfailroots.*//' tox.ini
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
%pytest tests
|
|
|
|
%files %{python_files}
|
|
%license LICENSE
|
|
%doc docs/intro.rst
|
|
%{python_sitelib}/*
|
|
|
|
%changelog
|