forked from pool/python-relatorio
Compare commits
6 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 8690bc5959 | |||
| 4d7d3f0040 | |||
| 8d25566677 | |||
| e55aa46399 | |||
| dfe048aa59 | |||
| 92e000cf1e |
@@ -1,3 +1,15 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 24 10:15:36 UTC 2025 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 0.11.1:
|
||||
* Ignore ZipFile compresslevel for Python < 3.7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 9 13:15:39 UTC 2024 - Axel Braun <axel.braun@gmx.de>
|
||||
|
||||
- version 0.11.0
|
||||
* Allow setting zip file generation options on opendocument templates
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 5 09:28:52 UTC 2024 - Nathan Cutler <ncutler@suse.com>
|
||||
|
||||
@@ -40,7 +52,7 @@ Mon Sep 6 10:45:42 UTC 2021 - pgajdos@suse.com
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 27 09:37:08 UTC 2021 - Axel Braun <axel.braun@gmx.de>
|
||||
|
||||
- version 0.9.3
|
||||
- version 0.9.3
|
||||
* Support empty image in opendocument
|
||||
* Add support for Python 3.9
|
||||
|
||||
@@ -69,7 +81,7 @@ Tue Jul 30 18:41:41 UTC 2019 - Axel Braun <axel.braun@gmx.de>
|
||||
|
||||
- version 0.9.0
|
||||
* Support out parameter of render
|
||||
* Write opendocument stream directly to the ZipFile
|
||||
* Write opendocument stream directly to the ZipFile
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 5 16:33:12 UTC 2019 - Axel Braun <axel.braun@gmx.de>
|
||||
@@ -95,11 +107,11 @@ Mon Dec 11 09:55:31 UTC 2017 - tchvatal@suse.com
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 9 16:12:18 UTC 2017 - axel.braun@gmx.de
|
||||
|
||||
- version 0.8.0
|
||||
- version 0.8.0
|
||||
* Do not guess_type on styled cell content
|
||||
* Remove type attributes when guessing type
|
||||
* Add support for Python 3.6
|
||||
* Remove soft-page-break
|
||||
* Remove soft-page-break
|
||||
* tests added to spec file
|
||||
|
||||
-------------------------------------------------------------------
|
||||
@@ -113,7 +125,7 @@ Fri Oct 20 06:26:54 UTC 2017 - axel.braun@gmx.de
|
||||
-------------------------------------------------------------------
|
||||
Sun Jul 30 18:53:12 UTC 2017 - axel.braun@gmx.de
|
||||
|
||||
- Version 0.7.0
|
||||
- Version 0.7.0
|
||||
* Replace hard-coded extensions by mimetypes guess
|
||||
* Add more guess types: 'boolean', 'date', 'time' and 'void'
|
||||
* Add support for Flat OpenDocument
|
||||
@@ -128,11 +140,11 @@ Sun Dec 18 13:56:52 UTC 2016 - axel.braun@gmx.de
|
||||
|
||||
- version 0.6.4
|
||||
* Use StringIO instead of BytesIO for TextSerializer result
|
||||
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 25 08:43:24 UTC 2016 - axel.braun@gmx.de
|
||||
|
||||
- LICENSE file added
|
||||
- LICENSE file added
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Aug 14 19:49:38 UTC 2016 - axel.braun@gmx.de
|
||||
@@ -153,7 +165,7 @@ Sat Sep 19 14:06:12 UTC 2015 - axel.braun@gmx.de
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 10 14:02:51 UTC 2015 - axel.braun@gmx.de
|
||||
|
||||
- Version 0.6.1
|
||||
- Version 0.6.1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 18 12:10:27 UTC 2013 - p.drouand@gmail.com
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-relatorio
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
# Copyright (c) 2016-2024 Dr. Axel Braun
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
@@ -21,7 +21,7 @@
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
%define mod_name relatorio
|
||||
Name: python-relatorio
|
||||
Version: 0.10.1
|
||||
Version: 0.11.1
|
||||
Release: 0
|
||||
Summary: Python module to create reports from Python objects
|
||||
License: GPL-3.0-or-later
|
||||
@@ -44,7 +44,7 @@ Requires: python-lxml
|
||||
Requires: python-pycha
|
||||
Requires: python-python-magic
|
||||
Requires(post): update-alternatives
|
||||
Requires(preun):update-alternatives
|
||||
Requires(preun): update-alternatives
|
||||
BuildArch: noarch
|
||||
%python_subpackages
|
||||
|
||||
@@ -78,7 +78,7 @@ mv relatorio relatorio_hide
|
||||
|
||||
%files %{python_files}
|
||||
%license LICENSE
|
||||
%doc README COPYRIGHT README
|
||||
%doc README.rst COPYRIGHT
|
||||
%python_alternative %{_bindir}/relatorio-render
|
||||
%{python_sitelib}/relatorio
|
||||
%{python_sitelib}/relatorio-%{version}*-info
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a0c72302d50d5dfa433ddab191672eec1dde1c6ed26330a378b720e5a3012e23
|
||||
size 1109846
|
||||
3
relatorio-0.11.1.tar.gz
Normal file
3
relatorio-0.11.1.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7ba0af72516b45f5d1e5f2f6646d4b6714d3b13468b8bb0389c0b0bd7b724861
|
||||
size 1106788
|
||||
Reference in New Issue
Block a user