commit python-colorama for openSUSE:Factory

2020-10-22 Thread root
Hello community,

here is the log from the commit of package python-colorama for openSUSE:Factory 
checked in at 2020-10-22 14:20:58

Comparing /work/SRC/openSUSE:Factory/python-colorama (Old)
 and  /work/SRC/openSUSE:Factory/.python-colorama.new.3463 (New)


Package is "python-colorama"

Thu Oct 22 14:20:58 2020 rev:16 rq:842476 version:0.4.4

Changes:

--- /work/SRC/openSUSE:Factory/python-colorama/python-colorama.changes  
2020-04-05 20:52:11.353104780 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-colorama.new.3463/python-colorama.changes
2020-10-22 14:22:04.446739028 +0200
@@ -1,0 +2,6 @@
+Mon Oct 19 06:43:42 UTC 2020 - Dirk Mueller 
+
+- update to 0.4.4:
+  * Fixes 
+
+---

Old:

  0.4.3.tar.gz

New:

  0.4.4.tar.gz



Other differences:
--
++ python-colorama.spec ++
--- /var/tmp/diff_new_pack.2OrzVA/_old  2020-10-22 14:22:05.918740348 +0200
+++ /var/tmp/diff_new_pack.2OrzVA/_new  2020-10-22 14:22:05.922740353 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-colorama
-Version:0.4.3
+Version:0.4.4
 Release:0
 Summary:Cross-platform colored terminal text
 License:BSD-3-Clause

++ 0.4.3.tar.gz -> 0.4.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colorama-0.4.3/.github/FUNDING.yml 
new/colorama-0.4.4/.github/FUNDING.yml
--- old/colorama-0.4.3/.github/FUNDING.yml  2019-12-06 21:48:20.0 
+0100
+++ new/colorama-0.4.4/.github/FUNDING.yml  2020-10-13 06:46:33.0 
+0200
@@ -9,4 +9,6 @@
 # open_collective: # Replace with a single Open Collective username
 # otechie: # Replace with a single Otechie username
 # patreon: # Replace with a single Patreon username
+custom: 
["https://www.paypal.com/cgi-bin/webscr?cmd=_donations=2MZ9D2GMLYCUJ_name=Colorama_code=USD;]
 tidelift: "pypi/colorama"
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colorama-0.4.3/.gitignore 
new/colorama-0.4.4/.gitignore
--- old/colorama-0.4.3/.gitignore   2019-12-06 21:48:20.0 +0100
+++ new/colorama-0.4.4/.gitignore   2020-10-13 06:46:33.0 +0200
@@ -2,11 +2,12 @@
 *.egg-info
 .coverage
 .tox/
-MANIFEST
-dist
-tags
+/MANIFEST
+/build/
+/dist/
+/sandbox/
+/tags
 virtualenv
-build
 
 # PyCharm
 .idea
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colorama-0.4.3/.travis.yml 
new/colorama-0.4.4/.travis.yml
--- old/colorama-0.4.3/.travis.yml  2019-12-06 21:48:20.0 +0100
+++ new/colorama-0.4.4/.travis.yml  2020-10-13 06:46:33.0 +0200
@@ -1,12 +1,16 @@
 language: python
 cache: pip
-python:
-  - "2.7"
-  - "3.8"
-  - "3.7"
-  - "3.6"
-  - "3.5"
-  - "pypy"
+matrix:
+  include:
+- python: 2.7
+- python: 3.8
+- arch: arm64
+  python: 3.7
+- arch: amd64
+  python: 3.7
+- python: 3.6
+- python: 3.5
+- python: pypy
 install:
   - "pip install mock"
 script: "python -m unittest discover -p *_test.py"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colorama-0.4.3/CHANGELOG.rst 
new/colorama-0.4.4/CHANGELOG.rst
--- old/colorama-0.4.3/CHANGELOG.rst2019-12-06 21:48:20.0 +0100
+++ new/colorama-0.4.4/CHANGELOG.rst2020-10-13 06:46:33.0 +0200
@@ -1,3 +1,10 @@
+0.4.3
+  * Fix release 0.4.2 which was uploaded with missing files.
+0.4.2
+  * #228: Drop support for EOL Python 3.4, and add 3.7 and 3.8.
+Thanks to hugovk.
+  * Several additions and fixes to documentation and metadata.
+  * Added Tidelift subscription information.
 0.4.1
   * Fix issue #196: prevent exponential number of calls when calling 'init'
 multiple times. Reported by bbayles and fixed by Delgan.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colorama-0.4.3/Makefile new/colorama-0.4.4/Makefile
--- old/colorama-0.4.3/Makefile 2019-12-06 21:48:20.0 +0100
+++ new/colorama-0.4.4/Makefile 2020-10-13 06:46:33.0 +0200
@@ -10,24 +10,56 @@
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | \
awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-7s\033[0m 
%s\n", $$1, $$2}'
 
-clean: ## Remove build artifacts and .pyc files
-   -rm -rf build dist MANIFEST colorama.egg-info
+
+# bootstrap environment
+
+virtualenv=~/.virtualenvs/colorama
+pip=$(virtualenv)/bin/pip
+syspython=python3.8
+python=$(virtualenv)/bin/python
+twine=$(virtualenv)/bin/twine
+version=$(shell $(python) setup.py --version)
+
+clean: ## Remove build artifacts, .pyc files, 

commit python-colorama for openSUSE:Factory

2020-04-05 Thread root
Hello community,

here is the log from the commit of package python-colorama for openSUSE:Factory 
checked in at 2020-04-05 20:52:09

Comparing /work/SRC/openSUSE:Factory/python-colorama (Old)
 and  /work/SRC/openSUSE:Factory/.python-colorama.new.3248 (New)


Package is "python-colorama"

Sun Apr  5 20:52:09 2020 rev:15 rq:790585 version:0.4.3

Changes:

--- /work/SRC/openSUSE:Factory/python-colorama/python-colorama.changes  
2018-12-10 12:25:20.918706099 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-colorama.new.3248/python-colorama.changes
2020-04-05 20:52:11.353104780 +0200
@@ -1,0 +2,6 @@
+Wed Apr  1 11:47:40 UTC 2020 - Marketa Calabkova 
+
+- update to version 0.4.3
+  * Several documentation & demo fixes.
+
+---

Old:

  0.4.1.tar.gz

New:

  0.4.3.tar.gz



Other differences:
--
++ python-colorama.spec ++
--- /var/tmp/diff_new_pack.mpAs5x/_old  2020-04-05 20:52:12.121105515 +0200
+++ /var/tmp/diff_new_pack.mpAs5x/_new  2020-04-05 20:52:12.121105515 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-colorama
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-colorama
-Version:0.4.1
+Version:0.4.3
 Release:0
 Summary:Cross-platform colored terminal text
 License:BSD-3-Clause

++ 0.4.1.tar.gz -> 0.4.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colorama-0.4.1/.github/FUNDING.yml 
new/colorama-0.4.3/.github/FUNDING.yml
--- old/colorama-0.4.1/.github/FUNDING.yml  1970-01-01 01:00:00.0 
+0100
+++ new/colorama-0.4.3/.github/FUNDING.yml  2019-12-06 21:48:20.0 
+0100
@@ -0,0 +1,12 @@
+# These are supported funding model platforms
+
+# community_bridge: # Replace with a single Community Bridge project-name 
e.g., cloud-foundry
+# custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 
'link2']
+# github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., 
[user1, user2]
+# issuehunt: # Replace with a single IssueHunt username
+# ko_fi: # Replace with a single Ko-fi username
+# liberapay: # Replace with a single Liberapay username
+# open_collective: # Replace with a single Open Collective username
+# otechie: # Replace with a single Otechie username
+# patreon: # Replace with a single Patreon username
+tidelift: "pypi/colorama"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colorama-0.4.1/.travis.yml 
new/colorama-0.4.3/.travis.yml
--- old/colorama-0.4.1/.travis.yml  2018-11-25 13:12:46.0 +0100
+++ new/colorama-0.4.3/.travis.yml  2019-12-06 21:48:20.0 +0100
@@ -2,11 +2,11 @@
 cache: pip
 python:
   - "2.7"
+  - "3.8"
+  - "3.7"
   - "3.6"
   - "3.5"
-  - "3.4"
   - "pypy"
-sudo: false # Use container-based infrastructure
 install:
   - "pip install mock"
 script: "python -m unittest discover -p *_test.py"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colorama-0.4.1/CHANGELOG.rst 
new/colorama-0.4.3/CHANGELOG.rst
--- old/colorama-0.4.1/CHANGELOG.rst2018-11-25 13:12:46.0 +0100
+++ new/colorama-0.4.3/CHANGELOG.rst2019-12-06 21:48:20.0 +0100
@@ -90,7 +90,7 @@
 downstream project which has problems making sure that all 3rd party
 contributions have appropriate license.
 0.2.5
-  * Severeral documentation & demo fixes.
+  * Several documentation & demo fixes.
 0.2.4
   * Fix to work on Windows 7.
   * Python 3 compatibility in docs and demos.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colorama-0.4.1/ENTERPRISE.md 
new/colorama-0.4.3/ENTERPRISE.md
--- old/colorama-0.4.1/ENTERPRISE.md1970-01-01 01:00:00.0 +0100
+++ new/colorama-0.4.3/ENTERPRISE.md2019-12-06 21:48:20.0 +0100
@@ -0,0 +1,51 @@
+# Colorama for enterprise.
+
+*Available as part of the Tidelift Subscription.*
+
+Tidelift is working with the maintainers of Colorama and thousands of other
+open source projects to deliver commercial support and maintenance for the open
+source dependencies you use to build your applications. Save time, reduce risk,
+and improve code health, while paying the maintainers of the exact dependencies
+you use.
+
+[\[Learn 

commit python-colorama for openSUSE:Factory

2018-12-10 Thread root
Hello community,

here is the log from the commit of package python-colorama for openSUSE:Factory 
checked in at 2018-12-10 12:24:42

Comparing /work/SRC/openSUSE:Factory/python-colorama (Old)
 and  /work/SRC/openSUSE:Factory/.python-colorama.new.19453 (New)


Package is "python-colorama"

Mon Dec 10 12:24:42 2018 rev:14 rq:653418 version:0.4.1

Changes:

--- /work/SRC/openSUSE:Factory/python-colorama/python-colorama.changes  
2018-11-18 23:22:19.198199398 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-colorama.new.19453/python-colorama.changes   
2018-12-10 12:25:20.918706099 +0100
@@ -1,0 +2,7 @@
+Sat Dec  1 18:27:18 UTC 2018 - Arun Persaud 
+
+- update to version 0.4.1:
+  * Fix issue #196: prevent exponential number of calls when calling
+'init' multiple times. Reported by bbayles and fixed by Delgan.
+
+---

Old:

  0.4.0.tar.gz

New:

  0.4.1.tar.gz



Other differences:
--
++ python-colorama.spec ++
--- /var/tmp/diff_new_pack.UUX1jE/_old  2018-12-10 12:25:21.322705697 +0100
+++ /var/tmp/diff_new_pack.UUX1jE/_new  2018-12-10 12:25:21.322705697 +0100
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-colorama
-Version:0.4.0
+Version:0.4.1
 Release:0
 Summary:Cross-platform colored terminal text
 License:BSD-3-Clause

++ 0.4.0.tar.gz -> 0.4.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colorama-0.4.0/CHANGELOG.rst 
new/colorama-0.4.1/CHANGELOG.rst
--- old/colorama-0.4.0/CHANGELOG.rst2018-10-10 16:43:39.0 +0200
+++ new/colorama-0.4.1/CHANGELOG.rst2018-11-25 13:12:46.0 +0100
@@ -1,3 +1,6 @@
+0.4.1
+  * Fix issue #196: prevent exponential number of calls when calling 'init'
+multiple times. Reported by bbayles and fixed by Delgan.
 0.4.0
   * Fix issue #142: reset LIGHT_EX colors with RESET_ALL. Reported by Delgan
   * Fix issue #147: ignore invalid "erase" ANSI codes. Reported by shin-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colorama-0.4.0/Makefile new/colorama-0.4.1/Makefile
--- old/colorama-0.4.0/Makefile 2018-10-10 16:43:39.0 +0200
+++ new/colorama-0.4.1/Makefile 2018-11-25 13:12:46.0 +0100
@@ -12,17 +12,12 @@
 .PHONY: clean
 
 sdist: clean
-   python setup.py sdist --formats=zip,gztar
+   python setup.py sdist
 .PHONY: sdist
 
-register: clean
-   python setup.py sdist --formats=zip,gztar register
-   python setup.py bdist_wheel register
-.PHONY: release
-
 upload: clean
-   python setup.py sdist --formats=zip,gztar register upload
-   python setup.py bdist_wheel register upload
+   python setup.py sdist upload
+   python setup.py bdist_wheel upload
 .PHONY: release
 
 test:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colorama-0.4.0/colorama/__init__.py 
new/colorama-0.4.1/colorama/__init__.py
--- old/colorama-0.4.0/colorama/__init__.py 2018-10-10 16:43:39.0 
+0200
+++ new/colorama-0.4.1/colorama/__init__.py 2018-11-25 13:12:46.0 
+0100
@@ -3,4 +3,4 @@
 from .ansi import Fore, Back, Style, Cursor
 from .ansitowin32 import AnsiToWin32
 
-__version__ = '0.4.0'
+__version__ = '0.4.1'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colorama-0.4.0/colorama/ansitowin32.py 
new/colorama-0.4.1/colorama/ansitowin32.py
--- old/colorama-0.4.0/colorama/ansitowin32.py  2018-10-10 16:43:39.0 
+0200
+++ new/colorama-0.4.1/colorama/ansitowin32.py  2018-11-25 13:12:46.0 
+0100
@@ -45,12 +45,20 @@
 if 'PYCHARM_HOSTED' in os.environ:
 if stream is not None and (stream is sys.__stdout__ or stream is 
sys.__stderr__):
 return True
-return (hasattr(stream, 'isatty') and stream.isatty())
+try:
+stream_isatty = stream.isatty
+except AttributeError:
+return False
+else:
+return stream_isatty()
 
 @property
 def closed(self):
 stream = self.__wrapped
-return not hasattr(stream, 'closed') or stream.closed
+try:
+return stream.closed
+except AttributeError:
+return True
 
 
 class AnsiToWin32(object):




commit python-colorama for openSUSE:Factory

2018-11-18 Thread root
Hello community,

here is the log from the commit of package python-colorama for openSUSE:Factory 
checked in at 2018-11-18 23:22:17

Comparing /work/SRC/openSUSE:Factory/python-colorama (Old)
 and  /work/SRC/openSUSE:Factory/.python-colorama.new (New)


Package is "python-colorama"

Sun Nov 18 23:22:17 2018 rev:13 rq:648743 version:0.4.0

Changes:

--- /work/SRC/openSUSE:Factory/python-colorama/python-colorama.changes  
2017-08-28 15:18:11.868020352 +0200
+++ /work/SRC/openSUSE:Factory/.python-colorama.new/python-colorama.changes 
2018-11-18 23:22:19.198199398 +0100
@@ -1,0 +2,32 @@
+Tue Nov 13 14:29:06 UTC 2018 - Tomáš Chvátal 
+
+- Switch to github tarball to get tests
+
+---
+Mon Nov 12 06:18:08 UTC 2018 - Arun Persaud 
+
+- specfile:
+  * update copyright year
+  * move from tar.gz to zip on pypi
+  * be more specific in %files section
+  * remove devel from noarch
+
+- update to version 0.4.0:
+  * Fix issue #142: reset LIGHT_EX colors with RESET_ALL. Reported by
+Delgan
+  * Fix issue #147: ignore invalid "erase" ANSI codes. Reported by
+shin-
+  * Fix issues #163 and #164: fix stream wrapping under
+PyCharm. Contributed by veleek and Delgan.
+  * Thanks to jdufresne for various code cleanup and updates to
+documentation and project metadata.  (pull requests #171, #172,
+#173, #174, #176, #177, #189, #190, #192)
+  * #186: added contextlib magic methods to ansitowin32.StreamWrapper.
+Contributed by hoefling.
+  * Fix issue #131: don't cache stdio handles, since they might be
+closed/changed by fd redirection. This fixes an issue with pytest.
+Contributed by segevfiner.
+  * #146, #157: Drop support for EOL Python 2.5, 2.6, 3.1, 3.2 and
+3.3, and add 3.6. Thanks to hugovk.
+
+---

Old:

  colorama-0.3.9.tar.gz

New:

  0.4.0.tar.gz



Other differences:
--
++ python-colorama.spec ++
--- /var/tmp/diff_new_pack.menY3e/_old  2018-11-18 23:22:20.538197759 +0100
+++ /var/tmp/diff_new_pack.menY3e/_new  2018-11-18 23:22:20.538197759 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-colorama
 #
-# 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
@@ -12,24 +12,25 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-colorama
-Version:0.3.9
+Version:0.4.0
 Release:0
 Summary:Cross-platform colored terminal text
 License:BSD-3-Clause
 Group:  Development/Languages/Python
-Url:https://github.com/tartley/colorama
-Source: 
https://files.pythonhosted.org/packages/source/c/colorama/colorama-%{version}.tar.gz
-BuildRequires:  %{python_module devel}
+URL:https://github.com/tartley/colorama
+Source: https://github.com/tartley/colorama/archive/%{version}.tar.gz
+BuildRequires:  %{python_module mock}
+BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  unzip
 BuildArch:  noarch
 %python_subpackages
 
@@ -58,10 +59,16 @@
 %python_install
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
+%check
+%python_expand script -eqc "pytest-%{$python_version} -vv -s" /dev/null
+
 %files %{python_files}
-%defattr(-,root,root,-)
-%doc CHANGELOG.rst LICENSE.txt README.rst
+%license LICENSE.txt
+%doc CHANGELOG.rst README.rst
 %doc demos/
-%{python_sitelib}/*
+%dir %{python_sitelib}/colorama
+%{python_sitelib}/colorama/*
+%dir %{python_sitelib}/colorama-%{version}-py*.egg-info
+%{python_sitelib}/colorama-%{version}-py*.egg-info
 
 %changelog

++ colorama-0.3.9.tar.gz -> 0.4.0.tar.gz ++
 1994 lines of diff (skipped)




commit python-colorama for openSUSE:Factory

2017-08-28 Thread root
Hello community,

here is the log from the commit of package python-colorama for openSUSE:Factory 
checked in at 2017-08-28 15:16:42

Comparing /work/SRC/openSUSE:Factory/python-colorama (Old)
 and  /work/SRC/openSUSE:Factory/.python-colorama.new (New)


Package is "python-colorama"

Mon Aug 28 15:16:42 2017 rev:12 rq:518788 version:0.3.9

Changes:

--- /work/SRC/openSUSE:Factory/python-colorama/python-colorama.changes  
2017-05-17 17:17:58.404296752 +0200
+++ /work/SRC/openSUSE:Factory/.python-colorama.new/python-colorama.changes 
2017-08-28 15:18:11.868020352 +0200
@@ -1,0 +2,6 @@
+Fri Aug 25 16:23:50 UTC 2017 - tbecht...@suse.com
+
+- update to 0.3.9:
+  * Revert fix for issue #103 which causes problems for dependent applications
+
+---

Old:

  colorama-0.3.8.tar.gz

New:

  colorama-0.3.9.tar.gz



Other differences:
--
++ python-colorama.spec ++
--- /var/tmp/diff_new_pack.AkL3Ml/_old  2017-08-28 15:18:12.879878164 +0200
+++ /var/tmp/diff_new_pack.AkL3Ml/_new  2017-08-28 15:18:12.895875915 +0200
@@ -18,17 +18,17 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-colorama
-Version:0.3.8
+Version:0.3.9
 Release:0
 Summary:Cross-platform colored terminal text
 License:BSD-3-Clause
 Group:  Development/Languages/Python
 Url:https://github.com/tartley/colorama
 Source: 
https://files.pythonhosted.org/packages/source/c/colorama/colorama-%{version}.tar.gz
-BuildRequires:  fdupes
-BuildRequires:  python-rpm-macros
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
+BuildRequires:  fdupes
+BuildRequires:  python-rpm-macros
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 %python_subpackages

++ colorama-0.3.8.tar.gz -> colorama-0.3.9.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colorama-0.3.8/CHANGELOG.rst 
new/colorama-0.3.9/CHANGELOG.rst
--- old/colorama-0.3.8/CHANGELOG.rst2017-04-23 11:23:00.0 +0200
+++ new/colorama-0.3.9/CHANGELOG.rst2017-04-27 09:07:29.0 +0200
@@ -1,3 +1,5 @@
+0.3.9
+  * Revert fix for issue #103 which causes problems for dependent applications
 0.3.8
   * Fix issue #121: "invalid escape sequence" deprecation fixes on Python 3.6+
   * Fix issue #110: fix "set console title" when working with unicode strings
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colorama-0.3.8/PKG-INFO new/colorama-0.3.9/PKG-INFO
--- old/colorama-0.3.8/PKG-INFO 2017-04-23 11:40:20.0 +0200
+++ new/colorama-0.3.9/PKG-INFO 2017-04-27 09:12:09.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: colorama
-Version: 0.3.8
+Version: 0.3.9
 Summary: Cross-platform colored terminal text.
 Home-page: https://github.com/tartley/colorama
 Author: Arnon Yaari
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colorama-0.3.8/colorama/__init__.py 
new/colorama-0.3.9/colorama/__init__.py
--- old/colorama-0.3.8/colorama/__init__.py 2017-04-23 11:17:09.0 
+0200
+++ new/colorama-0.3.9/colorama/__init__.py 2017-04-27 09:06:22.0 
+0200
@@ -3,5 +3,5 @@
 from .ansi import Fore, Back, Style, Cursor
 from .ansitowin32 import AnsiToWin32
 
-__version__ = '0.3.8'
+__version__ = '0.3.9'
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colorama-0.3.8/colorama/ansitowin32.py 
new/colorama-0.3.9/colorama/ansitowin32.py
--- old/colorama-0.3.8/colorama/ansitowin32.py  2017-04-20 17:13:27.0 
+0200
+++ new/colorama-0.3.9/colorama/ansitowin32.py  2017-04-27 09:05:41.0 
+0200
@@ -39,9 +39,6 @@
 def write(self, text):
 self.__convertor.write(text)
 
-def fileno():
-raise OSError()
-
 
 class AnsiToWin32(object):
 '''
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colorama-0.3.8/colorama.egg-info/PKG-INFO 
new/colorama-0.3.9/colorama.egg-info/PKG-INFO
--- old/colorama-0.3.8/colorama.egg-info/PKG-INFO   2017-04-23 
11:40:20.0 +0200
+++ new/colorama-0.3.9/colorama.egg-info/PKG-INFO   2017-04-27 
09:12:09.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: colorama
-Version: 0.3.8
+Version: 0.3.9
 Summary: Cross-platform colored terminal text.
 Home-page: https://github.com/tartley/colorama
 Author: Arnon Yaari




commit python-colorama for openSUSE:Factory

2017-05-17 Thread root
Hello community,

here is the log from the commit of package python-colorama for openSUSE:Factory 
checked in at 2017-05-17 17:17:54

Comparing /work/SRC/openSUSE:Factory/python-colorama (Old)
 and  /work/SRC/openSUSE:Factory/.python-colorama.new (New)


Package is "python-colorama"

Wed May 17 17:17:54 2017 rev:11 rq:491169 version:0.3.8

Changes:

--- /work/SRC/openSUSE:Factory/python-colorama/python-colorama.changes  
2016-12-08 00:29:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-colorama.new/python-colorama.changes 
2017-05-17 17:17:58.404296752 +0200
@@ -1,0 +2,11 @@
+Tue Apr 25 22:43:01 UTC 2017 - toddrme2...@gmail.com
+
+- update to 0.3.8
+  * Fix issue #121: "invalid escape sequence" deprecation fixes on Python 3.6+
+  * Fix issue #110: fix "set console title" when working with unicode strings
+  * Fix issue #103: enable color when using "input" function on Python 3.5+
+  * Fix issue #95: enable color when stderr is a tty but stdout is not
+- Implement single-spec version
+- Fix source url.
+
+---

Old:

  colorama-0.3.7.tar.gz

New:

  colorama-0.3.8.tar.gz



Other differences:
--
++ python-colorama.spec ++
--- /var/tmp/diff_new_pack.1UrLTP/_old  2017-05-17 17:17:59.052205388 +0200
+++ /var/tmp/diff_new_pack.1UrLTP/_new  2017-05-17 17:17:59.056204824 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-colorama
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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
@@ -16,22 +16,22 @@
 #
 
 
+%{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-colorama
-Version:0.3.7
+Version:0.3.8
 Release:0
 Summary:Cross-platform colored terminal text
 License:BSD-3-Clause
 Group:  Development/Languages/Python
 Url:https://github.com/tartley/colorama
-Source: 
https://pypi.io/packages/source/c/colorama/colorama-%{version}.tar.gz
-BuildRequires:  python-devel
-BuildRequires:  python-setuptools
+Source: 
https://files.pythonhosted.org/packages/source/c/colorama/colorama-%{version}.tar.gz
+BuildRequires:  fdupes
+BuildRequires:  python-rpm-macros
+BuildRequires:  %{python_module devel}
+BuildRequires:  %{python_module setuptools}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%if 0%{?suse_version} && 0%{?suse_version} <= 1110
-%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
-%else
 BuildArch:  noarch
-%endif
+%python_subpackages
 
 %description
 Makes ANSI escape character sequences, for producing colored terminal text and
@@ -52,14 +52,16 @@
 %setup -q -n colorama-%{version}
 
 %build
-python setup.py build
+%python_build
 
 %install
-python setup.py install --prefix=%{_prefix} --root=%{buildroot}
+%python_install
+%python_expand %fdupes %{buildroot}%{$python_sitelib}
 
-%files
+%files %{python_files}
 %defattr(-,root,root,-)
-%doc CHANGELOG.rst LICENSE.txt README.rst demos
+%doc CHANGELOG.rst LICENSE.txt README.rst
+%doc demos/
 %{python_sitelib}/*
 
 %changelog

++ colorama-0.3.7.tar.gz -> colorama-0.3.8.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colorama-0.3.7/CHANGELOG.rst 
new/colorama-0.3.8/CHANGELOG.rst
--- old/colorama-0.3.7/CHANGELOG.rst2016-03-08 10:14:21.0 +0100
+++ new/colorama-0.3.8/CHANGELOG.rst2017-04-23 11:23:00.0 +0200
@@ -1,3 +1,8 @@
+0.3.8
+  * Fix issue #121: "invalid escape sequence" deprecation fixes on Python 3.6+
+  * Fix issue #110: fix "set console title" when working with unicode strings
+  * Fix issue #103: enable color when using "input" function on Python 3.5+
+  * Fix issue #95: enable color when stderr is a tty but stdout is not
 0.3.7
   * Fix issue #84: check if stream has 'closed' attribute before testing it
   * Fix issue #74: objects might become None at exit
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colorama-0.3.7/PKG-INFO new/colorama-0.3.8/PKG-INFO
--- old/colorama-0.3.7/PKG-INFO 2016-03-08 10:18:24.0 +0100
+++ new/colorama-0.3.8/PKG-INFO 2017-04-23 11:40:20.0 +0200
@@ -1,12 +1,12 @@
 Metadata-Version: 1.1
 Name: colorama
-Version: 0.3.7
+Version: 0.3.8
 Summary: Cross-platform colored terminal text.
 Home-page: https://github.com/tartley/colorama
 Author: Arnon Yaari
 Author-email: tart...@tartley.com
 License: BSD
-Description: .. image:: 

commit python-colorama for openSUSE:Factory

2016-12-07 Thread h_root
Hello community,

here is the log from the commit of package python-colorama for openSUSE:Factory 
checked in at 2016-12-08 00:29:29

Comparing /work/SRC/openSUSE:Factory/python-colorama (Old)
 and  /work/SRC/openSUSE:Factory/.python-colorama.new (New)


Package is "python-colorama"

Changes:

--- /work/SRC/openSUSE:Factory/python-colorama/python-colorama.changes  
2015-04-21 10:53:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-colorama.new/python-colorama.changes 
2016-12-08 00:29:30.0 +0100
@@ -1,0 +2,19 @@
+Tue Nov 15 10:22:24 UTC 2016 - dmuel...@suse.com
+
+- update to 0.3.7:
+  * Fix issue #84: check if stream has 'closed' attribute before testing it
+  * Fix issue #74: objects might become None at exit
+  * Fix issue #81: fix ValueError when a closed stream was used
+  * Bumping version to re-upload a wheel distribution
+  * Fix issue #47 and #80 - stream redirection now strips ANSI codes on Linux
+  * Fix issue #53 - strip readline markers
+  * Fix issue #32 - assign orig_stdout and orig_stderr when initialising
+  * Fix issue #57 - Fore.RESET did not reset style of LIGHT_EX colors.
+Fixed by Andy Neff
+  * Fix issue #51 - add context manager syntax. Thanks to Matt Olsen.
+  * Fix issue #48 - colorama didn't work on Windows when environment
+variable 'TERM' was set.
+  * Fix issue #54 - fix pylint errors in client code.
+  * Changes to readme and other improvements by Marc Abramowitz and Zearin
+
+---

Old:

  colorama-0.3.3.tar.gz

New:

  colorama-0.3.7.tar.gz



Other differences:
--
++ python-colorama.spec ++
--- /var/tmp/diff_new_pack.mTPZMK/_old  2016-12-08 00:29:31.0 +0100
+++ /var/tmp/diff_new_pack.mTPZMK/_new  2016-12-08 00:29:31.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-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,13 +17,13 @@
 
 
 Name:   python-colorama
-Version:0.3.3
+Version:0.3.7
 Release:0
 Summary:Cross-platform colored terminal text
 License:BSD-3-Clause
 Group:  Development/Languages/Python
 Url:https://github.com/tartley/colorama
-Source: 
http://pypi.python.org/packages/source/c/colorama/colorama-%{version}.tar.gz
+Source: 
https://pypi.io/packages/source/c/colorama/colorama-%{version}.tar.gz
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ colorama-0.3.3.tar.gz -> colorama-0.3.7.tar.gz ++
 1827 lines of diff (skipped)




commit python-colorama for openSUSE:Factory

2015-04-21 Thread h_root
Hello community,

here is the log from the commit of package python-colorama for openSUSE:Factory 
checked in at 2015-04-21 10:53:45

Comparing /work/SRC/openSUSE:Factory/python-colorama (Old)
 and  /work/SRC/openSUSE:Factory/.python-colorama.new (New)


Package is python-colorama

Changes:

--- /work/SRC/openSUSE:Factory/python-colorama/python-colorama.changes  
2014-09-17 17:25:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-colorama.new/python-colorama.changes 
2015-04-21 10:53:49.0 +0200
@@ -1,0 +2,23 @@
+Sun Apr 19 14:50:28 UTC 2015 - benoit.mo...@gmx.fr
+
+- update to 0.3.3:
+  * Fix Google Code issue #13 - support changing the console title
+with OSC escape sequence
+  * Fix Google Code issue #16 - Add support for Windows xterm
+emulators
+  * Fix Google Code issue #30 - implement \033[nK (clear line)
+  * Fix Google Code issue #49 - no need to adjust for scroll when
+new position is already relative (CSI n A\B\C\D)
+  * Fix Google Code issue #55 - erase_data fails on Python 3.x
+  * Fix Google Code issue #46 - win32.COORD definition missing
+  * Implement \033[0J and \033[1J (clear screen options)
+  * Fix default ANSI parameters
+  * Fix position after \033[2J (clear screen)
+  * Add command shortcuts: colorama.Cursor,
+colorama.ansi.set_title, colorama.ansi.clear_line,
+colorama.ansi.clear_screen
+  * Fix issue #22 - Importing fails for python3 on Windows
+  * Thanks to John Szakmeister for adding support for light colors
+  * Thanks to Charles Merriam for adding documentation to demos
+
+---

Old:

  colorama-0.3.2.tar.gz

New:

  colorama-0.3.3.tar.gz



Other differences:
--
++ python-colorama.spec ++
--- /var/tmp/diff_new_pack.g8eHzC/_old  2015-04-21 10:53:50.0 +0200
+++ /var/tmp/diff_new_pack.g8eHzC/_new  2015-04-21 10:53:50.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-colorama
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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:   python-colorama
-Version:0.3.2
+Version:0.3.3
 Release:0
 Summary:Cross-platform colored terminal text
 License:BSD-3-Clause

++ colorama-0.3.2.tar.gz - colorama-0.3.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colorama-0.3.2/CHANGELOG.rst 
new/colorama-0.3.3/CHANGELOG.rst
--- old/colorama-0.3.2/CHANGELOG.rst2014-09-04 00:10:46.0 +0200
+++ new/colorama-0.3.3/CHANGELOG.rst2014-10-11 16:01:33.0 +0200
@@ -1,4 +1,4 @@
-0.3.2 (not released yet)
+0.3.2
   * Thanks to Marc Schlaich (schlamar) for a setup.py fix for Python2.5
   * Thanks to Jurko for fix on 64-bit Windows CPython2.5 w/o ctypes (issue #56)
   * Thanks to Remi Rampin for:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colorama-0.3.2/PKG-INFO new/colorama-0.3.3/PKG-INFO
--- old/colorama-0.3.2/PKG-INFO 2014-09-04 00:12:09.0 +0200
+++ new/colorama-0.3.3/PKG-INFO 2015-01-06 11:44:35.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: colorama
-Version: 0.3.2
+Version: 0.3.3
 Summary: Cross-platform colored terminal text.
 Home-page: https://pypi.python.org/pypi/colorama
 Author: Jonathan Hartley
@@ -11,8 +11,10 @@
 
 Download and docs:
 http://pypi.python.org/pypi/colorama
-Development:
+Source code  Development:
 https://github.com/tartley/colorama
+Issues:
+https://code.google.com/p/colorama/issues/list
 Discussion group:
  https://groups.google.com/forum/#!forum/python-colorama
 
@@ -71,7 +73,7 @@
 Dependencies
 
 
-None, other than Python. Tested on Python 2.5.5, 2.6.5, 2.7, 3.1.2, 
and 3.2
+None, other than Python. Tested on Python 2.5.5, 2.6.5, 2.7, 3.1.2, 
3.2, 3.3, 3.4.
 
 Usage
 =
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colorama-0.3.2/README.rst 
new/colorama-0.3.3/README.rst
--- old/colorama-0.3.2/README.rst   2014-09-03 21:56:00.0 +0200
+++ new/colorama-0.3.3/README.rst   2014-10-11 16:01:33.0 +0200
@@ -3,8 +3,10 @@
 
 Download and docs:
 http://pypi.python.org/pypi/colorama
-Development:
+Source code  Development:
 https://github.com/tartley/colorama
+Issues:
+

commit python-colorama for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package python-colorama for openSUSE:Factory 
checked in at 2014-09-17 17:25:22

Comparing /work/SRC/openSUSE:Factory/python-colorama (Old)
 and  /work/SRC/openSUSE:Factory/.python-colorama.new (New)


Package is python-colorama

Changes:

--- /work/SRC/openSUSE:Factory/python-colorama/python-colorama.changes  
2014-09-03 08:30:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-colorama.new/python-colorama.changes 
2014-09-17 17:25:33.0 +0200
@@ -1,0 +2,15 @@
+Mon Sep 15 08:10:11 UTC 2014 - tbecht...@suse.com
+
+- update to 0.3.2:
+  * Thanks to Marc Schlaich (schlamar) for a setup.py fix for Python2.5
+  * Thanks to Jurko for fix on 64-bit Windows CPython2.5 w/o ctypes (issue #56)
+  * Thanks to Remi Rampin for:
+* better github integration, incl rendered README and Travis config.
+* fixed forward slashes in README
+  * Thanks to Florian Bruhin for fix when stdout or stderr are None
+  * Thanks to Simeon Visser for:
+* closing a file handle using 'with'
+* updating classifiers to include Python 3.3 and 3.4
+  * Thanks to Thomas Weininger for fix ValueError on Windows (issue #50)
+
+---

Old:

  colorama-0.3.1.tar.gz

New:

  colorama-0.3.2.tar.gz



Other differences:
--
++ python-colorama.spec ++
--- /var/tmp/diff_new_pack.C0Dl6B/_old  2014-09-17 17:25:34.0 +0200
+++ /var/tmp/diff_new_pack.C0Dl6B/_new  2014-09-17 17:25:34.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-colorama
-Version:0.3.1
+Version:0.3.2
 Release:0
 Summary:Cross-platform colored terminal text
 License:BSD-3-Clause
@@ -59,7 +59,7 @@
 
 %files
 %defattr(-,root,root,-)
-%doc CHANGELOG.rst LICENSE.txt README.txt demos
+%doc CHANGELOG.rst LICENSE.txt README.rst demos
 %{python_sitelib}/*
 
 %changelog

++ colorama-0.3.1.tar.gz - colorama-0.3.2.tar.gz ++
 2636 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-colorama for openSUSE:Factory

2014-09-03 Thread h_root
Hello community,

here is the log from the commit of package python-colorama for openSUSE:Factory 
checked in at 2014-09-03 08:30:18

Comparing /work/SRC/openSUSE:Factory/python-colorama (Old)
 and  /work/SRC/openSUSE:Factory/.python-colorama.new (New)


Package is python-colorama

Changes:

--- /work/SRC/openSUSE:Factory/python-colorama/python-colorama.changes  
2013-09-27 17:59:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-colorama.new/python-colorama.changes 
2014-09-03 08:30:31.0 +0200
@@ -1,0 +2,14 @@
+Tue Sep  2 16:29:46 UTC 2014 - toddrme2...@gmail.com
+
+- Update to 0.3.1
+  * Fixed crash on exit with closed stdout, with thanks to Marc Abramowitz.
+  * Now uses setuptools if available, and falls back to distutils if not.
+  * setup.py no longer imports anything from colorama source.
+- Update to 0.3.0
+  * Move repository to Git, https://github.com/tartley/colorama. (My Mercurial
+repo seemed to be corrupted, I couldn't commit nor view patches of old
+commits, even on fresh checkouts.)
+  * Fix always-crash on non-Windows platforms, reported by Matt McCormick.
+  * Fix issue #47, incompatible with pyreadline.
+
+---

Old:

  colorama-0.2.7.tar.gz

New:

  colorama-0.3.1.tar.gz



Other differences:
--
++ python-colorama.spec ++
--- /var/tmp/diff_new_pack.pmKKnp/_old  2014-09-03 08:30:34.0 +0200
+++ /var/tmp/diff_new_pack.pmKKnp/_new  2014-09-03 08:30:34.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-colorama
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products 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,14 +17,15 @@
 
 
 Name:   python-colorama
-Version:0.2.7
+Version:0.3.1
 Release:0
 Summary:Cross-platform colored terminal text
 License:BSD-3-Clause
 Group:  Development/Languages/Python
-Url:http://code.google.com/p/colorama/
+Url:https://github.com/tartley/colorama
 Source: 
http://pypi.python.org/packages/source/c/colorama/colorama-%{version}.tar.gz
 BuildRequires:  python-devel
+BuildRequires:  python-setuptools
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version}  0%{?suse_version} = 1110
 %{!?python_sitelib: %global python_sitelib %(python -c from 
distutils.sysconfig import get_python_lib; print get_python_lib())}
@@ -58,7 +59,7 @@
 
 %files
 %defattr(-,root,root,-)
-%doc LICENSE.txt README.txt demos
+%doc CHANGELOG.rst LICENSE.txt README.txt demos
 %{python_sitelib}/*
 
 %changelog

++ colorama-0.2.7.tar.gz - colorama-0.3.1.tar.gz ++
 1986 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-colorama for openSUSE:Factory

2013-09-27 Thread h_root
Hello community,

here is the log from the commit of package python-colorama for openSUSE:Factory 
checked in at 2013-09-27 17:59:56

Comparing /work/SRC/openSUSE:Factory/python-colorama (Old)
 and  /work/SRC/openSUSE:Factory/.python-colorama.new (New)


Package is python-colorama

Changes:

--- /work/SRC/openSUSE:Factory/python-colorama/python-colorama.changes  
2013-05-02 11:37:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-colorama.new/python-colorama.changes 
2013-09-27 17:59:57.0 +0200
@@ -1,0 +2,7 @@
+Thu Sep 26 13:35:10 UTC 2013 - dmuel...@suse.com
+
+- update to 0.2.7:
+  * Fix problem under 64-bit windows due to ctypes HANDLE size.
+  * Fix licensing to the source files
+
+---

Old:

  colorama-0.2.5.tar.gz

New:

  colorama-0.2.7.tar.gz



Other differences:
--
++ python-colorama.spec ++
--- /var/tmp/diff_new_pack.OD6Q6l/_old  2013-09-27 17:59:57.0 +0200
+++ /var/tmp/diff_new_pack.OD6Q6l/_new  2013-09-27 17:59:57.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-colorama
-Version:0.2.5
+Version:0.2.7
 Release:0
 Summary:Cross-platform colored terminal text
 License:BSD-3-Clause
@@ -49,7 +49,6 @@
 
 %prep
 %setup -q -n colorama-%{version}
-sed -i s/\r// README.txt LICENSE.txt demos/demo0{6,7}.py demos/demo.bat
 
 %build
 python setup.py build

++ colorama-0.2.5.tar.gz - colorama-0.2.7.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colorama-0.2.5/CHANGELOG.rst 
new/colorama-0.2.7/CHANGELOG.rst
--- old/colorama-0.2.5/CHANGELOG.rst2011-06-25 11:59:44.0 +0200
+++ new/colorama-0.2.7/CHANGELOG.rst2013-09-26 11:55:45.0 +0200
@@ -1,79 +1,93 @@
-0.2.3
-   Split changelog out into separate file.
-0.2.2
-Fix bug which caused init() to raise, introduced in 0.2.1.
-Remove asserts which cause problems in various circumstances. At least
-some users saw asserts fail on 'success' returned from win32 functions,
-even though the win32 functions appear to have worked correctly.
-0.2.1
-Completely broken: I added a bug which caused init() to raise.
-Added some documentation for cursor positioning and clear screen to README.
-Add 'reinit' and 'deinit' functions, as suggested by Charles FOL and
-Romanov DA.
-0.2
-Merge in changes from Daniel Griffith: Add ANSI cursor positioning 
-partial support for clear screen. Patch submitted by Oscar Lester, don't
-send RESET_ALL to non-tty. Demos split into separate files and moved into
-their own directory. Tweak sys.path in demos so they run against local
-source, not installed version of Colorama.
-0.1.18
-Fix README (no such attr as Fore.DEFAULT, etc), kindly reported by nodakai.
-0.1.17
-Prevent printing of garbage ANSI codes upon installing with pip
-0.1.16
-Re-upload to fix previous error. Make clean now removes old MANIFEST.
-0.1.15
-Completely broken. Distribution was empty due to leftover invalid MANIFEST
-file from building on a different platform.
-Fix python3 incompatibility kindly reported by G |uumlaut| nter Kolousek
-0.1.14
-Fix hard-coded reset to white-on-black colors. Fore.RESET, Back.RESET
-and Style.RESET_ALL now revert to the colors as they were when init()
-was called. Some lessons hopefully learned about testing prior to release.
-0.1.13
-Completely broken: barfed when installed using pip.
-0.1.12
-Completely broken: contained no source code. double oops.
-0.1.11
-Completely broken: fatal import errors on Ubuntu. oops.
-0.1.10
-Stop emulating 'bright' text with bright backgrounds.
-Display 'normal' text using win32 normal foreground instead of bright.
-Drop support for 'dim' text.
-0.1.9
-Fix incompatibility with Python 2.5 and earlier.
-Remove setup.py dependency on setuptools, now uses stdlib distutils.
-0.1.8
-Fix ghastly errors all over the place on Ubuntu.
-Add init kwargs 'convert' and 'strip', which supercede the old 'wrap'.
-0.1.7
-Python 3 compatible.
-Fix: Now strips ansi on windows without necessarily converting it to
-win32 calls (eg. if output is not a tty.)
-Fix: Flaky interaction of interleaved ansi sent to stdout and stderr.
-Improved demo.sh (hg checkout only.)
-0.1.6
-Fix ansi sequences with no params now default to parmlist of [0].
-Fix flaky behaviour of autoreset and reset_all atexit.
-Fix stacking of repeated atexit calls - now just called once.
-Fix ghastly import problems while running tests.
-'demo.py' (hg checkout only) now demonstrates autoreset and reset atexit.
-

commit python-colorama for openSUSE:Factory

2013-05-02 Thread h_root
Hello community,

here is the log from the commit of package python-colorama for openSUSE:Factory 
checked in at 2013-05-02 11:37:12

Comparing /work/SRC/openSUSE:Factory/python-colorama (Old)
 and  /work/SRC/openSUSE:Factory/.python-colorama.new (New)


Package is python-colorama

Changes:

--- /work/SRC/openSUSE:Factory/python-colorama/python-colorama.changes  
2012-11-21 17:06:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-colorama.new/python-colorama.changes 
2013-05-02 11:37:13.0 +0200
@@ -1,0 +2,6 @@
+Mon Apr 29 11:52:55 UTC 2013 - dmuel...@suse.com
+
+- update to 0.2.5:
+  * various small bugfixes 
+
+---

Old:

  colorama-0.2.4.tar.gz

New:

  colorama-0.2.5.tar.gz



Other differences:
--
++ python-colorama.spec ++
--- /var/tmp/diff_new_pack.8fDUK4/_old  2013-05-02 11:37:14.0 +0200
+++ /var/tmp/diff_new_pack.8fDUK4/_new  2013-05-02 11:37:14.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-colorama
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -13,15 +13,16 @@
 # published by the Open Source Initiative.
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
+#
 
 
 Name:   python-colorama
-Version:0.2.4
+Version:0.2.5
 Release:0
-License:BSD-3-Clause
 Summary:Cross-platform colored terminal text
-Url:http://code.google.com/p/colorama/
+License:BSD-3-Clause
 Group:  Development/Languages/Python
+Url:http://code.google.com/p/colorama/
 Source: 
http://pypi.python.org/packages/source/c/colorama/colorama-%{version}.tar.gz
 BuildRequires:  python-devel
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ colorama-0.2.4.tar.gz - colorama-0.2.5.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colorama-0.2.4/CHANGELOG.rst 
new/colorama-0.2.5/CHANGELOG.rst
--- old/colorama-0.2.4/CHANGELOG.rst1970-01-01 01:00:00.0 +0100
+++ new/colorama-0.2.5/CHANGELOG.rst2011-06-25 11:59:44.0 +0200
@@ -0,0 +1,79 @@
+0.2.3
+   Split changelog out into separate file.
+0.2.2
+Fix bug which caused init() to raise, introduced in 0.2.1.
+Remove asserts which cause problems in various circumstances. At least
+some users saw asserts fail on 'success' returned from win32 functions,
+even though the win32 functions appear to have worked correctly.
+0.2.1
+Completely broken: I added a bug which caused init() to raise.
+Added some documentation for cursor positioning and clear screen to README.
+Add 'reinit' and 'deinit' functions, as suggested by Charles FOL and
+Romanov DA.
+0.2
+Merge in changes from Daniel Griffith: Add ANSI cursor positioning 
+partial support for clear screen. Patch submitted by Oscar Lester, don't
+send RESET_ALL to non-tty. Demos split into separate files and moved into
+their own directory. Tweak sys.path in demos so they run against local
+source, not installed version of Colorama.
+0.1.18
+Fix README (no such attr as Fore.DEFAULT, etc), kindly reported by nodakai.
+0.1.17
+Prevent printing of garbage ANSI codes upon installing with pip
+0.1.16
+Re-upload to fix previous error. Make clean now removes old MANIFEST.
+0.1.15
+Completely broken. Distribution was empty due to leftover invalid MANIFEST
+file from building on a different platform.
+Fix python3 incompatibility kindly reported by G |uumlaut| nter Kolousek
+0.1.14
+Fix hard-coded reset to white-on-black colors. Fore.RESET, Back.RESET
+and Style.RESET_ALL now revert to the colors as they were when init()
+was called. Some lessons hopefully learned about testing prior to release.
+0.1.13
+Completely broken: barfed when installed using pip.
+0.1.12
+Completely broken: contained no source code. double oops.
+0.1.11
+Completely broken: fatal import errors on Ubuntu. oops.
+0.1.10
+Stop emulating 'bright' text with bright backgrounds.
+Display 'normal' text using win32 normal foreground instead of bright.
+Drop support for 'dim' text.
+0.1.9
+Fix incompatibility with Python 2.5 and earlier.
+Remove setup.py dependency on setuptools, now uses stdlib distutils.
+0.1.8
+Fix ghastly errors all over the place on Ubuntu.
+Add init kwargs 'convert' and 'strip', which supercede the old 'wrap'.
+0.1.7
+Python 3 compatible.

commit python-colorama for openSUSE:Factory

2012-11-21 Thread h_root
Hello community,

here is the log from the commit of package python-colorama for openSUSE:Factory 
checked in at 2012-11-21 17:06:19

Comparing /work/SRC/openSUSE:Factory/python-colorama (Old)
 and  /work/SRC/openSUSE:Factory/.python-colorama.new (New)


Package is python-colorama, Maintainer is 

Changes:

New Changes file:

--- /dev/null   2012-10-22 00:44:18.403455820 +0200
+++ /work/SRC/openSUSE:Factory/.python-colorama.new/python-colorama.changes 
2012-11-21 17:06:22.0 +0100
@@ -0,0 +1,5 @@
+---
+Mon Nov 19 13:38:58 UTC 2012 - sasc...@suse.de
+
+- Initial version
+

New:

  colorama-0.2.4.tar.gz
  python-colorama.changes
  python-colorama.spec



Other differences:
--
++ python-colorama.spec ++
#
# spec file for package python-colorama
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# 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 http://bugs.opensuse.org/


Name:   python-colorama
Version:0.2.4
Release:0
License:BSD-3-Clause
Summary:Cross-platform colored terminal text
Url:http://code.google.com/p/colorama/
Group:  Development/Languages/Python
Source: 
http://pypi.python.org/packages/source/c/colorama/colorama-%{version}.tar.gz
BuildRequires:  python-devel
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
%if 0%{?suse_version}  0%{?suse_version} = 1110
%{!?python_sitelib: %global python_sitelib %(python -c from 
distutils.sysconfig import get_python_lib; print get_python_lib())}
%else
BuildArch:  noarch
%endif

%description
Makes ANSI escape character sequences, for producing colored terminal text and
cursor positioning, work under MS Windows.

ANSI escape character sequences have long been used to produce colored terminal
text and cursor positioning on Unix and Macs. Colorama makes this work on
Windows, too. It also provides some shortcuts to help generate ANSI sequences,
and works fine in conjunction with any other ANSI sequence generation library,
such as Termcolor.

This has the upshot of providing a simple cross-platform API for printing
colored terminal text from Python, and has the happy side-effect that existing
applications or libraries which use ANSI sequences to produce colored output on
Linux or Macs can now also work on Windows, simply by calling colorama.init().

%prep
%setup -q -n colorama-%{version}
sed -i s/\r// README.txt LICENSE.txt demos/demo0{6,7}.py demos/demo.bat

%build
python setup.py build

%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}

%files
%defattr(-,root,root,-)
%doc LICENSE.txt README.txt demos
%{python_sitelib}/*

%changelog
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org