# # spec file for package python # # Copyright (c) 2020 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/ # %{?!python_module:%define python_module() python-%{**} python3-%{**}} %define skip_python2 1 %global flavor %{nil} %if "%{flavor}" == "test" %define psuffix -%{flavor} %bcond_without test %else %define psuffix %{nil} %bcond_with test %endif %bcond_without python2 Name: python-wcwidth%{psuffix} Version: 0.2.5 Release: 3.1 Summary: Number of Terminal column cells of wide-character codes License: MIT URL: https://github.com/jquast/wcwidth Source: https://github.com/jquast/wcwidth/archive/%{version}.tar.gz#/wcwidth-%{version}.tar.gz BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: python-rpm-macros BuildArch: noarch %if %{with test} BuildRequires: %{python_module pytest} BuildRequires: %{python_module wcwidth >= %{version}} %if %{with python2} BuildRequires: python-backports.functools_lru_cache >= 1.2.1 %endif %endif %ifpython2 Requires: python-backports.functools_lru_cache >= 1.2.1 %endif %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 %setup -q -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 %if ! %{with test} %python_install %python_expand %fdupes %{buildroot}%{$python_sitelib} %endif %check %if %{with test} %pytest tests %endif %if ! %{with test} %files %{python_files} %license LICENSE %doc docs/intro.rst %{python_sitelib}/* %endif %changelog * Wed Jun 2 2021 Christophe Giboudeaux - Fix the %%doc files. README.rst is a symlink pointing to docs/intro.rst. * Mon Oct 12 2020 Marketa Calabkova - Remove nonsense keyword (breaks pytest) * Fri Jul 17 2020 Dirk Mueller - update to 0.2.5 * Do not depend on pkg_resources module for list_versions() function. * Sun Jun 14 2020 Dirk Mueller - update to 0.2.4 * minor "bugfix" to avoid using pkg_resources module on import, 7918f58 * may help xonsh xonsh/xonsh#3607 * Mon Jun 8 2020 Dirk Mueller - update to 0.2.3 * add tests * Mon Jun 8 2020 Tomáš Chvátal - Add missing python2 dependency for Leap to work * Tue Jun 2 2020 Marketa Calabkova - Update to version 0.2.2 * Enhancement: Unicode version may be selected by exporting the Environment variable UNICODE_VERSION, such as 13.0, or 6.3.0. See the jquast/ucs-detect CLI utility for automatic detection. * Enhancement: API Documentation is published to readthedocs.org. * Updated tables for all Unicode Specifications with files published in a programmatically consumable format. * Wed May 6 2020 Steve Kowalik - Convert to multibuild to break a self-requires loop. * Wed Mar 25 2020 pgajdos@suse.com - version update to 0.1.9 * Performance optimization by @avylove , PR #35. * Updated tables to Unicode Specification 13.0.0. * Thu Feb 6 2020 Marketa Calabkova - update to 0.1.8 * Unicode v12 and proj. maintenence * remove static analysis * EastAsianWidth v9 -> v12 * README and tox.ini * Wed Oct 2 2019 John Vandenberg - Re-active test suite - Remove test suite from runtime package - Run fdupes * Thu Mar 7 2019 Tomáš Chvátal - Fix test macro expansion * Thu Sep 6 2018 Tomáš Chvátal - Drop devel dependency - Install license file * Mon Apr 3 2017 toddrme2178@gmail.com - Fix source URL. * Sat Apr 1 2017 toddrme2178@gmail.com - Update to version 0.1.7 * **Updated** tables to Unicode Specification 9.0.0. (`PR #18`_). - Update to version 0.1.6 0.1.6 *2016-01-08 Production/Stable* * ``LICENSE`` file now included with distribution. - Update to version 0.1.5 * **Bugfix**: Resolution of "combining_ character width" issue, most especially those that previously returned -1 now often (correctly) return 0. resolved by `Philip Craig`_ via `PR #11`_. * **Deprecated**: The module path ``wcwidth.table_comb`` is no longer available, it has been superseded by module path ``wcwidth.table_zero``. - Implement single-spec version * Mon Jan 30 2017 rjschwei@suse.com - Include in SLE 12 (bsc#1002895, FATE#321630) * Wed May 6 2015 toddrme2178@gmail.com - Initial version + Version 0.1.4