2015-08-14 11:02:36 +02:00
|
|
|
#
|
2020-05-06 11:37:05 +02:00
|
|
|
# spec file for package python
|
2015-08-14 11:02:36 +02:00
|
|
|
#
|
2020-02-06 16:00:55 +01:00
|
|
|
# Copyright (c) 2020 SUSE LLC
|
2015-08-14 11:02:36 +02:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2019-03-07 12:18:38 +01:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2015-08-14 11:02:36 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
|
2017-04-01 23:39:52 +02:00
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
2020-05-06 11:58:14 +02:00
|
|
|
%global flavor @BUILD_FLAVOR@%{nil}
|
2020-05-06 04:34:31 +02:00
|
|
|
%if "%{flavor}" == "test"
|
|
|
|
%bcond_without test
|
2020-05-06 11:37:05 +02:00
|
|
|
%define psuffix -%{flavor}
|
2020-05-06 04:34:31 +02:00
|
|
|
%else
|
|
|
|
%bcond_with test
|
2020-05-06 11:37:05 +02:00
|
|
|
%define psuffix %{nil}
|
2020-05-06 04:34:31 +02:00
|
|
|
%endif
|
2020-05-06 11:37:05 +02:00
|
|
|
Name: python-wcwidth%{psuffix}
|
2020-03-25 16:11:54 +01:00
|
|
|
Version: 0.1.9
|
2015-08-14 11:02:36 +02:00
|
|
|
Release: 0
|
|
|
|
Summary: Number of Terminal column cells of wide-character codes
|
|
|
|
License: MIT
|
|
|
|
Group: Development/Languages/Python
|
2018-09-06 12:10:42 +02:00
|
|
|
URL: https://github.com/jquast/wcwidth
|
2017-04-03 16:33:48 +02:00
|
|
|
Source: https://files.pythonhosted.org/packages/source/w/wcwidth/wcwidth-%{version}.tar.gz
|
2020-05-06 04:34:31 +02:00
|
|
|
%if %{with test}
|
2020-03-25 16:11:54 +01:00
|
|
|
BuildRequires: %{python_module pytest}
|
2020-05-06 04:34:31 +02:00
|
|
|
%endif
|
2017-04-01 23:39:52 +02:00
|
|
|
BuildRequires: %{python_module setuptools}
|
2019-10-02 13:58:19 +02:00
|
|
|
BuildRequires: fdupes
|
2018-09-06 12:10:42 +02:00
|
|
|
BuildRequires: python-rpm-macros
|
2015-08-14 11:02:36 +02:00
|
|
|
BuildArch: noarch
|
2017-04-01 23:39:52 +02:00
|
|
|
%python_subpackages
|
2015-08-14 11:02:36 +02:00
|
|
|
|
|
|
|
%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
|
|
|
|
%setup -q -n wcwidth-%{version}
|
|
|
|
|
|
|
|
%build
|
2017-04-01 23:39:52 +02:00
|
|
|
%python_build
|
2015-08-14 11:02:36 +02:00
|
|
|
|
|
|
|
%install
|
2020-05-06 11:37:05 +02:00
|
|
|
%if ! %{with test}
|
2017-04-01 23:39:52 +02:00
|
|
|
%python_install
|
|
|
|
|
2019-10-02 13:58:19 +02:00
|
|
|
# Remove tests from runtime
|
|
|
|
%{python_expand rm -r %{buildroot}%{$python_sitelib}/wcwidth/tests/
|
|
|
|
%fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
}
|
2020-05-06 11:37:05 +02:00
|
|
|
%endif
|
2015-08-14 11:02:36 +02:00
|
|
|
|
|
|
|
%check
|
2020-05-06 04:34:31 +02:00
|
|
|
%if %{with test}
|
2020-03-25 16:11:54 +01:00
|
|
|
%pytest
|
2020-05-06 04:34:31 +02:00
|
|
|
%endif
|
2015-08-14 11:02:36 +02:00
|
|
|
|
2020-05-06 11:37:05 +02:00
|
|
|
%if ! %{with test}
|
|
|
|
|
2017-04-01 23:39:52 +02:00
|
|
|
%files %{python_files}
|
2018-09-06 12:10:42 +02:00
|
|
|
%license LICENSE.txt
|
2015-08-14 11:02:36 +02:00
|
|
|
%doc README.rst
|
|
|
|
%{python_sitelib}/*
|
2020-05-06 11:37:05 +02:00
|
|
|
%endif
|
2015-08-14 11:02:36 +02:00
|
|
|
|
|
|
|
%changelog
|