commit python-XlsxWriter for openSUSE:Factory

2020-06-26 Thread root
Hello community,

here is the log from the commit of package python-XlsxWriter for 
openSUSE:Factory checked in at 2020-06-26 21:44:51

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


Package is "python-XlsxWriter"

Fri Jun 26 21:44:51 2020 rev:11 rq:816881 version:1.2.9

Changes:

--- /work/SRC/openSUSE:Factory/python-XlsxWriter/python-XlsxWriter.changes  
2020-02-03 11:12:12.837811442 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-XlsxWriter.new.3060/python-XlsxWriter.changes
2020-06-26 21:45:00.709748188 +0200
@@ -1,0 +2,18 @@
+Wed Jun 24 16:57:30 UTC 2020 - Todd R 
+
+- Update to Release 1.2.9
+  * Added support for ``stacked`` and ``percent_stacked`` Line charts.
+- Update to Release 1.2.8
+  * Fix for issue where duplicate images with hyperlinks weren't handled
+correctly.
+Issue `#686 `_.
+  * Removed ``ReservedWorksheetName`` exception which was used with the 
reserved
+worksheet name "History" since this name is allowed in some Excel variants.
+Issue `#688 `_.
+  * Fix for worksheet objects (charts, images and textboxes) that are inserted
+with an offset that starts in a hidden cell.
+Issue `#676 `_.
+  * Fix to allow handling of NoneType in :func:`add_write_handler`.
+Issue `#677 `_.
+
+---

Old:

  XlsxWriter-RELEASE_1.2.7.tar.gz

New:

  XlsxWriter-RELEASE_1.2.9.tar.gz



Other differences:
--
++ python-XlsxWriter.spec ++
--- /var/tmp/diff_new_pack.DWFJMw/_old  2020-06-26 21:45:01.809751708 +0200
+++ /var/tmp/diff_new_pack.DWFJMw/_new  2020-06-26 21:45:01.809751708 +0200
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define oldpython python
 Name:   python-XlsxWriter
-Version:1.2.7
+Version:1.2.9
 Release:0
 Summary:Python module for writing OOXML spreadsheet files
 License:BSD-2-Clause
@@ -44,14 +44,14 @@
 Obsoletes:  python3-xlsxwriter < %{version}
 %endif
 
+%python_subpackages
+
 %description
 XlsxWriter is a Python module for writing files in the Microsoft
 Office Open XML spreadsheet format. It can be used to write text,
 numbers, formulas and hyperlinks to multiple worksheets and it
 supports features such as formatting and many more.
 
-%python_subpackages
-
 %prep
 %setup -q -n XlsxWriter-RELEASE_%{version}
 

++ XlsxWriter-RELEASE_1.2.7.tar.gz -> XlsxWriter-RELEASE_1.2.9.tar.gz ++
/work/SRC/openSUSE:Factory/python-XlsxWriter/XlsxWriter-RELEASE_1.2.7.tar.gz 
/work/SRC/openSUSE:Factory/.python-XlsxWriter.new.3060/XlsxWriter-RELEASE_1.2.9.tar.gz
 differ: char 13, line 1




commit python-XlsxWriter for openSUSE:Factory

2020-02-03 Thread root
Hello community,

here is the log from the commit of package python-XlsxWriter for 
openSUSE:Factory checked in at 2020-02-03 11:12:00

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


Package is "python-XlsxWriter"

Mon Feb  3 11:12:00 2020 rev:10 rq:768823 version:1.2.7

Changes:

--- /work/SRC/openSUSE:Factory/python-XlsxWriter/python-XlsxWriter.changes  
2019-09-23 12:17:47.557803004 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-XlsxWriter.new.26092/python-XlsxWriter.changes
   2020-02-03 11:12:12.837811442 +0100
@@ -1,0 +2,46 @@
+Thu Jan 30 15:38:43 UTC 2020 - Todd R 
+
+- Update to version 1.2.7
+  * Fix for duplicate images being copied to an XlsxWriter file. Excel uses an
+optimization where it only stores one copy of a repeated/duplicate image in
+a workbook. XlsxWriter didn't do this which meant that the file size would
+increase when then was a large number of repeated images. This release 
fixes
+that issue and replicates Excel's behavior.
+  * Added documentation on :ref:`num_format_categories` and
+:ref:`num_format_locale`.
+  * Added note to :func:`protect()` about how it is possible to encrypt an
+XlsxWriter file using a third party, cross platform, open source tool 
called
+`msoffice-crypt `_.
+- Update to version 1.2.6
+  * Added option to remove style from worksheet tables.
+- Update to version 1.2.5
+  * Added option to add hyperlinks to textboxes. See :ref:`textbox_hyperlink`.
+- Update to version 1.2.4
+  * Added option to link textbox text from a cell. See :ref:`textbox_textlink`.
+  * Added option to rotate text in a textbox. See
+:ref:`textbox_formatting_rotation`.
+- Update to version 1.2.3
+  * Increased allowable worksheet url length from 255 to 2079 characters, as
+supported in more recent versions of Excel. A lower or user defined limit
+can be set via the ``max_url_length`` property in the :func:`Workbook`
+constructor.
+  * Fixed several issues with hyperlinks in worksheet images.
+- Update to version 1.2.2
+  * Fixed Python 3.8.0 warnings.
+- Update to version 1.2.1
+  * Added the :func:`add_write_handler` method to allow user defined types to 
be
+handled by the :func:`write` method. See :ref:`writing_user_types` for more
+information.
+  * Add support for East Asian vertical fonts in charts.
+- Update to version 1.2.0
+  * Refactored exception handling around the workbook file :func:`close()`
+method to allow exceptions to be caught and handled. See
+:ref:`ex_check_close`. Also refactored the code to clean up temp files in
+the event of an exception.
+  * Added the option to allow chart fonts to be rotated to 270 degrees
+to give a stacked orientation. See :ref:`chart_fonts`.
+- Update to version 1.1.9
+  * Another fix for issues where zipfile.py raises "ZIP does not support
+timestamps before 1980" exception.
+
+---

Old:

  XlsxWriter-RELEASE_1.1.8.tar.gz

New:

  XlsxWriter-RELEASE_1.2.7.tar.gz



Other differences:
--
++ python-XlsxWriter.spec ++
--- /var/tmp/diff_new_pack.U1BNgw/_old  2020-02-03 11:12:13.757811907 +0100
+++ /var/tmp/diff_new_pack.U1BNgw/_new  2020-02-03 11:12:13.757811907 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-XlsxWriter
 #
-# Copyright (c) 2019 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
@@ -19,15 +19,15 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define oldpython python
 Name:   python-XlsxWriter
-Version:1.1.8
+Version:1.2.7
 Release:0
 Summary:Python module for writing OOXML spreadsheet files
 License:BSD-2-Clause
 Group:  Development/Languages/Python
-Url:https://xlsxwriter.readthedocs.org/
+URL:https://github.com/jmcnamara/XlsxWriter
 Source: 
https://github.com/jmcnamara/XlsxWriter/archive/RELEASE_%{version}.tar.gz#/XlsxWriter-RELEASE_%{version}.tar.gz
-BuildRequires:  %{python_module setuptools}
 BuildRequires:  %{python_module pytest}
+BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 Requires(post): update-alternatives

++ XlsxWriter-RELEASE_1.1.8.tar.gz -> XlsxWriter-RELEASE_1.2.7.tar.gz ++
/work/SRC/openSUSE:Factory/python-XlsxWriter/XlsxWriter-RELEASE_1.1.8.tar.gz 
/work/SRC/openSUSE:Factory/.python-XlsxWriter.new.26092/XlsxWriter-RELEASE_1.2.7.tar.gz

commit python-XlsxWriter for openSUSE:Factory

2019-09-23 Thread root
Hello community,

here is the log from the commit of package python-XlsxWriter for 
openSUSE:Factory checked in at 2019-09-23 12:17:46

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


Package is "python-XlsxWriter"

Mon Sep 23 12:17:46 2019 rev:9 rq:731192 version:1.1.8

Changes:

--- /work/SRC/openSUSE:Factory/python-XlsxWriter/python-XlsxWriter.changes  
2019-07-30 13:05:35.078384871 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-XlsxWriter.new.7948/python-XlsxWriter.changes
2019-09-23 12:17:47.557803004 +0200
@@ -1,0 +2,6 @@
+Sat Sep 14 06:44:46 UTC 2019 - John Vandenberg 
+
+- Use %pytest, as setup.py test invokes python which does not exist
+  if only python3 flavour is built.
+
+---



Other differences:
--
++ python-XlsxWriter.spec ++
--- /var/tmp/diff_new_pack.1LXhe3/_old  2019-09-23 12:17:48.517802847 +0200
+++ /var/tmp/diff_new_pack.1LXhe3/_new  2019-09-23 12:17:48.521802846 +0200
@@ -27,6 +27,7 @@
 Url:https://xlsxwriter.readthedocs.org/
 Source: 
https://github.com/jmcnamara/XlsxWriter/archive/RELEASE_%{version}.tar.gz#/XlsxWriter-RELEASE_%{version}.tar.gz
 BuildRequires:  %{python_module setuptools}
+BuildRequires:  %{python_module pytest}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 Requires(post): update-alternatives
@@ -72,7 +73,7 @@
 %python_uninstall_alternative vba_extract
 
 %check
-%python_exec setup.py test
+%pytest
 
 %files %{python_files}
 %doc Changes README.rst




commit python-XlsxWriter for openSUSE:Factory

2019-07-30 Thread root
Hello community,

here is the log from the commit of package python-XlsxWriter for 
openSUSE:Factory checked in at 2019-07-30 13:05:18

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


Package is "python-XlsxWriter"

Tue Jul 30 13:05:18 2019 rev:8 rq:717651 version:1.1.8

Changes:

--- /work/SRC/openSUSE:Factory/python-XlsxWriter/python-XlsxWriter.changes  
2019-02-25 17:57:42.422272264 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-XlsxWriter.new.4126/python-XlsxWriter.changes
2019-07-30 13:05:35.078384871 +0200
@@ -1,0 +2,26 @@
+Mon Jul 22 16:16:15 UTC 2019 - Todd R 
+
+- Update to Release 1.1.8
+  * Added ability to combine Doughnut and Pie charts.
+  * Added gauge chart example which is a combination of a Doughnut and a Pie
+chart.
+- Update to Release 1.1.7
+  * Added docs on object_position.
+  * Added fix for sizing of cell comment boxes when they cross columns/rows 
that
+have size changes that occur after the comment is written.
+  * Added fix for the sizing of worksheet objects (images, charts, textboxes)
+when the underlying cell sizes have changed and the "object_position"
+parameter has been set to 1 "Move and size with cells". An additional mode 
4
+has been added to simulate inserting the object in hidden rows.
+* Added object positioning for charts and textboxes, it was already 
supported
+for images. Note, the parameter is now called ``object_position``. The
+previous parameter name ``positioning`` is deprecated but still supported
+for images.
+- Update to Release 1.1.6
+  * Fixed issue where images that started in hidden rows/columns weren't placed
+correctly in the worksheet.
+  * Fixed the mime-type reported by system ``file(1)``. The mime-type reported
+by "file --mime-type"/magic was incorrect for XlsxWriter files since it
+expected the ``[Content_types]`` to be the first file in the zip container.
+
+---

Old:

  XlsxWriter-1.1.5.tar.gz

New:

  XlsxWriter-RELEASE_1.1.8.tar.gz



Other differences:
--
++ python-XlsxWriter.spec ++
--- /var/tmp/diff_new_pack.JEChzh/_old  2019-07-30 13:05:35.966384637 +0200
+++ /var/tmp/diff_new_pack.JEChzh/_new  2019-07-30 13:05:35.966384637 +0200
@@ -19,13 +19,13 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define oldpython python
 Name:   python-XlsxWriter
-Version:1.1.5
+Version:1.1.8
 Release:0
 Summary:Python module for writing OOXML spreadsheet files
 License:BSD-2-Clause
 Group:  Development/Languages/Python
 Url:https://xlsxwriter.readthedocs.org/
-Source: 
https://github.com/jmcnamara/XlsxWriter/archive/RELEASE_%{version}.tar.gz#/XlsxWriter-%{version}.tar.gz
+Source: 
https://github.com/jmcnamara/XlsxWriter/archive/RELEASE_%{version}.tar.gz#/XlsxWriter-RELEASE_%{version}.tar.gz
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros




commit python-XlsxWriter for openSUSE:Factory

2019-02-25 Thread root
Hello community,

here is the log from the commit of package python-XlsxWriter for 
openSUSE:Factory checked in at 2019-02-25 17:57:37

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


Package is "python-XlsxWriter"

Mon Feb 25 17:57:37 2019 rev:7 rq:678739 version:1.1.5

Changes:

--- /work/SRC/openSUSE:Factory/python-XlsxWriter/python-XlsxWriter.changes  
2019-02-24 17:21:03.080390155 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-XlsxWriter.new.28833/python-XlsxWriter.changes
   2019-02-25 17:57:42.422272264 +0100
@@ -1,0 +2,6 @@
+Mon Feb 25 03:41:22 UTC 2019 - John Vandenberg 
+
+- Update to v1.1.5
+  * Break compatibility with Python 2.6
+
+---

Old:

  XlsxWriter-1.1.4.tar.gz

New:

  XlsxWriter-1.1.5.tar.gz



Other differences:
--
++ python-XlsxWriter.spec ++
--- /var/tmp/diff_new_pack.vU0Vhi/_old  2019-02-25 17:57:43.458271382 +0100
+++ /var/tmp/diff_new_pack.vU0Vhi/_new  2019-02-25 17:57:43.458271382 +0100
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define oldpython python
 Name:   python-XlsxWriter
-Version:1.1.4
+Version:1.1.5
 Release:0
 Summary:Python module for writing OOXML spreadsheet files
 License:BSD-2-Clause

++ XlsxWriter-1.1.4.tar.gz -> XlsxWriter-1.1.5.tar.gz ++
/work/SRC/openSUSE:Factory/python-XlsxWriter/XlsxWriter-1.1.4.tar.gz 
/work/SRC/openSUSE:Factory/.python-XlsxWriter.new.28833/XlsxWriter-1.1.5.tar.gz 
differ: char 13, line 1




commit python-XlsxWriter for openSUSE:Factory

2019-02-24 Thread root
Hello community,

here is the log from the commit of package python-XlsxWriter for 
openSUSE:Factory checked in at 2019-02-24 17:20:59

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


Package is "python-XlsxWriter"

Sun Feb 24 17:20:59 2019 rev:6 rq:678416 version:1.1.4

Changes:

--- /work/SRC/openSUSE:Factory/python-XlsxWriter/python-XlsxWriter.changes  
2018-12-24 11:47:59.873101910 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-XlsxWriter.new.28833/python-XlsxWriter.changes
   2019-02-24 17:21:03.080390155 +0100
@@ -1,0 +2,12 @@
+Fri Feb 22 14:04:35 UTC 2019 - John Vandenberg 
+
+- Update to v1.1.4
+  * Fix for issues where zipfile.py raises "ZIP does not support
+timestamps before 1980" exception.
+Issue `#535 `_.
+- from v1.1.3
+  * Fix handling of ``'num_format': '0'`` in duplicate formats.
+Issue `#584 `_.
+- Activate the test suite using the GitHub repository archive.
+
+---

Old:

  XlsxWriter-1.1.2.tar.gz

New:

  XlsxWriter-1.1.4.tar.gz



Other differences:
--
++ python-XlsxWriter.spec ++
--- /var/tmp/diff_new_pack.LuW3I1/_old  2019-02-24 17:21:03.604390062 +0100
+++ /var/tmp/diff_new_pack.LuW3I1/_new  2019-02-24 17:21:03.604390062 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-XlsxWriter
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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,20 +12,20 @@
 # 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-%{**}}
 %define oldpython python
 Name:   python-XlsxWriter
-Version:1.1.2
+Version:1.1.4
 Release:0
 Summary:Python module for writing OOXML spreadsheet files
 License:BSD-2-Clause
 Group:  Development/Languages/Python
 Url:https://xlsxwriter.readthedocs.org/
-Source: 
https://files.pythonhosted.org/packages/source/X/XlsxWriter/XlsxWriter-%{version}.tar.gz
+Source: 
https://github.com/jmcnamara/XlsxWriter/archive/RELEASE_%{version}.tar.gz#/XlsxWriter-%{version}.tar.gz
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
@@ -52,7 +52,7 @@
 %python_subpackages
 
 %prep
-%setup -q -n XlsxWriter-%{version}
+%setup -q -n XlsxWriter-RELEASE_%{version}
 
 %build
 %python_build
@@ -71,6 +71,9 @@
 %postun
 %python_uninstall_alternative vba_extract
 
+%check
+%python_exec setup.py test
+
 %files %{python_files}
 %doc Changes README.rst
 %license LICENSE.txt

++ XlsxWriter-1.1.2.tar.gz -> XlsxWriter-1.1.4.tar.gz ++
/work/SRC/openSUSE:Factory/python-XlsxWriter/XlsxWriter-1.1.2.tar.gz 
/work/SRC/openSUSE:Factory/.python-XlsxWriter.new.28833/XlsxWriter-1.1.4.tar.gz 
differ: char 4, line 1




commit python-XlsxWriter for openSUSE:Factory

2018-12-24 Thread root
Hello community,

here is the log from the commit of package python-XlsxWriter for 
openSUSE:Factory checked in at 2018-12-24 11:47:58

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


Package is "python-XlsxWriter"

Mon Dec 24 11:47:58 2018 rev:5 rq:660755 version:1.1.2

Changes:

--- /work/SRC/openSUSE:Factory/python-XlsxWriter/python-XlsxWriter.changes  
2017-04-14 13:34:52.735491668 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-XlsxWriter.new.28833/python-XlsxWriter.changes
   2018-12-24 11:47:59.873101910 +0100
@@ -1,0 +2,96 @@
+Sat Dec 22 02:29:29 UTC 2018 - Todd R 
+
+- Update to version 1.1.2
+  * Fix for issue where ``in_memory`` files weren't compressed.
+Issue `#573 `_.
+  * Fix ``write()`` so that it handles array formulas as documented.
+Issue `#418 `_.
+  * Fix for issue with special characters in worksheet table functions.
+Issue `#442 `_.
+  * Added warnings for input issues in :func:`write_rich_string()` such as 
blank
+strings, double formats or insufficient parameters.
+Issue `#425 `_.
+- Update to version 1.1.1
+  * Added comment font name and size options.
+Issue `#201 `_.
+  * Fix for issue when using text boxes in the same workbook as a chartsheet.
+Issue `#420 `_.
+- Update to version 1.1.0
+  * Added functionality to align chart category axis labels. See the
+``label_align`` property of the :func:`set_x_axis()` method.
+  * Added worksheet :func:`hide_row_col_headers()` method to turn off worksheet
+row and column headings.
+Issue `#480 `_.
+  * Added the :func:`set_tab_ratio()` method to set the ratio between the
+worksheet tabs and the horizontal slider.
+Issue `#481 `_.
+  * Fixed issue with icon conditional formats when the values were zero.
+Issue `#565 `_.
+- Update to version 1.0.9
+  * Fix for issue with formulas quoted as strings in conditional formats,
+introduced in version 1.0.7.
+Issue `#564 `_.
+- Update to version 1.0.8
+  * Added named exceptions to XlsxWriter. See :ref:`exceptions`.
+  * Removed the implicit :func:`close()` in the destructor since it wasn't
+guaranteed to work correctly and raised a confusing exception when any 
other
+exception was triggered. **Note that this is a backward incompatible
+change.** The ``with`` context manager is a better way to close
+automatically, see :func:`close()`.
+  * Added border, fill, pattern and gradient formatting options to
+:func:`set_legend()`.
+Issue `#545 `_.
+  * Added ``top_right`` position to :func:`set_legend()`.
+Issue `#537 `_.
+- Update to version 1.0.7
+  * Fix for unicode type error in Python 3.
+Issue `#554 `_.
+- Update to version 1.0.6
+  * Added some performance improvements.
+PR `#551 `_.
+- Update to version 1.0.5
+  * Added example of how to subclass the Workbook and Worksheet objects. See
+:ref:`ex_inheritance1` and :ref:`ex_inheritance2`.
+  * Added support for WMF and EMF image formats to the Worksheet
+:func:`add_image` method.
+- Update to version 1.0.4
+  * Set the xlsx internal file member datetimes to 1980-01-01 00:00:00 like
+Excel so that apps can produce a consistent binary file once the workbook
+:func:`set_properties` ``created`` date is set.
+Pull request `#495 `_.
+  * Fix for jpeg images that reported unknown height/width due to unusual SOF 
markers.
+Issue `#506 `_.
+  * Added support for blanks in list autofilter.
+Issue `#505 `_.
+- Update to version 1.0.3
+  * Added Excel 2010 data bar features such as solid fills and control over the
+display of negative values. See :ref:`working_with_conditional_formats` and
+:ref:`ex_cond_format`.
+Feature request `#502 
`_.
+  * Fixed :func:`set_column` parameter names to match docs and other methods.
+Note, this is a backward incompatible change.
+

commit python-XlsxWriter for openSUSE:Factory

2017-04-14 Thread root
Hello community,

here is the log from the commit of package python-XlsxWriter for 
openSUSE:Factory checked in at 2017-04-14 13:34:52

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


Package is "python-XlsxWriter"

Fri Apr 14 13:34:52 2017 rev:4 rq:483979 version:0.9.6

Changes:

--- /work/SRC/openSUSE:Factory/python-XlsxWriter/python-XlsxWriter.changes  
2016-08-17 12:05:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-XlsxWriter.new/python-XlsxWriter.changes 
2017-04-14 13:34:52.735491668 +0200
@@ -1,0 +2,18 @@
+Thu Mar  2 09:01:52 UTC 2017 - sor.ale...@meowr.ru
+
+- Update to version 0.9.6 (changes since 0.9.3):
+  * Add user definable removal of timezones in datetimes
+(gh#jmcnamara/XlsxWriter#257).
+  * Fix a duplicate header warning in add_table when there is only
+one user defined header (gh#jmcnamara/XlsxWriter#380).
+  * A fix for the center_across property in add_format
+(gh#jmcnamara/XlsxWriter#381).
+  * A fix for a missing remove_timezone option in the Chart class
+(gh#jmcnamara/XlsxWriter#404).
+  * A fix for a table with data but without a header
+(gh#jmcnamara/XlsxWriter#405>).
+  * Add a warning when the number of series in a chart exceeds
+Excel's limit of 255 (gh#jmcnamara/XlsxWriter#399).
+- Update for the multipython build.
+
+---

Old:

  XlsxWriter-0.9.3.tar.gz

New:

  XlsxWriter-0.9.6.tar.gz



Other differences:
--
++ python-XlsxWriter.spec ++
--- /var/tmp/diff_new_pack.HPtfz9/_old  2017-04-14 13:34:53.711353754 +0200
+++ /var/tmp/diff_new_pack.HPtfz9/_new  2017-04-14 13:34:53.715353188 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-XlsxWriter
 #
-# 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,26 +16,32 @@
 #
 
 
+%{?!python_module:%define python_module() python-%{**} python3-%{**}}
+%define oldpython python
 Name:   python-XlsxWriter
-Version:0.9.3
+Version:0.9.6
 Release:0
 Summary:Python module for writing OOXML spreadsheet files
 License:BSD-2-Clause
 Group:  Development/Languages/Python
 Url:https://xlsxwriter.readthedocs.org/
 Source: 
https://files.pythonhosted.org/packages/source/X/XlsxWriter/XlsxWriter-%{version}.tar.gz
-BuildRequires:  python-devel
-BuildRequires:  python-setuptools
+BuildRequires:  %{python_module devel}
+BuildRequires:  %{python_module setuptools}
+BuildRequires:  fdupes
+BuildRequires:  python-rpm-macros
 Requires(post): update-alternatives
-Requires(preun): update-alternatives
-# python-xlsxwriter was last used in openSUSE Leap 42.1.
-Provides:   python-xlsxwriter = %{version}
-Obsoletes:  python-xlsxwriter < %{version}
-%if 0%{?suse_version} >= 1120
+Requires(postun): update-alternatives
 BuildArch:  noarch
-%else
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%py_requires
+%ifpython2
+# python-xlsxwriter was last used in openSUSE Leap 42.1.
+Provides:   %{oldpython}-xlsxwriter = %{version}
+Obsoletes:  %{oldpython}-xlsxwriter < %{version}
+%endif
+%ifpython3
+# python3-xlsxwriter was last used in openSUSE Leap 42.1.
+Provides:   python3-xlsxwriter = %{version}
+Obsoletes:  python3-xlsxwriter < %{version}
 %endif
 
 %description
@@ -44,38 +50,33 @@
 numbers, formulas and hyperlinks to multiple worksheets and it
 supports features such as formatting and many more.
 
+%python_subpackages
+
 %prep
 %setup -q -n XlsxWriter-%{version}
 
 %build
-python2 setup.py build
+%python_build
 
 %install
-python2 setup.py install \
-  --root=%{buildroot} --prefix=%{_prefix}
+%{python_expand %$python_install && \
+  mv %{buildroot}%{_bindir}/vba_extract.py \
+   %{buildroot}%{_bindir}/vba_extract-%$python_bin_suffix}
 
-# Prepare for update-alternatives usage.
-mkdir -p %{buildroot}%{_sysconfdir}/alternatives
-mv %{buildroot}%{_bindir}/vba_extract.py \
-  %{buildroot}%{_bindir}/vba_extract-%{py_ver}
-ln -sf %{_sysconfdir}/alternatives/vba_extract 
%{buildroot}%{_bindir}/vba_extract
+%prepare_alternative vba_extract
+%fdupes %{buildroot}%{python_sitelib}/
 
 %post
-%_sbindir/update-alternatives \
-  --install %{_bindir}/vba_extract vba_extract 
%{_bindir}/vba_extract-%{py_ver} 30
+%python_install_alternative vba_extract
 
-%preun
-if [ $1 -eq 0 ] ; then
-%_sbindir/update-alternatives --remove vba_extract 
%{_bindir}/vba_extract-%{py_ver}
-fi
+%postun
+%python_uninstall_alternative 

commit python-XlsxWriter for openSUSE:Factory

2016-08-17 Thread h_root
Hello community,

here is the log from the commit of package python-XlsxWriter for 
openSUSE:Factory checked in at 2016-08-17 12:05:17

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


Package is "python-XlsxWriter"

Changes:

--- /work/SRC/openSUSE:Factory/python-XlsxWriter/python-XlsxWriter.changes  
2016-08-03 11:42:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-XlsxWriter.new/python-XlsxWriter.changes 
2016-08-17 12:05:19.0 +0200
@@ -1,0 +2,5 @@
+Mon Aug 15 14:51:56 UTC 2016 - toddrme2...@gmail.com
+
+- Fix update-alternatives implementation.
+
+---



Other differences:
--
++ python-XlsxWriter.spec ++
--- /var/tmp/diff_new_pack.dSh79J/_old  2016-08-17 12:05:20.0 +0200
+++ /var/tmp/diff_new_pack.dSh79J/_new  2016-08-17 12:05:20.0 +0200
@@ -27,7 +27,7 @@
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
 Requires(post): update-alternatives
-Requires(postun): update-alternatives
+Requires(preun): update-alternatives
 # python-xlsxwriter was last used in openSUSE Leap 42.1.
 Provides:   python-xlsxwriter = %{version}
 Obsoletes:  python-xlsxwriter < %{version}
@@ -59,24 +59,22 @@
 mv %{buildroot}%{_bindir}/vba_extract.py \
   %{buildroot}%{_bindir}/vba_extract-%{py_ver}
 ln -sf %{_sysconfdir}/alternatives/vba_extract 
%{buildroot}%{_bindir}/vba_extract
-# Create a dummy target for /etc/alternatives/vba_extract.
-touch %{buildroot}%{_sysconfdir}/alternatives/vba_extract
 
 %post
-"%{_sbindir}/update-alternatives" \
+%_sbindir/update-alternatives \
   --install %{_bindir}/vba_extract vba_extract 
%{_bindir}/vba_extract-%{py_ver} 30
 
-%postun
+%preun
 if [ $1 -eq 0 ] ; then
-"%{_sbindir}/update-alternatives" --remove vba_extract 
%{_bindir}/vba_extract-%{py_ver}
+%_sbindir/update-alternatives --remove vba_extract 
%{_bindir}/vba_extract-%{py_ver}
 fi
 
 %files
 %defattr(-,root,root)
 %doc Changes LICENSE.txt README.rst
-%ghost %{_sysconfdir}/alternatives/vba_extract
 %{_bindir}/vba_extract
 %{_bindir}/vba_extract-%{py_ver}
+%ghost %{_sysconfdir}/alternatives/vba_extract
 %{python_sitelib}/xlsxwriter/
 %{python_sitelib}/XlsxWriter-%{version}-py*.egg-info
 




commit python-XlsxWriter for openSUSE:Factory

2016-08-03 Thread h_root
Hello community,

here is the log from the commit of package python-XlsxWriter for 
openSUSE:Factory checked in at 2016-08-03 11:42:45

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


Package is "python-XlsxWriter"

Changes:

--- /work/SRC/openSUSE:Factory/python-XlsxWriter/python-XlsxWriter.changes  
2016-06-07 23:46:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-XlsxWriter.new/python-XlsxWriter.changes 
2016-08-03 11:42:47.0 +0200
@@ -1,0 +2,18 @@
+Fri Jul 22 16:23:41 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 0.9.3 (changes since 0.8.7):
+  * Add workbook :func:`set_custom_property` method to set custom
+document properties.
+  * Fix for :func:`insert_image` issue when handling images with
+zero dpi.
+  * Add :ref:`trendline properties `:
+  ``intercept``, ``display_equation`` and ``display_r_squared``.
+  * Documented used of font rotation in chart :ref:`data labels
+`.
+  * Add workbook :func:`set_size` method to set the workbook window
+size.
+  * Add check to :func:`add_table` to prevent duplicate header
+names which leads to a corrupt Excel file.
+- Fix SLE 11 build.
+
+---

Old:

  XlsxWriter-0.8.7.tar.gz

New:

  XlsxWriter-0.9.3.tar.gz



Other differences:
--
++ python-XlsxWriter.spec ++
--- /var/tmp/diff_new_pack.Q39bzY/_old  2016-08-03 11:42:48.0 +0200
+++ /var/tmp/diff_new_pack.Q39bzY/_new  2016-08-03 11:42:48.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-XlsxWriter
-Version:0.8.7
+Version:0.9.3
 Release:0
 Summary:Python module for writing OOXML spreadsheet files
 License:BSD-2-Clause
@@ -26,12 +26,17 @@
 Source: 
https://files.pythonhosted.org/packages/source/X/XlsxWriter/XlsxWriter-%{version}.tar.gz
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
-Provides:   python-xlsxwriter = %{version}
-Obsoletes:  python-xlsxwriter < %{version}
 Requires(post): update-alternatives
 Requires(postun): update-alternatives
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+# python-xlsxwriter was last used in openSUSE Leap 42.1.
+Provides:   python-xlsxwriter = %{version}
+Obsoletes:  python-xlsxwriter < %{version}
+%if 0%{?suse_version} >= 1120
 BuildArch:  noarch
+%else
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%py_requires
+%endif
 
 %description
 XlsxWriter is a Python module for writing files in the Microsoft
@@ -46,30 +51,32 @@
 python2 setup.py build
 
 %install
-python2 setup.py install --root=%{buildroot}
+python2 setup.py install \
+  --root=%{buildroot} --prefix=%{_prefix}
 
-# Prepare for update-alternatives usage
+# Prepare for update-alternatives usage.
 mkdir -p %{buildroot}%{_sysconfdir}/alternatives
-mv %{buildroot}%{_bindir}/vba_extract.py 
%{buildroot}%{_bindir}/vba_extract-%{py_ver}
-ln -s -f %{_sysconfdir}/alternatives/vba_extract 
%{buildroot}%{_bindir}/vba_extract
-# create a dummy target for /etc/alternatives/vba_extract
+mv %{buildroot}%{_bindir}/vba_extract.py \
+  %{buildroot}%{_bindir}/vba_extract-%{py_ver}
+ln -sf %{_sysconfdir}/alternatives/vba_extract 
%{buildroot}%{_bindir}/vba_extract
+# Create a dummy target for /etc/alternatives/vba_extract.
 touch %{buildroot}%{_sysconfdir}/alternatives/vba_extract
 
 %post
-"%_sbindir/update-alternatives" \
+"%{_sbindir}/update-alternatives" \
--install %{_bindir}/vba_extract vba_extract 
%{_bindir}/vba_extract-%{py_ver} 30
 
 %postun
 if [ $1 -eq 0 ] ; then
-"%_sbindir/update-alternatives" --remove vba_extract 
%{_bindir}/vba_extract-%{py_ver}
+"%{_sbindir}/update-alternatives" --remove vba_extract 
%{_bindir}/vba_extract-%{py_ver}
 fi
 
 %files
 %defattr(-,root,root)
 %doc Changes LICENSE.txt README.rst
+%ghost %{_sysconfdir}/alternatives/vba_extract
 %{_bindir}/vba_extract
 %{_bindir}/vba_extract-%{py_ver}
-%ghost %{_sysconfdir}/alternatives/vba_extract
 %{python_sitelib}/xlsxwriter/
 %{python_sitelib}/XlsxWriter-%{version}-py*.egg-info
 

++ XlsxWriter-0.8.7.tar.gz -> XlsxWriter-0.9.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/XlsxWriter-0.8.7/Changes new/XlsxWriter-0.9.3/Changes
--- old/XlsxWriter-0.8.7/Changes2016-05-14 16:25:32.0 +0200
+++ new/XlsxWriter-0.9.3/Changes2016-07-09 00:15:36.0 +0200
@@ -1,4 +1,50 @@
 
+Release 0.9.3 - July 8 2016
+---
+
+* Added check to :func:`add_table` to prevent duplicate header names which
+  leads to a corrupt Excel file.
+  Issue `#362 

commit python-xlsxwriter for openSUSE:Factory

2016-05-31 Thread h_root
Hello community,

here is the log from the commit of package python-xlsxwriter for 
openSUSE:Factory checked in at 2016-05-31 12:25:20

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


Package is "python-xlsxwriter"

Changes:

--- /work/SRC/openSUSE:Factory/python-xlsxwriter/python-xlsxwriter.changes  
2016-05-02 10:44:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-xlsxwriter.new/python-xlsxwriter.changes 
2016-05-31 12:25:21.0 +0200
@@ -1,0 +2,9 @@
+Sun May 29 11:23:43 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 0.8.7:
+  * Add :func:`get_worksheet_by_name()` method to allow the
+retrieval of a worksheet from a workbook via its name.
+  * Fix issue where internal file creation and modification dates
+were in the local timezone instead of UTC.
+
+---

Old:

  xlsxwriter-0.8.6.tar.gz

New:

  xlsxwriter-0.8.7.tar.gz



Other differences:
--
++ python-xlsxwriter.spec ++
--- /var/tmp/diff_new_pack.neBS0E/_old  2016-05-31 12:25:24.0 +0200
+++ /var/tmp/diff_new_pack.neBS0E/_new  2016-05-31 12:25:24.0 +0200
@@ -18,14 +18,14 @@
 
 %define _name   xlsxwriter
 Name:   python-xlsxwriter
-Version:0.8.6
+Version:0.8.7
 Release:0
 Summary:Python module for writing OOXML spreadsheet files
 License:BSD-2-Clause
 Group:  Development/Languages/Python
 Url:https://xlsxwriter.readthedocs.org/
 Source: 
https://github.com/jmcnamara/XlsxWriter/archive/RELEASE_%{version}.tar.gz#/%{_name}-%{version}.tar.gz
-BuildRequires:  python-devel
+BuildRequires:  python
 BuildRequires:  python-setuptools
 %if 0%{?suse_version} >= 1120
 BuildArch:  noarch

++ xlsxwriter-0.8.6.tar.gz -> xlsxwriter-0.8.7.tar.gz ++
/work/SRC/openSUSE:Factory/python-xlsxwriter/xlsxwriter-0.8.6.tar.gz 
/work/SRC/openSUSE:Factory/.python-xlsxwriter.new/xlsxwriter-0.8.7.tar.gz 
differ: char 13, line 1




commit python-xlsxwriter for openSUSE:Factory

2016-05-02 Thread h_root
Hello community,

here is the log from the commit of package python-xlsxwriter for 
openSUSE:Factory checked in at 2016-05-02 10:44:44

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


Package is "python-xlsxwriter"

Changes:

--- /work/SRC/openSUSE:Factory/python-xlsxwriter/python-xlsxwriter.changes  
2016-02-22 08:57:14.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-xlsxwriter.new/python-xlsxwriter.changes 
2016-05-02 10:44:45.0 +0200
@@ -1,0 +2,10 @@
+Thu Apr 28 06:45:38 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 0.8.6 (changes since 0.8.4):
+  * Add additional documentation on :ref:`ewx_pandas` and
+:ref:`pandas_examples`.
+  * Add fix for :func:`set_center_across` format method.
+  * Fix for ``external:`` urls where the target/anchor contains
+spaces.
+
+---

Old:

  xlsxwriter-0.8.4.tar.gz

New:

  xlsxwriter-0.8.6.tar.gz



Other differences:
--
++ python-xlsxwriter.spec ++
--- /var/tmp/diff_new_pack.Uo2w8x/_old  2016-05-02 10:44:47.0 +0200
+++ /var/tmp/diff_new_pack.Uo2w8x/_new  2016-05-02 10:44:47.0 +0200
@@ -18,16 +18,16 @@
 
 %define _name   xlsxwriter
 Name:   python-xlsxwriter
-Version:0.8.4
+Version:0.8.6
 Release:0
 Summary:Python module for writing OOXML spreadsheet files
 License:BSD-2-Clause
-Group:  Development/Language/Python
+Group:  Development/Languages/Python
 Url:https://xlsxwriter.readthedocs.org/
 Source: 
https://github.com/jmcnamara/XlsxWriter/archive/RELEASE_%{version}.tar.gz#/%{_name}-%{version}.tar.gz
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
-%if 0%{?suse_version} > 1110
+%if 0%{?suse_version} >= 1120
 BuildArch:  noarch
 %else
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -47,12 +47,13 @@
 python2 setup.py build
 
 %install
-python2 setup.py install --root=%{buildroot}
+python2 setup.py install \
+  --root=%{buildroot}
 mv -f %{buildroot}%{_bindir}/vba_extract{.py,-%{py_ver}}
 
 %files
 %defattr(-,root,root)
-%doc CONTRIBUTING.md Changes LICENSE.txt README.rst
+%doc Changes LICENSE.txt README.rst
 %{_bindir}/vba_extract-%{py_ver}
 %{python_sitelib}/%{_name}/
 %{python_sitelib}/XlsxWriter-*/

++ xlsxwriter-0.8.4.tar.gz -> xlsxwriter-0.8.6.tar.gz ++
/work/SRC/openSUSE:Factory/python-xlsxwriter/xlsxwriter-0.8.4.tar.gz 
/work/SRC/openSUSE:Factory/.python-xlsxwriter.new/xlsxwriter-0.8.6.tar.gz 
differ: char 14, line 1




commit python-xlsxwriter for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package python-xlsxwriter for 
openSUSE:Factory checked in at 2016-02-22 08:57:12

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


Package is "python-xlsxwriter"

Changes:

--- /work/SRC/openSUSE:Factory/python-xlsxwriter/python-xlsxwriter.changes  
2015-12-09 22:32:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-xlsxwriter.new/python-xlsxwriter.changes 
2016-02-22 08:57:14.0 +0100
@@ -1,0 +2,17 @@
+Thu Feb 11 16:26:54 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to 0.8.4 (changes since 0.7.7):
+  * Add checks for valid and non-duplicate worksheet table names.
+  * Add chart pattern fills, see :ref:`chart_formatting_pattern`
+and :ref:`ex_chart_pattern`.
+  * Add additional documentation on :ref:`working_with_formulas`.
+  * Add option to set chart tick interval.
+  * Add transparency option to solid fill colours in chart areas
+(:ref:`chart_formatting_fill`).
+  * Add options to configure chart axis tick placement.
+See :func:`set_x_axis()`.
+  * Fix for :func:`write_url` exception when the URL contains two
+``#`` location/anchors. Note, URLs like this aren't strictly
+valid and cannot be entered manually in Excel.
+
+---

Old:

  xlsxwriter-0.7.7.tar.gz

New:

  xlsxwriter-0.8.4.tar.gz



Other differences:
--
++ python-xlsxwriter.spec ++
--- /var/tmp/diff_new_pack.75WbNd/_old  2016-02-22 08:57:16.0 +0100
+++ /var/tmp/diff_new_pack.75WbNd/_new  2016-02-22 08:57:16.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-xlsxwriter
 #
-# 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
@@ -18,7 +18,7 @@
 
 %define _name   xlsxwriter
 Name:   python-xlsxwriter
-Version:0.7.7
+Version:0.8.4
 Release:0
 Summary:Python module for writing OOXML spreadsheet files
 License:BSD-2-Clause

++ xlsxwriter-0.7.7.tar.gz -> xlsxwriter-0.8.4.tar.gz ++
/work/SRC/openSUSE:Factory/python-xlsxwriter/xlsxwriter-0.7.7.tar.gz 
/work/SRC/openSUSE:Factory/.python-xlsxwriter.new/xlsxwriter-0.8.4.tar.gz 
differ: char 14, line 1