summaryrefslogtreecommitdiff
path: root/print
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2018-12-03 08:25:50 +0000
committerwiz <wiz@pkgsrc.org>2018-12-03 08:25:50 +0000
commitb3468edb87c15a603d8dc5f3a3ae20e3d37ed210 (patch)
tree5c2690ca8d73770374627f0e03150751ee453658 /print
parent811b0bb3dfa271d433ac193b6b6aca396542d158 (diff)
downloadpkgsrc-b3468edb87c15a603d8dc5f3a3ae20e3d37ed210.tar.gz
poppler*: Update to 0.71.0.
Release 0.71.0: core: * Replace the implementation of GooString by std::string but keep the exact interface intact. * Replace GBool, gTrue, and gFalse by bool, true, false, resp. * Splash: Fix crash if document is malformed (too wide) qt5: * Fix crash when adding Highlight Annotations * Default to hidden symbols * Fix two leaks in a test glib: * demo: Fix build on Windows * demo: Align property labels to top of cell cpp: * Fix typos in documentation build system: * Enable searching for GTK on Windows * Remove unused files * Add fuzzer target from oss-fuzz project Release 0.70.1 glib: * Install missing file Release 0.70.0 core: * FreeText annotations: default to font from default appearance string * Splash: Speed improvements * Fix security issues found by oss-fuzz * Improve page lable parsing * Use std some std classes instead of self grown ones * Various internal improvements qt5: * Add Page::index() method * Improve method to get the page from a label string glib: * Fix crash on missing embedded file * Add support for PDF subtype property * Only export symbols in the public API utils: * pdftohtml: Improve font handling Release 0.69.0 core: * Add annotation font color * Splash: Some speed improvements * PSOutputDev: add native support for type 7 shadings when using level 3 * Add support for PDF subtype property * Link: Fix memory leak regarding next actions * Fix handling of Signature Info Location and Reason * Fix errors in computation of type3 glyphs transformation matrix * Reimplement Dict class in a more modern way * Fix security issues found by oss-fuzz * Fix memory issues in GfxImageColorMap copy ctor * Don't abort if the SampleFunction has too many samples. Issue #634 * Document the OutputDev::clip and OutputDev::oeClip methods * fix macOS compilation due to boolean define in jpeglib * Split GDir and GDirEntry out of gfile.h. Issue #370 qt5: * Add annotation font color cpp: utils: * pdfinfo: Show PDF subtype * pdftotext: Fix only outputs first page content with -bbox-layout option. Issue #88 * pdftotext: Fix memory leak in printLine build system: * Require C++14
Diffstat (limited to 'print')
-rw-r--r--print/poppler-glib/Makefile3
-rw-r--r--print/poppler-glib/PLIST5
-rw-r--r--print/poppler-qt5/Makefile5
-rw-r--r--print/poppler-qt5/PLIST4
-rw-r--r--print/poppler-utils/Makefile3
-rw-r--r--print/poppler/Makefile.common4
-rw-r--r--print/poppler/PLIST6
-rw-r--r--print/poppler/distinfo10
8 files changed, 19 insertions, 21 deletions
diff --git a/print/poppler-glib/Makefile b/print/poppler-glib/Makefile
index 5d9a2a69505..8ac35befffc 100644
--- a/print/poppler-glib/Makefile
+++ b/print/poppler-glib/Makefile
@@ -1,6 +1,5 @@
-# $NetBSD: Makefile,v 1.72 2018/11/14 22:22:19 kleink Exp $
+# $NetBSD: Makefile,v 1.73 2018/12/03 08:25:50 wiz Exp $
-PKGREVISION= 1
.include "../../print/poppler/Makefile.common"
PKGNAME= poppler-glib-${POPPLER_VERS}
diff --git a/print/poppler-glib/PLIST b/print/poppler-glib/PLIST
index 86ebc94e60a..7284a7278d6 100644
--- a/print/poppler-glib/PLIST
+++ b/print/poppler-glib/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.23 2018/01/12 23:44:05 wiz Exp $
+@comment $NetBSD: PLIST,v 1.24 2018/12/03 08:25:50 wiz Exp $
include/poppler/glib/poppler-action.h
include/poppler/glib/poppler-annot.h
include/poppler/glib/poppler-attachment.h
@@ -8,6 +8,7 @@ include/poppler/glib/poppler-enums.h
include/poppler/glib/poppler-features.h
include/poppler/glib/poppler-form-field.h
include/poppler/glib/poppler-layer.h
+include/poppler/glib/poppler-macros.h
include/poppler/glib/poppler-media.h
include/poppler/glib/poppler-movie.h
include/poppler/glib/poppler-page.h
@@ -15,6 +16,6 @@ include/poppler/glib/poppler-structure-element.h
include/poppler/glib/poppler.h
lib/libpoppler-glib.so
lib/libpoppler-glib.so.8
-lib/libpoppler-glib.so.8.9.0
+lib/libpoppler-glib.so.8.10.0
lib/pkgconfig/poppler-cairo.pc
lib/pkgconfig/poppler-glib.pc
diff --git a/print/poppler-qt5/Makefile b/print/poppler-qt5/Makefile
index e3db8210ba6..7aefa5e4a67 100644
--- a/print/poppler-qt5/Makefile
+++ b/print/poppler-qt5/Makefile
@@ -1,6 +1,5 @@
-# $NetBSD: Makefile,v 1.27 2018/11/12 03:52:49 ryoon Exp $
+# $NetBSD: Makefile,v 1.28 2018/12/03 08:25:50 wiz Exp $
-PKGREVISION= 1
.include "../../print/poppler/Makefile.common"
PKGNAME= poppler-qt5-${POPPLER_VERS}
@@ -19,7 +18,7 @@ CMAKE_ARGS+= -DENABLE_LIBCURL=OFF
BUILDLINK_API_DEPENDS.poppler+= poppler>=${POPPLER_VERS}
.include "../../print/poppler/buildlink3.mk"
-PKGCONFIG_OVERRIDE+= ${WRKSRC}/poppler-qt5.pc.in
+PKGCONFIG_OVERRIDE+= ${WRKSRC}/poppler-qt5.pc.cmake
INSTALLATION_DIRS+= lib include/poppler lib/pkgconfig
diff --git a/print/poppler-qt5/PLIST b/print/poppler-qt5/PLIST
index 55dd5d17655..472141984e9 100644
--- a/print/poppler-qt5/PLIST
+++ b/print/poppler-qt5/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.7 2018/06/17 14:29:55 wiz Exp $
+@comment $NetBSD: PLIST,v 1.8 2018/12/03 08:25:50 wiz Exp $
include/poppler/qt5/poppler-annotation.h
include/poppler/qt5/poppler-export.h
include/poppler/qt5/poppler-form.h
@@ -9,5 +9,5 @@ include/poppler/qt5/poppler-page-transition.h
include/poppler/qt5/poppler-qt5.h
lib/libpoppler-qt5.so
lib/libpoppler-qt5.so.1
-lib/libpoppler-qt5.so.1.15.0
+lib/libpoppler-qt5.so.1.17.0
lib/pkgconfig/poppler-qt5.pc
diff --git a/print/poppler-utils/Makefile b/print/poppler-utils/Makefile
index 52d42166e19..16f127477f3 100644
--- a/print/poppler-utils/Makefile
+++ b/print/poppler-utils/Makefile
@@ -1,6 +1,5 @@
-# $NetBSD: Makefile,v 1.41 2018/11/14 22:22:19 kleink Exp $
+# $NetBSD: Makefile,v 1.42 2018/12/03 08:25:50 wiz Exp $
-PKGREVISION= 1
.include "../../print/poppler/Makefile.common"
PKGNAME= poppler-utils-${POPPLER_VERS}
diff --git a/print/poppler/Makefile.common b/print/poppler/Makefile.common
index 3e54a770aa8..2d6d964eb4d 100644
--- a/print/poppler/Makefile.common
+++ b/print/poppler/Makefile.common
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.101 2018/09/02 21:23:21 wiz Exp $
+# $NetBSD: Makefile.common,v 1.102 2018/12/03 08:25:50 wiz Exp $
#
# used by print/poppler/Makefile
# used by print/poppler-cpp/Makefile
@@ -7,7 +7,7 @@
# used by print/poppler-qt5/Makefile
# used by print/poppler-utils/Makefile
-POPPLER_VERS= 0.68.0
+POPPLER_VERS= 0.71.0
DISTNAME= poppler-${POPPLER_VERS}
CATEGORIES= print
MASTER_SITES= https://poppler.freedesktop.org/
diff --git a/print/poppler/PLIST b/print/poppler/PLIST
index 643e7e6ac72..829cf03d751 100644
--- a/print/poppler/PLIST
+++ b/print/poppler/PLIST
@@ -1,7 +1,7 @@
-@comment $NetBSD: PLIST,v 1.15 2018/09/02 21:23:21 wiz Exp $
+@comment $NetBSD: PLIST,v 1.16 2018/12/03 08:25:50 wiz Exp $
lib/libpoppler.so
-lib/libpoppler.so.79
-lib/libpoppler.so.79.0.0
+lib/libpoppler.so.82
+lib/libpoppler.so.82.0.0
lib/pkgconfig/poppler-splash.pc
lib/pkgconfig/poppler.pc
share/doc/poppler/README
diff --git a/print/poppler/distinfo b/print/poppler/distinfo
index d70c38d7f61..644bfdde83d 100644
--- a/print/poppler/distinfo
+++ b/print/poppler/distinfo
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.131 2018/09/02 21:23:21 wiz Exp $
+$NetBSD: distinfo,v 1.132 2018/12/03 08:25:50 wiz Exp $
-SHA1 (poppler-0.68.0.tar.xz) = 191fccc0c6babb6dde9fcd2e6c12bacf31b53158
-RMD160 (poppler-0.68.0.tar.xz) = d6a91f51307fb773969cdb5b9d7c4a8a6523e399
-SHA512 (poppler-0.68.0.tar.xz) = 98449ab96db1d17901ec44b1a71b0375ac83d0f13e059b83afb452939a3ae6375c4667ae029fa333fad3eed2d8315e5f1208f34d3548c5530f0ecc7a5841c27a
-Size (poppler-0.68.0.tar.xz) = 1461052 bytes
+SHA1 (poppler-0.71.0.tar.xz) = b748621566779788894b7b321fe4f3c6d52dd3c1
+RMD160 (poppler-0.71.0.tar.xz) = b95b76c26b53408dead3e08f3243980440cad663
+SHA512 (poppler-0.71.0.tar.xz) = 8e0ce95e7b58c37761c36a20f1282e63373a9557bf9f746ce2936562f12648506043d9559cf816944aa238814fc1b3f3a3c0a6cb002fd214b067e399bcc6ab1e
+Size (poppler-0.71.0.tar.xz) = 1480852 bytes
SHA1 (patch-aq) = da845661ef7f7aca3072dbeebde0444b4d8f01aa
SHA1 (patch-poppler_CMap.cc) = d37745ea4cbeae76ad43c4ac74e942531f7b7dd8