1
0
forked from pool/python-PyPDF2

Accepting request 1001799 from home:yarunachalam:branches:devel:languages:python

- Spec changes: 
  Changed the source to github
  Renamed CHANGELOG to CHANGELOG.md

- Update to version 2.6.0:
   New Features (ENH):
   -  Add color and font_format to PdfReader.outlines[i] (#1104)
   -  Extract Text Enhancement (whitespaces) (#1084)
   Bug Fixes (BUG):
   -  Use `build_destination` for named destination outlines (#1128)
   -  Avoid a crash when a ToUnicode CMap has an empty dstString in beginbfchar (#1118)
   -  Prevent deduplication of PageObject (#1105)
   -  None-check in DictionaryObject.read_from_stream (#1113)
   -  Avoid IndexError in _cmap.parse_to_unicode (#1110)
   Documentation (DOC):
   -  Explanation for git submodule
   -  Watermark and stamp (#1095)
   Maintenance (MAINT):
   -  Text extraction improvements (#1126)
   -  Destination.color returns ArrayObject instead of tuple as fallback (#1119)
   -  Use add_bookmark_destination in add_bookmark (#1100)
   -  Use add_bookmark_destination in add_bookmark_dict (#1099)
   Testing (TST):
   -  Remove xfail from test_outline_title_issue_1121
   -  Add test for arab text (#1127)
   -  Add xfail for decryption fail (#1125)
   -  Add xfail test for IndexError when extracting text (#1124)
   -  Add MCVE showing outline title issue (#1123)
   Code Style (STY):
   -  Apply black and isort

OBS-URL: https://build.opensuse.org/request/show/1001799
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PyPDF2?expand=0&rev=16
This commit is contained in:
2022-09-08 04:58:42 +00:00
committed by Git OBS Bridge
parent 93c0acd519
commit 29c8553413
4 changed files with 700 additions and 9 deletions

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-PyPDF2
#
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,13 +18,13 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-PyPDF2
Version: 1.26.0
Version: 2.10.5
Release: 0
Summary: PDF toolkit
License: BSD-3-Clause
Group: Development/Languages/Python
URL: http://mstamy2.github.com/PyPDF2
Source: https://files.pythonhosted.org/packages/source/P/PyPDF2/PyPDF2-%{version}.tar.gz
URL: https://github.com/py-pdf/PyPDF2
Source: https://github.com/py-pdf/PyPDF2/archive/refs/tags/%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
@@ -57,11 +57,11 @@ sed -i '/^#!/ d' PyPDF2/pagerange.py
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
chmod a-x CHANGELOG LICENSE README.md
chmod a-x CHANGELOG.md LICENSE README.md
%files %{python_files}
%license LICENSE
%doc CHANGELOG README.md
%doc CHANGELOG.md README.md
%{python_sitelib}/*
%changelog