forked from pool/python-urwid
* Extend Command enum and update Columns & Pile * Fix double Widget inheritance in the LineBox * Columns PACK item not fit as FIXED and support FLOW * allow not subclassed incomplete widgets in Columns/Pile * Columns rendered with a non-first Selectable widget should not skip other items * Fix regression: Columns render incorrect BOX/FLOW widgets height * Overlay typing and proper repr * support proper repr and str for Canvas * Support FIXED and FLOW operations for Overlay depends on options * Columns accept focus widget as "focus_column" * Filler can act as FLOW widget * allow explicit focus in GridFlow constructor * Columns support correct BOX render only if ALL BOX * support FIXED-only widgets and FIXED rendering for Columns * Support FIXED-only widgets and FIXED rendering for PILE * support FIXED render type for GridFLow * Add run_in_executor helper to the event loop * Feature: Implement keypress and mouse_event default handlers * use Hashable for signal identifier types * Introduce optional dependencies for package * Feature: Support pack() for CheckBox/RadioButton/Button * Fix font in case Font.data is str * Fix: deep TextEnum was improperly resolved * Fix #583: python 3.12 compatibility * Python 37+ migration, Python < 3.7 support dropped * make tests compatible with Python 3.11 * Add two fonts based on Unicode 13 2x3 TRS-80/Teletext mosaic characters * Fix assertion failure when string contains SO but not SI OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-urwid?expand=0&rev=50
74 lines
2.5 KiB
RPMSpec
74 lines
2.5 KiB
RPMSpec
#
|
|
# spec file for package python-urwid
|
|
#
|
|
# Copyright (c) 2024 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/
|
|
#
|
|
|
|
|
|
%{?sle15_python_module_pythons}
|
|
Name: python-urwid
|
|
Version: 2.5.1
|
|
Release: 0
|
|
Summary: A full-featured console (xterm et al.) user interface library
|
|
License: LGPL-2.1-or-later
|
|
URL: http://urwid.org
|
|
Source: https://files.pythonhosted.org/packages/source/u/urwid/urwid-%{version}.tar.gz
|
|
BuildRequires: %{python_module curses}
|
|
BuildRequires: %{python_module devel}
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: %{python_module setuptools_scm}
|
|
BuildRequires: %{python_module typing_extensions}
|
|
BuildRequires: %{python_module wheel}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-curses
|
|
%python_subpackages
|
|
|
|
%description
|
|
Urwid is a console user interface library. It includes many features
|
|
useful for text console application developers including:
|
|
- Applications resize quickly and smoothly
|
|
- Automatic, programmable text alignment and wrapping
|
|
- Simple markup for setting text attributes within blocks of text
|
|
- Powerful list box with programmable content for scrolling all widget types
|
|
- Your choice of event loops: Twisted, Glib or built-in select-based loop
|
|
- Pre-built widgets include edit boxes, buttons, check boxes and radio buttons
|
|
- Display modules include raw, curses, and experimental LCD and web displays
|
|
- Support for UTF-8, simple 8-bit and CJK encodings
|
|
- 256 and 88 color mode support
|
|
- Python 3.2 support
|
|
|
|
%prep
|
|
%autosetup -p1 -n "urwid-%{version}"
|
|
# remove unwanted shebang
|
|
find urwid -name "*.py" | xargs sed -i '1 { /^#!/ d }'
|
|
|
|
%build
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%pyproject_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitearch}
|
|
|
|
%check
|
|
%pyunittest discover -v
|
|
|
|
%files %{python_files}
|
|
%license COPYING
|
|
%doc README.rst
|
|
%{python_sitearch}/urwid
|
|
%{python_sitearch}/urwid-%{version}.dist-info
|
|
|
|
%changelog
|