Hello community,
here is the log from the commit of package python-reportlab for
openSUSE:Factory checked in at 2019-11-24 23:50:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-reportlab (Old)
and /work/SRC/openSUSE:Factory/.python-reportlab.new.26869 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-reportlab"
Sun Nov 24 23:50:30 2019 rev:23 rq:749753 version:3.5.32
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-reportlab/python-reportlab.changes
2019-10-22 15:42:02.949484452 +0200
+++
/work/SRC/openSUSE:Factory/.python-reportlab.new.26869/python-reportlab.changes
2019-11-24 23:50:31.948011992 +0100
@@ -1,0 +2,32 @@
+Tue Nov 19 20:31:02 UTC 2019 - Todd R <[email protected]>
+
+- version update to 3.5.32
+ * some chart efficiency changes
+ * use clock in fontFinder contributed by Matěj Cepl @ bitbucket
+ * improve recursive access and do some minor eval/exec fixes
+ * improve use of eval/exec
+- version update to 3.5.31
+ * paraparser fix contributed by ravi prakash giri <[email protected]>
+- version update to 3.5.30
+ * better support for candlestick charts using smartGetItem
+- version update to 3.5.29
+ * Support for candlestick charts and infilled pair plots
+- version update to 3.5.28
+ * improve support for AES encryption
+- version update to 3.5.27
+ * fix to justified para splits contributed by Niharika Singh
<[email protected]>
+ * fix BalanceColumn width calculation
+ * preliminary support for AES encryption (contributed by
https://github.com/talebi1)
+- version update to 3.5.26
+ * micro changes to normalDate
+ * fix warnings about is not (detected in python 3.8b4)
+ * implement PR #59 bug fix contributed by Vytis Banaitis
+- version update to 3.5.25
+ * add recursive ttf searching
+ * sync with rlextra
+ * fix Barchart axis crossing issue reported by Martin Jones (Zeidler)
+- version update to 3.5.24
+ * prepare for python3.8, drop support for python3.4
+- rebase python38_build.patch
+
+-------------------------------------------------------------------
Old:
----
reportlab-3.5.23.tar.gz
New:
----
reportlab-3.5.32.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-reportlab.spec ++++++
--- /var/tmp/diff_new_pack.g356F9/_old 2019-11-24 23:50:32.568011957 +0100
+++ /var/tmp/diff_new_pack.g356F9/_new 2019-11-24 23:50:32.568011957 +0100
@@ -19,12 +19,11 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define oldpython python
Name: python-reportlab
-Version: 3.5.23
+Version: 3.5.32
Release: 0
-Url: http://www.reportlab.com/
Summary: The Reportlab Toolkit
License: BSD-3-Clause
-Group: Development/Languages/Python
+URL: https://www.reportlab.com/
Source0:
https://files.pythonhosted.org/packages/source/r/reportlab/reportlab-%{version}.tar.gz
Source1: encryption.gif
Patch0: reportlab-missing-includes.patch
++++++ python38_build.patch ++++++
--- /var/tmp/diff_new_pack.g356F9/_old 2019-11-24 23:50:32.592011955 +0100
+++ /var/tmp/diff_new_pack.g356F9/_new 2019-11-24 23:50:32.604011955 +0100
@@ -1,35 +1,3 @@
---- a/src/reportlab/lib/fontfinder.py
-+++ b/src/reportlab/lib/fontfinder.py
-@@ -67,6 +67,11 @@ try:
- except ImportError:
- from md5 import md5
-
-+try:
-+ from time import clock
-+except ImportError:
-+ from time import process_time as clock
-+
- EXTENSIONS = ['.ttf','.ttc','.otf','.pfb','.pfa']
-
- # PDF font flags (see PDF Reference Guide table 5.19)
-@@ -229,7 +234,7 @@ class FontFinder:
- self.__dict__.update(finder2.__dict__)
-
- def search(self):
-- started = time.clock()
-+ started = clock()
- if not self._dirs:
- raise ValueError("Font search path is empty! Please specify
search directories using addDirectory or addDirectories")
-
-@@ -311,7 +316,7 @@ class FontFinder:
- if self.useCache:
- self.save(cfn)
-
-- finished = time.clock()
-+ finished = clock()
- ## print "found %d fonts; skipped %d; bad %d. Took %0.2f seconds" % (
- ## len(self._fonts), len(self._skippedFiles), len(self._badFiles),
- ## finished - started
--- a/src/reportlab/pdfbase/cidfonts.py
+++ b/src/reportlab/pdfbase/cidfonts.py
@@ -16,6 +16,11 @@ try:
++++++ reportlab-3.5.23.tar.gz -> reportlab-3.5.32.tar.gz ++++++
++++ 4308 lines of diff (skipped)