commit python3-xlwt for openSUSE:Factory

2017-02-22 Thread root
Hello community,

here is the log from the commit of package python3-xlwt for openSUSE:Factory 
checked in at 2017-02-22 13:54:59

Comparing /work/SRC/openSUSE:Factory/python3-xlwt (Old)
 and  /work/SRC/openSUSE:Factory/.python3-xlwt.new (New)


Package is "python3-xlwt"

Changes:

--- /work/SRC/openSUSE:Factory/python3-xlwt/python3-xlwt-doc.changes
2016-06-25 02:23:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-xlwt.new/python3-xlwt-doc.changes   
2017-02-22 13:55:00.295763445 +0100
@@ -1,0 +2,13 @@
+Mon Feb 20 21:45:21 UTC 2017 - a...@gmx.de
+
+- specfile:
+  * update copyright year
+
+- update to version 1.2.0:
+  * Remove "LOCALE" from regular expression that caused
+:class:`DeprecationWarning` that become an exception in Python 3.6
+  * Add :meth:`Workbook.sheet_index` helper.
+  * :meth:`Workbook.get_sheet` now takes either a string name or an
+integer index.
+
+---
python3-xlwt.changes: same change

Old:

  xlwt-1.1.2.tar.gz

New:

  xlwt-1.2.0.tar.gz



Other differences:
--
++ python3-xlwt-doc.spec ++
--- /var/tmp/diff_new_pack.gQ1vUE/_old  2017-02-22 13:55:00.883679796 +0100
+++ /var/tmp/diff_new_pack.gQ1vUE/_new  2017-02-22 13:55:00.887679228 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-xlwt-doc
 #
-# 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
@@ -17,7 +17,7 @@
 
 
 Name:   python3-xlwt-doc
-Version:1.1.2
+Version:1.2.0
 Release:0
 Url:https://secure.simplistix.co.uk/svn/xlwt/trunk
 Summary:Documentation for python3-xlwt

python3-xlwt.spec: same change
++ xlwt-1.1.2.tar.gz -> xlwt-1.2.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xlwt-1.1.2/PKG-INFO new/xlwt-1.2.0/PKG-INFO
--- old/xlwt-1.1.2/PKG-INFO 2016-06-09 07:15:59.0 +0200
+++ new/xlwt-1.2.0/PKG-INFO 2017-01-04 17:17:15.0 +0100
@@ -1,7 +1,7 @@
 Metadata-Version: 1.1
 Name: xlwt
-Version: 1.1.2
-Summary: Library to create spreadsheet files compatible with MS Excel 
97/2000/XP/2003 XLS files, on any platform, with Python 2.6, 2.6, 3.3+
+Version: 1.2.0
+Summary: Library to create spreadsheet files compatible with MS Excel 
97/2000/XP/2003 XLS files, on any platform, with Python 2.6, 2.7, 3.3+
 Home-page: http://www.python-excel.org/
 Author: John Machin
 Author-email: sjmac...@lexicon.net
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xlwt-1.1.2/docs/changes.rst 
new/xlwt-1.2.0/docs/changes.rst
--- old/xlwt-1.1.2/docs/changes.rst 2016-06-09 07:15:28.0 +0200
+++ new/xlwt-1.2.0/docs/changes.rst 2017-01-04 17:16:40.0 +0100
@@ -3,6 +3,17 @@
 
 .. currentmodule:: xlwt
 
+1.2.0 (4 January 2017)
+--
+
+- Remove ``LOCALE`` from regular expression that caused
+  :class:`DeprecationWarning` that become an exception in Python 3.6
+
+- Add :meth:`Workbook.sheet_index` helper.
+
+- :meth:`Workbook.get_sheet` now takes either a string name or an integer
+  index.
+
 1.1.2 (9 June 2016)
 ---
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xlwt-1.1.2/setup.py new/xlwt-1.2.0/setup.py
--- old/xlwt-1.1.2/setup.py 2016-06-09 07:15:28.0 +0200
+++ new/xlwt-1.2.0/setup.py 2017-01-04 17:16:40.0 +0100
@@ -5,7 +5,7 @@
 DESCRIPTION = (
 'Library to create spreadsheet files compatible with '
 'MS Excel 97/2000/XP/2003 XLS files, '
-'on any platform, with Python 2.6, 2.6, 3.3+'
+'on any platform, with Python 2.6, 2.7, 3.3+'
 )
 
 CLASSIFIERS = [
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xlwt-1.1.2/tests/test_by_name_functions.py 
new/xlwt-1.2.0/tests/test_by_name_functions.py
--- old/xlwt-1.1.2/tests/test_by_name_functions.py  1970-01-01 
01:00:00.0 +0100
+++ new/xlwt-1.2.0/tests/test_by_name_functions.py  2017-01-04 
17:16:40.0 +0100
@@ -0,0 +1,30 @@
+import unittest
+import xlwt
+
+class TestByName(unittest.TestCase):
+def setUp(self):
+self.wb = xlwt.Workbook()
+self.wb.add_sheet('Plan1')
+self.wb.add_sheet('Plan2')
+self.wb.add_sheet('Plan3')
+self.wb.add_sheet('Plan4')
+
+def test_sheet_index(self):
+'Return sheet index by sheet name'
+idx = self.wb.sheet_index('Plan3')
+self.assertEqual(2, idx)
+
+

commit python3-xlwt for openSUSE:Factory

2016-06-24 Thread h_root
Hello community,

here is the log from the commit of package python3-xlwt for openSUSE:Factory 
checked in at 2016-06-25 02:23:45

Comparing /work/SRC/openSUSE:Factory/python3-xlwt (Old)
 and  /work/SRC/openSUSE:Factory/.python3-xlwt.new (New)


Package is "python3-xlwt"

Changes:

--- /work/SRC/openSUSE:Factory/python3-xlwt/python3-xlwt-doc.changes
2016-05-25 21:27:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-xlwt.new/python3-xlwt-doc.changes   
2016-06-25 02:23:56.0 +0200
@@ -1,0 +2,18 @@
+Thu Jun 23 03:34:20 UTC 2016 - a...@gmx.de
+
+- update to version 1.1.2:
+  * Fix failure in style compression under Python 3.
+  * Officially support Python 3.5
+  * Documentation tweaks.
+
+- changes from version 1.1.1:
+  * Fix release problems.
+
+- changes from version 1.1.0:
+  * Fix SST BIFF record in Python 3.
+  * Fix for writing :class:`ExternSheetRecord` in Python 3.
+  * Add the ability to insert bitmap images from buffers as well as
+files.
+  * Official support for Python 3.5.
+
+---
python3-xlwt.changes: same change

Old:

  xlwt-1.0.0.tar.gz

New:

  xlwt-1.1.2.tar.gz



Other differences:
--
++ python3-xlwt-doc.spec ++
--- /var/tmp/diff_new_pack.Tvp3xl/_old  2016-06-25 02:23:57.0 +0200
+++ /var/tmp/diff_new_pack.Tvp3xl/_new  2016-06-25 02:23:57.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-xlwt-doc
-Version:1.0.0
+Version:1.1.2
 Release:0
 Url:https://secure.simplistix.co.uk/svn/xlwt/trunk
 Summary:Documentation for python3-xlwt

python3-xlwt.spec: same change
++ xlwt-1.0.0.tar.gz -> xlwt-1.1.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xlwt-1.0.0/.gitignore new/xlwt-1.1.2/.gitignore
--- old/xlwt-1.0.0/.gitignore   2015-04-15 03:29:03.0 +0200
+++ new/xlwt-1.1.2/.gitignore   2016-06-09 07:15:28.0 +0200
@@ -5,3 +5,7 @@
 /tests/output
 .coverage
 /docs/_build
+.tox
+/bin
+/include
+/lib
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xlwt-1.0.0/.travis.yml new/xlwt-1.1.2/.travis.yml
--- old/xlwt-1.0.0/.travis.yml  2015-04-15 22:34:50.0 +0200
+++ new/xlwt-1.1.2/.travis.yml  2016-06-09 07:15:28.0 +0200
@@ -1,6 +1,10 @@
+# for container-y goodness:
+sudo: false
+
 language: python
 
 python:
+  - "3.5"
   - "3.4"
   - "3.3"
   - "2.7"
@@ -14,3 +18,15 @@
 
 after_success:
   - coveralls
+
+deploy:
+  provider: pypi
+  user: chrisw
+  password:
+secure: 
HZ9DRsLpeNMBZc3Sjj2X/KF/fJxaDjINqbeUzJ7FnqcJ5A5ECDHZ/2Bxx/crdpfXwqHDPEcZvatu+LhtpBFu+HCUFAc00V0qvmq34RZDes9WNmnh5Kx97kXxdN0scoM1V7JXeDffhEUZJkL6EQJfJqUWvl9nq4SnC5wOlJBR3QE=
+  on:
+tags: true
+repo: python-excel/xlwt
+python: "3.5"
+  skip_cleanup: true
+  distributions: "sdist bdist_wheel"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xlwt-1.0.0/PKG-INFO new/xlwt-1.1.2/PKG-INFO
--- old/xlwt-1.0.0/PKG-INFO 2015-04-15 23:24:18.0 +0200
+++ new/xlwt-1.1.2/PKG-INFO 2016-06-09 07:15:59.0 +0200
@@ -1,23 +1,26 @@
 Metadata-Version: 1.1
 Name: xlwt
-Version: 1.0.0
+Version: 1.1.2
 Summary: Library to create spreadsheet files compatible with MS Excel 
97/2000/XP/2003 XLS files, on any platform, with Python 2.6, 2.6, 3.3+
 Home-page: http://www.python-excel.org/
 Author: John Machin
 Author-email: sjmac...@lexicon.net
 License: BSD
 Download-URL: http://pypi.python.org/pypi/xlwt
-Description: |Travis|_ |Coveralls|_ |Docs|_
+Description: |Travis|_ |Coveralls|_ |Docs|_ |PyPI|_
 
-.. |Travis| image:: 
https://api.travis-ci.org/python-excel/xlwt.png?branch=master
+.. |Travis| image:: 
https://api.travis-ci.org/python-excel/xlwt.svg?branch=master
 .. _Travis: https://travis-ci.org/python-excel/xlwt
 
-.. |Coveralls| image:: 
https://coveralls.io/repos/python-excel/xlwt/badge.png?branch=master
+.. |Coveralls| image:: 
https://coveralls.io/repos/python-excel/xlwt/badge.svg?branch=master
 .. _Coveralls: https://coveralls.io/r/python-excel/xlwt?branch=master
 
 .. |Docs| image:: 
https://readthedocs.org/projects/xlwt/badge/?version=latest
 .. _Docs: http://xlwt.readthedocs.org/en/latest/
 
+.. |PyPI| image:: https://badge.fury.io/py/xlwt.svg
+.. _PyPI: https://badge.fury.io/py/xlwt
+
 xlwt
 
 
@@ -37,7 +40,7 @@
 Quick start
 ===
 
-::
+.. code-block:: python
 
 import xlwt
 from datetime import datetim

commit python3-xlwt for openSUSE:Factory

2016-05-25 Thread h_root
Hello community,

here is the log from the commit of package python3-xlwt for openSUSE:Factory 
checked in at 2016-05-25 21:27:28

Comparing /work/SRC/openSUSE:Factory/python3-xlwt (Old)
 and  /work/SRC/openSUSE:Factory/.python3-xlwt.new (New)


Package is "python3-xlwt"

Changes:

New Changes file:

--- /dev/null   2016-04-07 01:36:33.300037506 +0200
+++ /work/SRC/openSUSE:Factory/.python3-xlwt.new/python3-xlwt-doc.changes   
2016-05-25 21:27:31.0 +0200
@@ -0,0 +1,71 @@
+---
+Thu May 19 18:37:25 UTC 2016 - toddrme2...@gmail.com
+
+- Split documentation into own subpackage to speed up build.
+
+---
+Sun May  8 07:12:33 UTC 2016 - a...@gmx.de
+
+- specfile:
+  * changed to https for source url
+  * updated source url to files.pythonhosted.org
+
+
+---
+Wed Jul 29 16:12:19 UTC 2015 - toddrme2...@gmail.com
+
+- Add license to documentation.
+
+---
+Wed Jul 29 08:51:26 UTC 2015 - toddrme2...@gmail.com
+
+- Initial python 3 version.
+
+---
+Thu May 14 16:06:30 UTC 2015 - benoit.mo...@gmx.fr
+
+- update to version 1.0.0:
+  * Python 3 support.
+  * Initial set of unit tests.
+  * An initial set of Sphinx documentation.
+  * Move to setuptools for packaging.
+  * Wire up Travis, Coveralls and ReadTheDocs.
+  * Allow longs as row indexes.
+- add new dependencies python-Sphinx, python-nose, python-pkginfo,
+  python-setuptools
+- only define python_sitelib for SLE11 and remove %py_requires
+- fix end of line encoding of examples scripts
+- remove CFLAGS declaration
+- build the documentation with sphinx
+- run the tests with nosetests
+- update the paths of doc and examples: changed upstream
+
+---
+Wed Sep 18 14:02:35 UTC 2013 - idon...@suse.com
+
+- Update to version 0.7.5
+  * No changelog provided upstream
+
+---
+Thu Dec 27 10:07:23 UTC 2012 - cfarr...@suse.com
+
+- license update: BSD-4-Clause and BSD-3-Clause and LGPL-2.1+
+  See licenses.py and xlwt/Util.py
+
+---
+Fri Apr 27 23:19:41 UTC 2012 - jf...@funktronics.ca
+
+- Update to 0.7.4
+  * No change information available
+
+---
+Tue Feb 21 19:56:05 UTC 2012 - jf...@funktronics.ca
+
+- Update to 0.7.3
+- Update spec for current conventions
+
+---
+Wed May 12 13:03:16 UTC 2010 - jf...@funktronics.ca
+
+- Initial release
+
--- /work/SRC/openSUSE:Factory/python3-xlwt/python3-xlwt.changes
2015-08-17 15:35:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-xlwt.new/python3-xlwt.changes   
2016-05-25 21:27:32.0 +0200
@@ -1,0 +2,13 @@
+Thu May 19 18:37:25 UTC 2016 - toddrme2...@gmail.com
+
+- Split documentation into own subpackage to speed up build.
+
+---
+Sun May  8 07:12:33 UTC 2016 - a...@gmx.de
+
+- specfile:
+  * changed to https for source url
+  * updated source url to files.pythonhosted.org
+
+
+---

New:

  python3-xlwt-doc.changes
  python3-xlwt-doc.spec



Other differences:
--
++ python3-xlwt-doc.spec ++
#
# spec file for package python3-xlwt-doc
#
# 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
# 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:   python3-xlwt-doc
Version:1.0.0
Release:0
Url:https://secure.simplistix.co.uk/svn/xlwt/trunk
Summary:Documentation for python3-xlwt
License:BSD-4-Clause and BSD-3-Clause and LGPL-2.1+
Group:  Documentation/Other
Source: 
https://files.pythonhosted.org/packages/source/x/xlwt/xlwt-%{version}.tar.gz
BuildRoot:  %{_tmppa