14
0

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
This commit is contained in:
Tomáš Chvátal
2019-04-11 07:52:10 +00:00
committed by Git OBS Bridge
commit 3927eadd20
6 changed files with 127 additions and 0 deletions

12
fix-library-linking.patch Normal file
View File

@@ -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
)