forked from pool/python-blessed
Accepting request 962173 from home:pgajdos:python
- version update to 1.19.1
1.19
* introduced truncate() to truncate a string while retaining the
sequences, #211 by fishermans-friend
* enhancement: Add small sleep in kbhit() on Windows to reduce CPU
load #209 by numerlor
* enhancement: rjust(), ljust(), and center() now accept
SupportsIndex types, #234
* enhancement: When 88 colors is detected, it is now interpreted
as 16 colors rather than raising an AssertionError, #235
* bugfix: Fix global variable declarations in type annotations, #230
by mwchase
1.18
* bugfix: split_seqs() for some sequences like term.move_left(3), #197.
* introduced: type annotations, #192 by dlax.
* bugfix: do not fail when sys.stdin is unset, #195 by Olen
* docfix: correct “Bottom of the screen” example to use end=''
and document about it in location.rst, #188 by pyfisch
- python-mock not required
OBS-URL: https://build.opensuse.org/request/show/962173
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-blessed?expand=0&rev=19
This commit is contained in:
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:58b9464609f54e2eca5f5926db590a5b01fefef882844ce05064f483b8f96c26
|
||||
size 6697685
|
||||
3
blessed-1.19.1.tar.gz
Normal file
3
blessed-1.19.1.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9a0d099695bf621d4680dd6c73f6ad547f6a3442fbdbe80c4b1daa1edbc492fc
|
||||
size 6653802
|
||||
@@ -1,3 +1,26 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 16 12:16:20 UTC 2022 - pgajdos@suse.com
|
||||
|
||||
- version update to 1.19.1
|
||||
1.19
|
||||
* introduced truncate() to truncate a string while retaining the
|
||||
sequences, #211 by fishermans-friend
|
||||
* enhancement: Add small sleep in kbhit() on Windows to reduce CPU
|
||||
load #209 by numerlor
|
||||
* enhancement: rjust(), ljust(), and center() now accept
|
||||
SupportsIndex types, #234
|
||||
* enhancement: When 88 colors is detected, it is now interpreted
|
||||
as 16 colors rather than raising an AssertionError, #235
|
||||
* bugfix: Fix global variable declarations in type annotations, #230
|
||||
by mwchase
|
||||
1.18
|
||||
* bugfix: split_seqs() for some sequences like term.move_left(3), #197.
|
||||
* introduced: type annotations, #192 by dlax.
|
||||
* bugfix: do not fail when sys.stdin is unset, #195 by Olen
|
||||
* docfix: correct “Bottom of the screen” example to use end=''
|
||||
and document about it in location.rst, #188 by pyfisch
|
||||
- python-mock not required
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 26 06:48:05 UTC 2020 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-blessed
|
||||
#
|
||||
# Copyright (c) 2020 SUSE LLC
|
||||
# Copyright (c) 2022 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -17,16 +17,16 @@
|
||||
|
||||
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
%bcond_without python2
|
||||
%define skip_python2 1
|
||||
Name: python-blessed
|
||||
Version: 1.17.10
|
||||
Version: 1.19.1
|
||||
Release: 0
|
||||
Summary: Wrapper around terminal styling, screen positioning, and keyboard input
|
||||
License: MIT
|
||||
URL: https://github.com/jquast/blessed
|
||||
Source: https://files.pythonhosted.org/packages/source/b/blessed/blessed-%{version}.tar.gz
|
||||
BuildRequires: %{python_module curses}
|
||||
BuildRequires: %{python_module mock}
|
||||
BuildRequires: %{python_module pytest-xdist}
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: %{python_module six >= 1.9.0}
|
||||
@@ -37,12 +37,6 @@ Requires: python-curses
|
||||
Requires: python-six >= 1.9.0
|
||||
Requires: python-wcwidth >= 0.1.4
|
||||
BuildArch: noarch
|
||||
%if %{with python2}
|
||||
BuildRequires: python2-backports.functools_lru_cache
|
||||
%endif
|
||||
%ifpython2
|
||||
Requires: python-backports.functools_lru_cache
|
||||
%endif
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
@@ -96,6 +90,7 @@ rm tox.ini
|
||||
|
||||
%check
|
||||
export LANG=en_US.UTF-8
|
||||
export TEST_QUICK=1
|
||||
%pytest tests
|
||||
|
||||
%files %{python_files}
|
||||
|
||||
Reference in New Issue
Block a user