14
0
forked from pool/python-PyPDF2
Files
python-PyPDF2/python-PyPDF2.spec
Simon Lees 68c02798d4 Accepting request 1009966 from home:yarunachalam:branches:devel:languages:python
- Update to version 2.11.0 
  * New Features (ENH)
    Addition of optional visitor-functions in extract_text() (#1252)
    Add metadata.creation_date and modification_date (#1364)
    Add PageObject.images attribute (#1330)
  * Bug Fixes (BUG)
    Lookup index in _xobj_to_image can be ByteStringObject (#1366)
    ‘IndexError: index out of range’ when using extract_text (#1361)
    Errors in transfer_rotation_to_content() (#1356)
  * Robustness (ROB) 
    Ensure update_page_form_field_values does not fail if no fields (#1346)
    Full Changelog: https://github.com/py-pdf/PyPDF2/compare/2.10.9…2.11.0

  Documentation (DOC): -  Explanation for git submodule -  Watermark and stamp (#1095) Maintenance (MAINT):

OBS-URL: https://build.opensuse.org/request/show/1009966
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PyPDF2?expand=0&rev=18
2022-10-12 04:12:07 +00:00

68 lines
2.1 KiB
RPMSpec

#
# spec file for package python-PyPDF2
#
# 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
# 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 https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-PyPDF2
Version: 2.11.0
Release: 0
Summary: PDF toolkit
License: BSD-3-Clause
Group: Development/Languages/Python
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
BuildArch: noarch
%python_subpackages
%description
A Pure-Python library built as a PDF toolkit. It is capable of:
- extracting document information (title, author, ...),
- splitting documents page by page,
- merging documents page by page,
- cropping pages,
- merging multiple pages into a single page,
- encrypting and decrypting PDF files.
By being Pure-Python, it should run on any Python platform without any
dependencies on external libraries. It can also work entirely on StringIO
objects rather than file streams, allowing for PDF manipulation in memory.
It is therefore a useful tool for websites that manage or manipulate PDFs.
%prep
%setup -q -n PyPDF2-%{version}
#remove unwanted shebang
sed -i '/^#!/ d' PyPDF2/pagerange.py
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
chmod a-x CHANGELOG.md LICENSE README.md
%files %{python_files}
%license LICENSE
%doc CHANGELOG.md README.md
%{python_sitelib}/*
%changelog