15
0
Files
python-pikepdf/python-pikepdf.spec
Dirk Mueller 426bf2fb90 - update to 5.1.0:
* Rebuild against QPDF 10.6.3.
  * Improvements to Makefile for Apple Silicon wheels.
  * Fix issue where Pdf.check() would report a failure if JBIG2 decoder was not
    installed and the PDF contains JBIG2 content.
  * Some errors and inconsistencies are in the "pdfdoc" encoding provided by pikepdf
    have been corrected, in conjunction with fixes in libqpdf.
  * libqpdf 10.6.2 is required.
  * Previously, looking up the number of a page, given the page, required a linear
    search of all pages. We now use a newer QPDF API that allows quicker lookups.
  * Fixed gcc linker error with linking to a source-compiled version of qpdf. Thanks @jerkenbilt.
  * Fixed dead/obsolete link to old QPDF manual. Thanks @m-holger.
  * Rebuild binary wheels against qpdf 10.5.0. Note 10.6.0 has been released but
    requires further changes so does not work yet.
  * Removed some workarounds to support now-unsupported versions of pybind11.
  * Adjusted hypothesis test settings so it does not randomly fail on PyPy.
  * Mention vector vs raster images in documentation.
  * JBIG2 decoding is now more tightly integrated. In particular, we can now decode
    more types of JBIG2 image and they can be decoded using either the object or
    image interface.
  * Switch to tomli for TOML parsing.
  * Refactor image tests to use hypothesis more effectively and use more random issues,
    fixing many errors along the way.
  * Fixed two instances of a Python object being copied without the GIL held.
    May have caused some instability. Thanks @rwgk.
  * Further improvements to handling of 2- and 4-bit per component images. Major
    refactoring of relevant code and improved testing.
  * Mark pybind11 2.9 as supported. Thanks @QuLogic.
  * Improved support for images with bits per component set to values between 2 and 7
    inclusive.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pikepdf?expand=0&rev=24
2022-03-27 18:26:34 +00:00

92 lines
3.1 KiB
RPMSpec

#
# spec file for package python-pikepdf
#
# Copyright (c) 2022 SUSE LLC
# Copyright (c) 2020-2021, Martin Hauke <mardnh@gmx.de>
#
# 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-%{**}}
%define skip_python2 1
Name: python-pikepdf
Version: 5.1.0
Release: 0
Summary: Read and write PDFs with Python, powered by qpdf
License: MPL-2.0
Group: Development/Libraries/Python
URL: https://github.com/pikepdf/pikepdf
Source: https://files.pythonhosted.org/packages/source/p/pikepdf/pikepdf-%{version}.tar.gz
## SECTION test requirements
BuildRequires: %{python_module Pillow >= 9.0.0}
BuildRequires: %{python_module attrs >= 20.2.0}
BuildRequires: %{python_module devel}
BuildRequires: %{python_module hypothesis >= 5.0}
BuildRequires: %{python_module ipython}
BuildRequires: %{python_module lxml >= 4.0}
BuildRequires: %{python_module packaging}
BuildRequires: %{python_module psutil >= 5}
BuildRequires: %{python_module pybind11 >= 2.9.0}
BuildRequires: %{python_module pybind11-devel >= 2.9.0}
BuildRequires: %{python_module pytest >= 6.0.0}
BuildRequires: %{python_module pytest-cov >= 2.10.1}
BuildRequires: %{python_module pytest-forked}
BuildRequires: %{python_module pytest-helpers-namespace >= 2019.1.8}
# Upstream use pytest-timeout >= 1.4.2
BuildRequires: %{python_module pytest-timeout}
BuildRequires: %{python_module pytest-xdist >= 1.28}
BuildRequires: %{python_module python-dateutil >= 2.8.0}
#BuildRequires: %%{python_module python-xmp-toolkit >= 2.0.1}
BuildRequires: %{python_module setuptools >= 50}
BuildRequires: %{python_module setuptools_scm >= 4.1}
BuildRequires: %{python_module setuptools_scm_git_archive}
#BuildRequires: %%{python_module wheel >= 0.35}
## /SECTION
BuildRequires: fdupes
BuildRequires: gcc-c++
BuildRequires: pkgconfig
BuildRequires: python-rpm-macros
BuildRequires: pkgconfig(libqpdf) >= 10.6.2
Requires: python-Pillow >= 9.0.0
Requires: python-lxml >= 4.0
Requires: python-packaging
%python_subpackages
%description
Read and write PDFs with Python, powered by qpdf.
%prep
%setup -q -n pikepdf-%{version}
%build
export CFLAGS="%{optflags}"
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitearch}
%check
# Ignore some test as it fails on Leap and Tumbleweed
# despite all other tests passing.
# %pytest_arch -k 'not (test_unicode or test_bytes or TestName)'
%pytest_arch
%files %{python_files}
%license LICENSE.txt licenses
%doc README.md docs/*/*.rst
%{python_sitearch}/pikepdf*
%changelog