2018-05-09 03:38:32 +00:00
|
|
|
#
|
|
|
|
|
# spec file for package python-blessed
|
|
|
|
|
#
|
Accepting request 766372 from home:mcalabkova:branches:devel:languages:python
- update to 1.17.0
* 24-bit color support
* move_up(), move_down(), Terminal.move_left(), move_right() which
are strings that move the cursor one cell in the respective
direction, are now also callables for moving n cells to the
given direction, such as term.move_right(9).
* Context Managers, fullscreen(), hidden_cursor(), and keypad()
now flush the stream after writing their sequences.
* deprecated: superscript, subscript, shadow, and dim are no longer
“compoundable” with colors. Use Unicode text or 256 or 24-bit
color codes instead.
* more on https://blessed.readthedocs.io/en/latest/history.html
OBS-URL: https://build.opensuse.org/request/show/766372
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-blessed?expand=0&rev=11
2020-01-22 16:04:01 +00:00
|
|
|
# Copyright (c) 2020 SUSE LLC
|
2018-05-09 03:38:32 +00: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.
|
|
|
|
|
|
2018-12-04 13:17:01 +00:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2018-07-17 13:29:14 +00:00
|
|
|
#
|
2018-05-09 03:38:32 +00:00
|
|
|
|
|
|
|
|
|
Accepting request 766372 from home:mcalabkova:branches:devel:languages:python
- update to 1.17.0
* 24-bit color support
* move_up(), move_down(), Terminal.move_left(), move_right() which
are strings that move the cursor one cell in the respective
direction, are now also callables for moving n cells to the
given direction, such as term.move_right(9).
* Context Managers, fullscreen(), hidden_cursor(), and keypad()
now flush the stream after writing their sequences.
* deprecated: superscript, subscript, shadow, and dim are no longer
“compoundable” with colors. Use Unicode text or 256 or 24-bit
color codes instead.
* more on https://blessed.readthedocs.io/en/latest/history.html
OBS-URL: https://build.opensuse.org/request/show/766372
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-blessed?expand=0&rev=11
2020-01-22 16:04:01 +00:00
|
|
|
%bcond_without python2
|
2018-05-09 03:38:32 +00:00
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
|
|
|
Name: python-blessed
|
2020-03-26 15:54:50 +00:00
|
|
|
Version: 1.17.4
|
2018-05-09 03:38:32 +00:00
|
|
|
Release: 0
|
|
|
|
|
Summary: Wrapper around terminal styling, screen positioning, and keyboard input
|
2018-07-17 13:29:14 +00:00
|
|
|
License: MIT
|
2018-05-09 03:38:32 +00:00
|
|
|
Group: Development/Languages/Python
|
2019-03-06 13:58:25 +00:00
|
|
|
URL: https://github.com/jquast/blessed
|
2018-05-09 03:38:32 +00:00
|
|
|
Source: https://files.pythonhosted.org/packages/source/b/blessed/blessed-%{version}.tar.gz
|
|
|
|
|
BuildRequires: %{python_module curses}
|
|
|
|
|
BuildRequires: %{python_module mock}
|
Accepting request 766372 from home:mcalabkova:branches:devel:languages:python
- update to 1.17.0
* 24-bit color support
* move_up(), move_down(), Terminal.move_left(), move_right() which
are strings that move the cursor one cell in the respective
direction, are now also callables for moving n cells to the
given direction, such as term.move_right(9).
* Context Managers, fullscreen(), hidden_cursor(), and keypad()
now flush the stream after writing their sequences.
* deprecated: superscript, subscript, shadow, and dim are no longer
“compoundable” with colors. Use Unicode text or 256 or 24-bit
color codes instead.
* more on https://blessed.readthedocs.io/en/latest/history.html
OBS-URL: https://build.opensuse.org/request/show/766372
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-blessed?expand=0&rev=11
2020-01-22 16:04:01 +00:00
|
|
|
BuildRequires: %{python_module pytest < 5}
|
2018-05-09 03:38:32 +00:00
|
|
|
BuildRequires: %{python_module pytest-cov}
|
|
|
|
|
BuildRequires: %{python_module pytest-xdist}
|
2019-03-06 13:58:25 +00:00
|
|
|
BuildRequires: %{python_module setuptools}
|
2018-05-09 03:38:32 +00:00
|
|
|
BuildRequires: %{python_module six >= 1.9.0}
|
|
|
|
|
BuildRequires: %{python_module wcwidth >= 0.1.4}
|
2019-03-06 13:58:25 +00:00
|
|
|
BuildRequires: fdupes
|
|
|
|
|
BuildRequires: python-rpm-macros
|
2018-05-09 03:38:32 +00:00
|
|
|
Requires: python-curses
|
|
|
|
|
Requires: python-six >= 1.9.0
|
|
|
|
|
Requires: python-wcwidth >= 0.1.4
|
|
|
|
|
BuildArch: noarch
|
Accepting request 766372 from home:mcalabkova:branches:devel:languages:python
- update to 1.17.0
* 24-bit color support
* move_up(), move_down(), Terminal.move_left(), move_right() which
are strings that move the cursor one cell in the respective
direction, are now also callables for moving n cells to the
given direction, such as term.move_right(9).
* Context Managers, fullscreen(), hidden_cursor(), and keypad()
now flush the stream after writing their sequences.
* deprecated: superscript, subscript, shadow, and dim are no longer
“compoundable” with colors. Use Unicode text or 256 or 24-bit
color codes instead.
* more on https://blessed.readthedocs.io/en/latest/history.html
OBS-URL: https://build.opensuse.org/request/show/766372
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-blessed?expand=0&rev=11
2020-01-22 16:04:01 +00:00
|
|
|
%if %{with python2}
|
|
|
|
|
BuildRequires: python2-backports.functools_lru_cache
|
|
|
|
|
%endif
|
|
|
|
|
%ifpython2
|
|
|
|
|
Requires: python-backports.functools_lru_cache
|
|
|
|
|
%endif
|
2018-05-09 03:38:32 +00:00
|
|
|
%python_subpackages
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
Blessed is a thin, practical wrapper around terminal capabilities in Python.
|
|
|
|
|
|
|
|
|
|
Brief Overview
|
|
|
|
|
--------------
|
|
|
|
|
|
|
|
|
|
*Blessed* is a more simplified wrapper around curses, providing :
|
|
|
|
|
|
|
|
|
|
* Styles, color, and maybe a little positioning without necessarily
|
|
|
|
|
clearing the whole screen first.
|
|
|
|
|
* Works great with standard Python string formatting.
|
|
|
|
|
* Provides up-to-the-moment terminal height and width, so you can respond to
|
|
|
|
|
terminal size changes.
|
|
|
|
|
* Avoids making a mess if the output gets piped to a non-terminal:
|
|
|
|
|
outputs to any file-like object such as *StringIO*, files, or pipes.
|
|
|
|
|
* Uses the `terminfo(5)`_ database so it works with any terminal type
|
|
|
|
|
and supports any terminal capability: No more C-like calls to tigetstr_
|
|
|
|
|
and tparm_.
|
|
|
|
|
* Keeps a minimum of internal state, so you can feel free to mix and match with
|
|
|
|
|
calls to curses or whatever other terminal libraries you like.
|
|
|
|
|
* Provides plenty of context managers to safely express terminal modes,
|
|
|
|
|
automatically restoring the terminal to a safe state on exit.
|
|
|
|
|
* Act intelligently when somebody redirects your output to a file, omitting
|
|
|
|
|
all of the terminal sequences such as styling, colors, or positioning.
|
|
|
|
|
* Dead-simple keyboard handling: safely decoding unicode input in your
|
|
|
|
|
system's preferred locale and supports application/arrow keys.
|
|
|
|
|
* Allows the printable length of strings containing sequences to be
|
|
|
|
|
determined.
|
|
|
|
|
|
|
|
|
|
Blessed **does not** provide...
|
|
|
|
|
|
|
|
|
|
* Windows command prompt support. A PDCurses_ build of python for windows
|
|
|
|
|
provides only partial support at this time -- there are plans to merge with
|
|
|
|
|
the ansi module in concert with colorama to resolve this.
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%setup -q -n blessed-%{version}
|
2019-03-06 13:58:25 +00:00
|
|
|
# disable cons25 tests as they fail in OBS
|
Accepting request 766372 from home:mcalabkova:branches:devel:languages:python
- update to 1.17.0
* 24-bit color support
* move_up(), move_down(), Terminal.move_left(), move_right() which
are strings that move the cursor one cell in the respective
direction, are now also callables for moving n cells to the
given direction, such as term.move_right(9).
* Context Managers, fullscreen(), hidden_cursor(), and keypad()
now flush the stream after writing their sequences.
* deprecated: superscript, subscript, shadow, and dim are no longer
“compoundable” with colors. Use Unicode text or 256 or 24-bit
color codes instead.
* more on https://blessed.readthedocs.io/en/latest/history.html
OBS-URL: https://build.opensuse.org/request/show/766372
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-blessed?expand=0&rev=11
2020-01-22 16:04:01 +00:00
|
|
|
sed -i -e 's:cons25 ::' tests/accessories.py
|
2018-05-09 03:38:32 +00:00
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
%python_build
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
%python_install
|
|
|
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
|
export LANG=en_US.UTF-8
|
Accepting request 766372 from home:mcalabkova:branches:devel:languages:python
- update to 1.17.0
* 24-bit color support
* move_up(), move_down(), Terminal.move_left(), move_right() which
are strings that move the cursor one cell in the respective
direction, are now also callables for moving n cells to the
given direction, such as term.move_right(9).
* Context Managers, fullscreen(), hidden_cursor(), and keypad()
now flush the stream after writing their sequences.
* deprecated: superscript, subscript, shadow, and dim are no longer
“compoundable” with colors. Use Unicode text or 256 or 24-bit
color codes instead.
* more on https://blessed.readthedocs.io/en/latest/history.html
OBS-URL: https://build.opensuse.org/request/show/766372
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-blessed?expand=0&rev=11
2020-01-22 16:04:01 +00:00
|
|
|
%pytest tests
|
2018-05-09 03:38:32 +00:00
|
|
|
|
|
|
|
|
%files %{python_files}
|
|
|
|
|
%doc README.rst
|
|
|
|
|
%license LICENSE
|
|
|
|
|
%{python_sitelib}/*
|
|
|
|
|
|
|
|
|
|
%changelog
|