Sync from SUSE:SLFO:Main python-blessings revision 9651ce69ef69b20ba599c9232912dfb3

This commit is contained in:
Adrian Schröter 2024-05-03 20:14:25 +02:00
commit 914b67e217
4 changed files with 129 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

BIN
blessings-1.7.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

43
python-blessings.changes Normal file
View File

@ -0,0 +1,43 @@
-------------------------------------------------------------------
Fri Apr 21 12:22:46 UTC 2023 - Dirk Müller <dmueller@suse.com>
- add sle15_python_module_pythons (jsc#PED-68)
-------------------------------------------------------------------
Thu Apr 13 22:40:18 UTC 2023 - Matej Cepl <mcepl@suse.com>
- Make calling of %{sle15modernpython} optional.
-------------------------------------------------------------------
Fri Mar 27 10:08:34 UTC 2020 - Paolo Stivanin <info@paolostivanin.com>
- Remove nose dep since we are not running the tests
-------------------------------------------------------------------
Tue Jul 17 13:18:24 UTC 2018 - tchvatal@suse.com
- Version update to 1.7:
* py 2.6 and 3.3 dropped support
* use six
-------------------------------------------------------------------
Sat Jan 6 17:14:43 UTC 2018 - arun@gmx.de
- specfile:
* update copyright year
- update to version 1.6.1:
* Dont crash if number_of_colors() is called when run in a
non-terminal or when does_styling is otherwise false.
-------------------------------------------------------------------
Thu Aug 24 13:33:25 UTC 2017 - jmatejek@suse.com
- singlespec auto-conversion
-------------------------------------------------------------------
Mon Aug 15 00:51:43 UTC 2016 - badshah400@gmail.com
- Initial package

60
python-blessings.spec Normal file
View File

@ -0,0 +1,60 @@
#
# spec file for package python-blessings
#
# Copyright (c) 2023 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-%{**}}
%{?sle15_python_module_pythons}
Name: python-blessings
Version: 1.7
Release: 0
Summary: A thin, practical wrapper around terminal capabilities in Python
License: MIT
Group: Development/Languages/Python
URL: https://github.com/erikrose/blessings
Source: https://files.pythonhosted.org/packages/source/b/blessings/blessings-%{version}.tar.gz
BuildRequires: %{python_module curses}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module six}
BuildRequires: python-rpm-macros
Requires: python-curses
Requires: python-six
BuildArch: noarch
%python_subpackages
%description
Curses-like terminal wrapper with a display based on compositing 2d
arrays of text.
%prep
%setup -q -n blessings-%{version}
%build
%python_build
%install
%python_install
%check
# Can't be run because it expects real term where it can play with colours
#%%python_expand nosetests-%{$python_bin_suffix}
%files %{python_files}
%license LICENSE
%doc README.rst
%{python_sitelib}/*
%changelog