diff --git a/curtsies-0.2.11.tar.gz b/curtsies-0.2.11.tar.gz deleted file mode 100644 index 38f6c03..0000000 --- a/curtsies-0.2.11.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ec4639df654357944c201abd0d791d9dfd3ac27ce4f90ba1c2991aaf07af92ee -size 46740 diff --git a/curtsies-0.3.0.tar.gz b/curtsies-0.3.0.tar.gz new file mode 100644 index 0000000..7f4bf91 --- /dev/null +++ b/curtsies-0.3.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89c802ec051d01dec6fc983e9856a3706e4ea8265d2940b1f6d504a9e26ed3a9 +size 47120 diff --git a/python-curtsies.changes b/python-curtsies.changes index f611ab3..f28c12f 100644 --- a/python-curtsies.changes +++ b/python-curtsies.changes @@ -1,3 +1,26 @@ +------------------------------------------------------------------- +Tue Feb 20 19:32:54 UTC 2018 - arun@gmx.de + +- specfile: + * update copyright year + * update url + * require typing module for older python versions + +- update to version 0.3.0: + * Change name of "dark" color to "black" + * Drop support for Python 2.6 and 3.3 + * New FmtStr method width_aware_splitlines which cuts up a FmtStr in + linear time + +- changes from version 0.2.12: + * fix accidentally quadratic width_aware_slice behavior (fixes + bpython #729) This bug causes bpython to hang on large + output. Thanks Ben Wiederhake! + * Allow curtsies to be run on non-main threads (useful for bpython + #555) This should allow bpython to be run in a variety of + situations like Django's runserver + * Add function keys for some keyboard/terminal setups + ------------------------------------------------------------------- Thu Aug 31 22:14:20 UTC 2017 - toddrme2178@gmail.com diff --git a/python-curtsies.spec b/python-curtsies.spec index ff04031..2805c08 100644 --- a/python-curtsies.spec +++ b/python-curtsies.spec @@ -1,7 +1,7 @@ # # spec file for package python-curtsies # -# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,12 +18,12 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-curtsies -Version: 0.2.11 +Version: 0.3.0 Release: 0 Summary: Curses-like terminal wrapper, with colored strings! License: MIT Group: Development/Languages/Python -Url: https://github.com/thomasballinger/curtsies +Url: https://github.com/bpython/curtsies Source: https://files.pythonhosted.org/packages/source/c/curtsies/curtsies-%{version}.tar.gz BuildRequires: %{python_module blessings} BuildRequires: %{python_module devel} @@ -33,7 +33,22 @@ BuildRequires: %{python_module pyte} BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: python-rpm-macros +BuildRequires: python2-typing +# do not require python3-typing for python >= 3.5 +%if 0%{?suse_version} <= 1320 +BuildRequires: python3-typing +%endif + Requires: python-blessings +%ifpython2 +Requires: python-typing +%endif +%ifpython3 +%if %{python3_version_nodots} < 35 +Requires: python-typing +%endif +%endif + BuildArch: noarch %python_subpackages