From 3927eadd202da84b536729b57ac8ca66d68cbe7cb0c1ded9df3a7186297aa4b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= Date: Thu, 11 Apr 2019 07:52:10 +0000 Subject: [PATCH] Accepting request 692955 from home:guoyunhe - Version 1.14.14 * Fix bug in Link target point calculation - Version 1.14.13 * For binary, memory-based input to most methods, now alsoio.BytesIO objects are accepted. * Fixed a bug not correctly showing inserted images with maintained aspect ratio. - For earlier changelog, see https://github.com/pymupdf/PyMuPDF/releases OBS-URL: https://build.opensuse.org/request/show/692955 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PyMuPDF?expand=0&rev=1 --- .gitattributes | 23 ++++++++++++ .gitignore | 1 + PyMuPDF-1.14.14.tar.gz | 3 ++ fix-library-linking.patch | 12 +++++++ python-PyMuPDF.changes | 15 ++++++++ python-PyMuPDF.spec | 73 +++++++++++++++++++++++++++++++++++++++ 6 files changed, 127 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 PyMuPDF-1.14.14.tar.gz create mode 100644 fix-library-linking.patch create mode 100644 python-PyMuPDF.changes create mode 100644 python-PyMuPDF.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/PyMuPDF-1.14.14.tar.gz b/PyMuPDF-1.14.14.tar.gz new file mode 100644 index 0000000..bb518c3 --- /dev/null +++ b/PyMuPDF-1.14.14.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f607cf7bdbf4a2830c6d0f3cd2148cf8ee6a510c25d8d07761569548a7c28fe +size 6773869 diff --git a/fix-library-linking.patch b/fix-library-linking.patch new file mode 100644 index 0000000..3da9217 --- /dev/null +++ b/fix-library-linking.patch @@ -0,0 +1,12 @@ +diff -rub PyMuPDF-1.14.10.orig/setup.py PyMuPDF-1.14.10/setup.py +--- PyMuPDF-1.14.10.orig/setup.py 2019-03-10 19:00:25.000000000 +0200 ++++ PyMuPDF-1.14.10/setup.py 2019-03-11 11:50:03.288295091 +0200 +@@ -15,7 +15,7 @@ + libraries=[ + "mupdf", + #'crypto', #openssl is required by mupdf on archlinux +- #'jbig2dec', 'openjp2', 'jpeg', 'freetype', ++ 'jbig2dec', 'openjp2', 'jpeg', 'freetype', 'harfbuzz', + "mupdf-third", + ], # the libraries to link with + ) diff --git a/python-PyMuPDF.changes b/python-PyMuPDF.changes new file mode 100644 index 0000000..9e8e867 --- /dev/null +++ b/python-PyMuPDF.changes @@ -0,0 +1,15 @@ +------------------------------------------------------------------- +Wed Apr 10 13:17:25 UTC 2019 - Yunhe Guo + +- Version 1.14.14 + * Fix bug in Link target point calculation + +------------------------------------------------------------------- +Mon Apr 8 18:38:22 UTC 2019 - Yunhe Guo + +- Version 1.14.13 + * For binary, memory-based input to most methods, now alsoio.BytesIO objects + are accepted. + * Fixed a bug not correctly showing inserted images with maintained aspect + ratio. +- For earlier changelog, see https://github.com/pymupdf/PyMuPDF/releases diff --git a/python-PyMuPDF.spec b/python-PyMuPDF.spec new file mode 100644 index 0000000..307fdd4 --- /dev/null +++ b/python-PyMuPDF.spec @@ -0,0 +1,73 @@ +# +# spec file for package python-PyMuPDF +# +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# +# 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 pypi_name PyMuPDF + +Name: python-%{pypi_name} +Version: 1.14.14 +Release: 0 +Summary: Python binding for MuPDF - a lightweight PDF and XPS viewer +License: GPL-3.0 and AGPL-3.0 +Group: Development/Languages/Python +URL: https://github.com/rk700/PyMuPDF +Source0: %{url}/archive/%{version}/%{pypi_name}-%{version}.tar.gz +Patch1: fix-library-linking.patch +BuildRequires: %{python_module devel} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +BuildRequires: gcc +BuildRequires: zlib-devel +BuildRequires: mupdf-devel-static +BuildRequires: libjpeg-devel +BuildRequires: openjpeg2-devel +BuildRequires: jbig2dec-devel +BuildRequires: freetype-devel +BuildRequires: harfbuzz-devel + +%python_subpackages + +%description + +This is PyMuPDF, a Python binding for MuPDF - a lightweight PDF and XPS +viewer. MuPDF can access files in PDF, XPS, OpenXPS, epub, comic and fiction +book formats, and it is known for its top performance and high rendering +quality. With PyMuPDF you therefore can also access files with extensions +*.pdf, *.xps, *.oxps, *.epub, *.cbz or *.fb2 from your Python scripts. + +%prep +%setup -q -n %{pypi_name}-%{version} +%patch1 -p1 + +%build +# Remove export CFLAGS=... for noarch packages (unneeded) +export CFLAGS="%{optflags}" +%python_build + +%install +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitearch} + +%files %{python_files} +%license COPYING +%doc README.md doc/PyMuPDF.pdf +# For arch-specific packages: sitearch +%{python_sitearch}/* + +%changelog