pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/print poppler*: update to 0.79.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/efaf53c70cac
branches:  trunk
changeset: 336793:efaf53c70cac
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Tue Jul 23 16:45:18 2019 +0000

description:
poppler*: update to 0.79.0

Release 0.79.0:
        core:
         * Fix regression on TextSelectionPainter
         * Fix parsing of DefaultAppearance
         * Fix memory leak in PostScriptFunction
         * Fix crashes in fuzzed files

        qt5:
         * Implemented support for setIcon by changing appearance
         * Added option to set the form available to print
         * QString::null is deprecated, use QString()
         * Replace deprecated qStableSort with std::stable_sort

        build system:
         * Turn README into README.md and expand it

Release 0.78.0:
        core:
         * Fix line annotation arrows for usage in dimensioning
         * Handle Ink annots without an InkList but with an AP
         * Fix typos preventing parsing of Movie start and duration
         * Fix crash on malformed files

        glib:
         * Add poppler_document_create_dests_tree()
         * Don't use the deprecated g_type_class_add_private()
         * Document the differences between render() and render_for_printing()
         * Fix introspection for poppler_document_new_from_data
         * Don't create PopplerInputStream with length 0. Issue #414
         * Document G_IO_ERROR as a possible error condition
         * docs: Add index for API new in 0.78

        build system:
         * Fixes cross compilation of gir in Void Linux
         * Add -Wshadow to the default warning flags
         * install pkg-config pc files if pkg-config is found

Release 0.77.0:
        core:
         * Fix crash on signature handling. Issue #766
         * Fix small memory leak in SignatureHandler::getCertificateInfo
         * Splash: Restrict filling of overlapping boxes. Issue #750
         * Fix crash on malformed files

        qt5:
         * Fix optional content handling with exclusive layers

        cpp:
         * Make render_page thread-safe

        utils:
         * pdfsig: Fix small memory leak
         * pdftotext: Fix typo in manpage

diffstat:

 print/poppler-glib/PLIST      |   4 ++--
 print/poppler-qt5/PLIST       |   4 ++--
 print/poppler/Makefile        |   4 ++--
 print/poppler/Makefile.common |   4 ++--
 print/poppler/PLIST           |   8 ++++----
 print/poppler/distinfo        |  10 +++++-----
 6 files changed, 17 insertions(+), 17 deletions(-)

diffs (101 lines):

diff -r 82c18f6abd2a -r efaf53c70cac print/poppler-glib/PLIST
--- a/print/poppler-glib/PLIST  Tue Jul 23 16:40:06 2019 +0000
+++ b/print/poppler-glib/PLIST  Tue Jul 23 16:45:18 2019 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.26 2019/02/16 13:19:38 wiz Exp $
+@comment $NetBSD: PLIST,v 1.27 2019/07/23 16:45:18 wiz Exp $
 include/poppler/glib/poppler-action.h
 include/poppler/glib/poppler-annot.h
 include/poppler/glib/poppler-attachment.h
@@ -16,6 +16,6 @@
 include/poppler/glib/poppler.h
 lib/libpoppler-glib.so
 lib/libpoppler-glib.so.8
-lib/libpoppler-glib.so.8.12.0
+lib/libpoppler-glib.so.8.13.0
 lib/pkgconfig/poppler-cairo.pc
 lib/pkgconfig/poppler-glib.pc
diff -r 82c18f6abd2a -r efaf53c70cac print/poppler-qt5/PLIST
--- a/print/poppler-qt5/PLIST   Tue Jul 23 16:40:06 2019 +0000
+++ b/print/poppler-qt5/PLIST   Tue Jul 23 16:45:18 2019 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.9 2019/02/16 13:19:38 wiz Exp $
+@comment $NetBSD: PLIST,v 1.10 2019/07/23 16:45:18 wiz Exp $
 include/poppler/qt5/poppler-annotation.h
 include/poppler/qt5/poppler-export.h
 include/poppler/qt5/poppler-form.h
@@ -10,5 +10,5 @@
 include/poppler/qt5/poppler-version.h
 lib/libpoppler-qt5.so
 lib/libpoppler-qt5.so.1
-lib/libpoppler-qt5.so.1.19.0
+lib/libpoppler-qt5.so.1.20.0
 lib/pkgconfig/poppler-qt5.pc
diff -r 82c18f6abd2a -r efaf53c70cac print/poppler/Makefile
--- a/print/poppler/Makefile    Tue Jul 23 16:40:06 2019 +0000
+++ b/print/poppler/Makefile    Tue Jul 23 16:45:18 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.73 2019/05/09 09:28:22 adam Exp $
+# $NetBSD: Makefile,v 1.74 2019/07/23 16:45:18 wiz Exp $
 
 .include "../../print/poppler/Makefile.common"
 
@@ -34,7 +34,7 @@
 .endif
 
 post-install:
-       ${INSTALL_MAN} ${WRKSRC}/README ${DESTDIR}${PREFIX}/share/doc/poppler/
+       ${INSTALL_MAN} ${WRKSRC}/README.md ${DESTDIR}${PREFIX}/share/doc/poppler/
        ${INSTALL_MAN} ${WRKSRC}/README-XPDF ${DESTDIR}${PREFIX}/share/doc/poppler/
        ${RMDIR} ${DESTDIR}${PREFIX}/include/poppler || ${TRUE}
 
diff -r 82c18f6abd2a -r efaf53c70cac print/poppler/Makefile.common
--- a/print/poppler/Makefile.common     Tue Jul 23 16:40:06 2019 +0000
+++ b/print/poppler/Makefile.common     Tue Jul 23 16:45:18 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.110 2019/06/17 19:21:07 sjmulder Exp $
+# $NetBSD: Makefile.common,v 1.111 2019/07/23 16:45:18 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.76.1
+POPPLER_VERS=  0.79.0
 DISTNAME=      poppler-${POPPLER_VERS}
 CATEGORIES=    print
 MASTER_SITES=  https://poppler.freedesktop.org/
diff -r 82c18f6abd2a -r efaf53c70cac print/poppler/PLIST
--- a/print/poppler/PLIST       Tue Jul 23 16:40:06 2019 +0000
+++ b/print/poppler/PLIST       Tue Jul 23 16:45:18 2019 +0000
@@ -1,8 +1,8 @@
-@comment $NetBSD: PLIST,v 1.21 2019/05/09 09:28:22 adam Exp $
+@comment $NetBSD: PLIST,v 1.22 2019/07/23 16:45:18 wiz Exp $
 lib/libpoppler.so
-lib/libpoppler.so.87
-lib/libpoppler.so.87.0.0
+lib/libpoppler.so.89
+lib/libpoppler.so.89.0.0
 lib/pkgconfig/poppler-splash.pc
 lib/pkgconfig/poppler.pc
-share/doc/poppler/README
+share/doc/poppler/README.md
 share/doc/poppler/README-XPDF
diff -r 82c18f6abd2a -r efaf53c70cac print/poppler/distinfo
--- a/print/poppler/distinfo    Tue Jul 23 16:40:06 2019 +0000
+++ b/print/poppler/distinfo    Tue Jul 23 16:45:18 2019 +0000
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.138 2019/05/09 09:28:22 adam Exp $
+$NetBSD: distinfo,v 1.139 2019/07/23 16:45:18 wiz Exp $
 
-SHA1 (poppler-0.76.1.tar.xz) = 6f0b33b347d4dab47cdcae3cb98174dcc6f9a9eb
-RMD160 (poppler-0.76.1.tar.xz) = b1957e8052ee5c681082378161213963a8e9b506
-SHA512 (poppler-0.76.1.tar.xz) = e4af2785948ecc89c105ab00269b0072b33feea25224e5beb158d515b1de789f979084bed2d4260c9659382cf437c25c0baf2444f5b4fbbba5c58afeb707b7ac
-Size (poppler-0.76.1.tar.xz) = 1531548 bytes
+SHA1 (poppler-0.79.0.tar.xz) = ce6bcc5e474b524e206469640543e98fa4babbba
+RMD160 (poppler-0.79.0.tar.xz) = 3b276167632bd3993c2e3531e7a0a1fbab42ea52
+SHA512 (poppler-0.79.0.tar.xz) = f0024fb86887e147ec1cbe9481498d348076dbd6b960716da65defab3365c67ab39626f946758dddbe438634a7116773d8ded8684b65e18abbfc299f56563ec9
+Size (poppler-0.79.0.tar.xz) = 1544140 bytes
 SHA1 (patch-poppler_CMap.cc) = d37745ea4cbeae76ad43c4ac74e942531f7b7dd8



Home | Main Index | Thread Index | Old Index