Hello community, here is the log from the commit of package python3-colorama for openSUSE:Factory checked in at 2016-01-15 10:41:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python3-colorama (Old) and /work/SRC/openSUSE:Factory/.python3-colorama.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python3-colorama" Changes: -------- --- /work/SRC/openSUSE:Factory/python3-colorama/python3-colorama.changes 2015-12-14 10:15:27.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.python3-colorama.new/python3-colorama.changes 2016-01-15 10:41:55.000000000 +0100 @@ -1,0 +2,6 @@ +Tue Jan 12 22:18:20 UTC 2016 - [email protected] + +- update to version 0.3.6: + * Fix issue #81: fix ValueError when a closed stream was used + +------------------------------------------------------------------- Old: ---- colorama-0.3.5.tar.gz New: ---- colorama-0.3.6.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python3-colorama.spec ++++++ --- /var/tmp/diff_new_pack.aIqYjJ/_old 2016-01-15 10:41:55.000000000 +0100 +++ /var/tmp/diff_new_pack.aIqYjJ/_new 2016-01-15 10:41:55.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package python3-colorama # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2016 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 @@ -17,7 +17,7 @@ Name: python3-colorama -Version: 0.3.5 +Version: 0.3.6 Release: 0 Summary: Cross-platform colored terminal text License: BSD-3-Clause ++++++ colorama-0.3.5.tar.gz -> colorama-0.3.6.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/colorama-0.3.5/CHANGELOG.rst new/colorama-0.3.6/CHANGELOG.rst --- old/colorama-0.3.5/CHANGELOG.rst 2015-12-12 22:40:27.000000000 +0100 +++ new/colorama-0.3.6/CHANGELOG.rst 2016-01-08 15:20:15.000000000 +0100 @@ -1,3 +1,5 @@ +0.3.6 + * Fix issue #81: fix ValueError when a closed stream was used 0.3.5 * Bumping version to re-upload a wheel distribution 0.3.4 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/colorama-0.3.5/PKG-INFO new/colorama-0.3.6/PKG-INFO --- old/colorama-0.3.5/PKG-INFO 2015-12-12 22:41:45.000000000 +0100 +++ new/colorama-0.3.6/PKG-INFO 2016-01-09 20:05:56.000000000 +0100 @@ -1,9 +1,9 @@ Metadata-Version: 1.1 Name: colorama -Version: 0.3.5 +Version: 0.3.6 Summary: Cross-platform colored terminal text. Home-page: https://github.com/tartley/colorama -Author: Jonathan Hartley +Author: Arnon Yaari Author-email: [email protected] License: BSD Description: .. image:: https://pypip.in/version/colorama/badge.svg @@ -355,7 +355,7 @@ Keywords: color colour terminal text ansi windows crossplatform xplatform Platform: UNKNOWN -Classifier: Development Status :: 4 - Beta +Classifier: Development Status :: 5 - Production/Stable Classifier: Environment :: Console Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: BSD License @@ -369,4 +369,5 @@ Classifier: Programming Language :: Python :: 3.2 Classifier: Programming Language :: Python :: 3.3 Classifier: Programming Language :: Python :: 3.4 +Classifier: Programming Language :: Python :: 3.5 Classifier: Topic :: Terminals diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/colorama-0.3.5/colorama/__init__.py new/colorama-0.3.6/colorama/__init__.py --- old/colorama-0.3.5/colorama/__init__.py 2015-12-12 22:40:42.000000000 +0100 +++ new/colorama-0.3.6/colorama/__init__.py 2016-01-08 15:20:45.000000000 +0100 @@ -3,5 +3,5 @@ from .ansi import Fore, Back, Style, Cursor from .ansitowin32 import AnsiToWin32 -__version__ = '0.3.5' +__version__ = '0.3.6' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/colorama-0.3.5/colorama/ansitowin32.py new/colorama-0.3.6/colorama/ansitowin32.py --- old/colorama-0.3.5/colorama/ansitowin32.py 2015-12-03 22:19:01.000000000 +0100 +++ new/colorama-0.3.6/colorama/ansitowin32.py 2015-12-14 09:09:52.000000000 +0100 @@ -64,7 +64,7 @@ # should we strip ANSI sequences from our output? if strip is None: - strip = conversion_supported or not is_a_tty(wrapped) + strip = conversion_supported or (not wrapped.closed and not is_a_tty(wrapped)) self.strip = strip # should we should convert ANSI sequences into win32 calls? diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/colorama-0.3.5/colorama.egg-info/PKG-INFO new/colorama-0.3.6/colorama.egg-info/PKG-INFO --- old/colorama-0.3.5/colorama.egg-info/PKG-INFO 2015-12-12 22:41:45.000000000 +0100 +++ new/colorama-0.3.6/colorama.egg-info/PKG-INFO 2016-01-09 20:05:56.000000000 +0100 @@ -1,9 +1,9 @@ Metadata-Version: 1.1 Name: colorama -Version: 0.3.5 +Version: 0.3.6 Summary: Cross-platform colored terminal text. Home-page: https://github.com/tartley/colorama -Author: Jonathan Hartley +Author: Arnon Yaari Author-email: [email protected] License: BSD Description: .. image:: https://pypip.in/version/colorama/badge.svg @@ -355,7 +355,7 @@ Keywords: color colour terminal text ansi windows crossplatform xplatform Platform: UNKNOWN -Classifier: Development Status :: 4 - Beta +Classifier: Development Status :: 5 - Production/Stable Classifier: Environment :: Console Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: BSD License @@ -369,4 +369,5 @@ Classifier: Programming Language :: Python :: 3.2 Classifier: Programming Language :: Python :: 3.3 Classifier: Programming Language :: Python :: 3.4 +Classifier: Programming Language :: Python :: 3.5 Classifier: Topic :: Terminals diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/colorama-0.3.5/colorama.egg-info/SOURCES.txt new/colorama-0.3.6/colorama.egg-info/SOURCES.txt --- old/colorama-0.3.5/colorama.egg-info/SOURCES.txt 2015-12-12 22:41:45.000000000 +0100 +++ new/colorama-0.3.6/colorama.egg-info/SOURCES.txt 2016-01-09 20:05:56.000000000 +0100 @@ -13,7 +13,6 @@ colorama.egg-info/PKG-INFO colorama.egg-info/SOURCES.txt colorama.egg-info/dependency_links.txt -colorama.egg-info/pbr.json colorama.egg-info/top_level.txt demos/demo.bat demos/demo.sh diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/colorama-0.3.5/colorama.egg-info/pbr.json new/colorama-0.3.6/colorama.egg-info/pbr.json --- old/colorama-0.3.5/colorama.egg-info/pbr.json 2015-12-12 22:29:12.000000000 +0100 +++ new/colorama-0.3.6/colorama.egg-info/pbr.json 1970-01-01 01:00:00.000000000 +0100 @@ -1 +0,0 @@ -{"git_version": "09aa6af", "is_release": false} \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/colorama-0.3.5/setup.py new/colorama-0.3.6/setup.py --- old/colorama-0.3.5/setup.py 2015-08-04 10:11:38.000000000 +0200 +++ new/colorama-0.3.6/setup.py 2015-12-12 22:52:37.000000000 +0100 @@ -42,12 +42,13 @@ keywords='color colour terminal text ansi windows crossplatform xplatform', author='Jonathan Hartley', author_email='[email protected]', + maintainer='Arnon Yaari', url='https://github.com/tartley/colorama', license='BSD', packages=[NAME], # see classifiers http://pypi.python.org/pypi?%3Aaction=list_classifiers classifiers=[ - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', @@ -61,6 +62,7 @@ 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', 'Topic :: Terminals', ] )
