I did not manage to run the testsuite (many tests needing internet), but the tests added by the patches were fine
- Add security patches: * CVE-2025-55197.patch (bsc#1248089) * CVE-2026-27024.patch (bsc#1258691) * CVE-2026-27025.patch (bsc#1258692) * CVE-2026-27026.patch (bsc#1258693) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PyPDF2?expand=0&rev=26
This commit is contained in:
80
python-PyPDF2.spec
Normal file
80
python-PyPDF2.spec
Normal file
@@ -0,0 +1,80 @@
|
||||
#
|
||||
# spec file for package python-PyPDF2
|
||||
#
|
||||
# Copyright (c) 2026 SUSE LLC and contributors
|
||||
#
|
||||
# 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/
|
||||
#
|
||||
|
||||
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-PyPDF2
|
||||
Version: 2.11.1
|
||||
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
|
||||
# PATCH-FIX-UPSTREAM CVE-2025-55197.patch bsc#1248089
|
||||
Patch0: CVE-2025-55197.patch
|
||||
# PATCH-FIX-UPSTREAM CVE-2026-27024.patch bsc#1258691
|
||||
Patch1: CVE-2026-27024.patch
|
||||
# PATCH-FIX-UPSTREAM CVE-2026-27025.patch bsc#1258692
|
||||
Patch2: CVE-2026-27025.patch
|
||||
# PATCH-FIX-UPSTREAM CVE-2026-27026.patch bsc#1258693
|
||||
Patch3: CVE-2026-27026.patch
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: %{python_module wheel}
|
||||
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
|
||||
%autosetup -p1 -n PyPDF2-%{version}
|
||||
#remove unwanted shebang
|
||||
sed -i '/^#!/ d' PyPDF2/pagerange.py
|
||||
|
||||
%build
|
||||
%pyproject_wheel
|
||||
|
||||
%install
|
||||
%pyproject_install
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
chmod a-x CHANGELOG.md LICENSE README.md
|
||||
|
||||
# many tests need internet connection, cannot be run on OBS
|
||||
|
||||
%files %{python_files}
|
||||
%license LICENSE
|
||||
%doc CHANGELOG.md README.md
|
||||
%{python_sitelib}/PyPDF2
|
||||
%{python_sitelib}/[Pp]y[Pp][Dd][Ff]2-%{version}*-info
|
||||
|
||||
%changelog
|
||||
Reference in New Issue
Block a user