aboutsummaryrefslogtreecommitdiff
path: root/graphics/poppler
diff options
context:
space:
mode:
authorTobias C. Berner <tcberner@FreeBSD.org>2019-07-31 21:14:15 +0000
committerTobias C. Berner <tcberner@FreeBSD.org>2019-07-31 21:14:15 +0000
commita5b210399a2808325462e2d518e5fcdc7bf69ac1 (patch)
treeb030cf5a28682a43a6a2fb609a290b4ec084abc5 /graphics/poppler
parent328a32ab54f6e5c681f2d9a174147f5b784243dc (diff)
downloadports-a5b210399a2808325462e2d518e5fcdc7bf69ac1.tar.gz
ports-a5b210399a2808325462e2d518e5fcdc7bf69ac1.zip
graphics/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 PR: 239277 Exp-run by: antoine Approved by: gnome (kwm, implicit)
Notes
Notes: svn path=/head/; revision=507740
Diffstat (limited to 'graphics/poppler')
-rw-r--r--graphics/poppler/Makefile4
-rw-r--r--graphics/poppler/distinfo6
-rw-r--r--graphics/poppler/files/patch-git_2d191b29
3 files changed, 5 insertions, 34 deletions
diff --git a/graphics/poppler/Makefile b/graphics/poppler/Makefile
index 91742ba28b98..d513f2810579 100644
--- a/graphics/poppler/Makefile
+++ b/graphics/poppler/Makefile
@@ -2,8 +2,8 @@
# $FreeBSD$
PORTNAME= poppler
-DISTVERSION= 0.78.0
-PORTREVISION= 2
+DISTVERSION= 0.79.0
+PORTREVISION?= 0
CATEGORIES= graphics print
MASTER_SITES= https://poppler.freedesktop.org/
diff --git a/graphics/poppler/distinfo b/graphics/poppler/distinfo
index 21291bea3285..9311e42c2ce1 100644
--- a/graphics/poppler/distinfo
+++ b/graphics/poppler/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1561618023
-SHA256 (poppler-0.78.0.tar.xz) = 622fdd3187a7339c3b78b861b7cd820ea41ebce0609839ba28ee52c3387938c2
-SIZE (poppler-0.78.0.tar.xz) = 1540264
+TIMESTAMP = 1563385578
+SHA256 (poppler-0.79.0.tar.xz) = f985a4608fe592d2546d9d37d4182e502ff6b4c42f8db4be0a021a1c369528c8
+SIZE (poppler-0.79.0.tar.xz) = 1544140
diff --git a/graphics/poppler/files/patch-git_2d191b b/graphics/poppler/files/patch-git_2d191b
deleted file mode 100644
index acb1e4c76139..000000000000
--- a/graphics/poppler/files/patch-git_2d191b
+++ /dev/null
@@ -1,29 +0,0 @@
-From 2d191b49ea074cc69ba4c68a572f26c8bdb55abd Mon Sep 17 00:00:00 2001
-From: Albert Astals Cid <aacid@kde.org>
-Date: Wed, 10 Jul 2019 01:10:22 +0200
-Subject: Fix mistake on 093531cd0d0878b892d92ebc56c26936e5de3712
-
-These i should have been j too
----
- poppler/TextOutputDev.cc | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/poppler/TextOutputDev.cc b/poppler/TextOutputDev.cc
-index e62e088..645e38f 100644
---- poppler/TextOutputDev.cc
-+++ poppler/TextOutputDev.cc
-@@ -4791,8 +4791,8 @@ void TextSelectionPainter::endPage()
- if (j != begin && sel->word->charPos[j] == sel->word->charPos[j - 1])
- continue;
-
-- out->drawChar(state, sel->word->textMat[i].m[4], sel->word->textMat[i].m[5], 0, 0, 0, 0,
-- sel->word->charcode[i], 1, nullptr, 0);
-+ out->drawChar(state, sel->word->textMat[j].m[4], sel->word->textMat[j].m[5], 0, 0, 0, 0,
-+ sel->word->charcode[j], 1, nullptr, 0);
- }
- out->endString(state);
- delete string;
---
-cgit v1.1
-
-