commit 7b4f41a78b940bc5b420613fc5e1a19b1feab1f3d05700cbcae2ca0a4bee413d Author: Markéta Machová Date: Thu May 15 11:03:40 2025 +0000 - Convert to pip-based build OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-blessings?expand=0&rev=13 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/blessings-1.7.tar.gz b/blessings-1.7.tar.gz new file mode 100644 index 0000000..edd42e6 --- /dev/null +++ b/blessings-1.7.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98e5854d805f50a5b58ac2333411b0482516a8210f23f43308baeb58d77c157d +size 28194 diff --git a/python-blessings.changes b/python-blessings.changes new file mode 100644 index 0000000..0e9855e --- /dev/null +++ b/python-blessings.changes @@ -0,0 +1,48 @@ +------------------------------------------------------------------- +Wed May 14 12:27:41 UTC 2025 - Markéta Machová + +- Convert to pip-based build + +------------------------------------------------------------------- +Fri Apr 21 12:22:46 UTC 2023 - Dirk Müller + +- add sle15_python_module_pythons (jsc#PED-68) + +------------------------------------------------------------------- +Thu Apr 13 22:40:18 UTC 2023 - Matej Cepl + +- Make calling of %{sle15modernpython} optional. + +------------------------------------------------------------------- +Fri Mar 27 10:08:34 UTC 2020 - Paolo Stivanin + +- 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: + * Don’t 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 + + diff --git a/python-blessings.spec b/python-blessings.spec new file mode 100644 index 0000000..f91834b --- /dev/null +++ b/python-blessings.spec @@ -0,0 +1,62 @@ +# +# spec file for package python-blessings +# +# Copyright (c) 2025 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-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 pip} +BuildRequires: %{python_module setuptools} +BuildRequires: %{python_module six} +BuildRequires: %{python_module wheel} +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 +%pyproject_wheel + +%install +%pyproject_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}/blessings +%{python_sitelib}/blessings-%{version}*-info + +%changelog