15
0

Accepting request 578863 from home:apersaud:branches:devel:languages:python

update to latest version

OBS-URL: https://build.opensuse.org/request/show/578863
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-curtsies?expand=0&rev=5
This commit is contained in:
Tomáš Chvátal
2018-02-22 07:36:31 +00:00
committed by Git OBS Bridge
parent bd0481cd99
commit ccb41a2179
4 changed files with 44 additions and 6 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ec4639df654357944c201abd0d791d9dfd3ac27ce4f90ba1c2991aaf07af92ee
size 46740

3
curtsies-0.3.0.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:89c802ec051d01dec6fc983e9856a3706e4ea8265d2940b1f6d504a9e26ed3a9
size 47120

View File

@@ -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

View File

@@ -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