diff --git a/1.22.0.tar.gz b/blessed-1.23.0.tar.gz similarity index 47% rename from 1.22.0.tar.gz rename to blessed-1.23.0.tar.gz index a1cd7fbc62c9e7319b30893dd893215027e105a5..e0584c1fca602fccf2bf8c3462511aea6902980d 100644 Binary files a/1.22.0.tar.gz and b/blessed-1.23.0.tar.gz differ diff --git a/python-blessed.spec b/python-blessed.spec index dda05c2ac095ec6b45c3725fe7049aadfe2860cb..21da3ac5d16f40a28d419aeaeff3c4435798a765 100644 --- a/python-blessed.spec +++ b/python-blessed.spec @@ -1,11 +1,11 @@ %global _empty_manifest_terminate_build 0 Name: python-blessed -Version: 1.22.0 +Version: 1.23.0 Release: 1 Summary: Easy, practical library for making terminal apps, by providing an elegant, well-documented interface to Colors, Keyboard input, and screen Positioning capabilities. License: MIT URL: https://github.com/jquast/blessed -Source0: https://github.com/jquast/blessed/archive/refs/tags/%{version}.tar.gz +Source0: https://files.pythonhosted.org/packages/c6/70/057c35a79a2015a6e35e45101d710b7a84b92af0c1104399bb83d33cd0d4/blessed-1.23.0.tar.gz BuildArch: noarch Requires: python3-wcwidth @@ -22,6 +22,8 @@ Provides: python-blessed BuildRequires: python3-devel BuildRequires: zlib >= 1.2.11 BuildRequires: python3-setuptools +BuildRequires: python3-wheel +BuildRequires: python3-build %description -n python3-blessed Blessed is an easy, practical library for making python terminal apps @@ -35,10 +37,10 @@ Blessed is an easy, practical library for making python terminal apps %autosetup -n blessed-%{version} %build -%py3_build +%pyproject_wheel %install -%py3_install +%pyproject_install install -d -m755 %{buildroot}/%{_pkgdocdir} if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi @@ -72,6 +74,13 @@ mv %{buildroot}/doclist.lst . %{_docdir}/* %changelog +* Fri Nov 21 2025 wanggang - 1.23.0-1 +- Update package to version 1.23.0 +- introduced: Environment values FORCE_COLOR, CLICOLOR_FORCE, and NO_COLOR overrides blessed.Terminal argument value, force_styling. +- improved: performance of rgb_downconvert() for 256-color terminals. +- deprecated: Python 2.7 through 3.6 no longer supported. +- bugfix: default timeout for get_bgcolor, get_fgcolor + * Mon Nov 17 2025 dongqi - 1.22.0-1 - Update package to version 1.22.0 Fixes for failing tests