From owner-svn-ports-head@freebsd.org Thu Jul 11 04:11:33 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0113815EB5CF; Thu, 11 Jul 2019 04:11:32 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 90EAE8A347; Thu, 11 Jul 2019 04:11:32 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6BB6E21382; Thu, 11 Jul 2019 04:11:32 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x6B4BWdH040801; Thu, 11 Jul 2019 04:11:32 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x6B4BW05040799; Thu, 11 Jul 2019 04:11:32 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201907110411.x6B4BW05040799@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Thu, 11 Jul 2019 04:11:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r506396 - in head/graphics/poppler: . files X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: in head/graphics/poppler: . files X-SVN-Commit-Revision: 506396 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 90EAE8A347 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.959,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jul 2019 04:11:33 -0000 Author: tcberner Date: Thu Jul 11 04:11:31 2019 New Revision: 506396 URL: https://svnweb.freebsd.org/changeset/ports/506396 Log: graphics/poppler: add upstream bugfix Approved by: gnome (kwm, implicit) Added: head/graphics/poppler/files/patch-git_2d191b (contents, props changed) Modified: head/graphics/poppler/Makefile Modified: head/graphics/poppler/Makefile ============================================================================== --- head/graphics/poppler/Makefile Thu Jul 11 01:56:56 2019 (r506395) +++ head/graphics/poppler/Makefile Thu Jul 11 04:11:31 2019 (r506396) @@ -3,6 +3,7 @@ PORTNAME= poppler DISTVERSION= 0.78.0 +PORTREVISION= 1 CATEGORIES= graphics print MASTER_SITES= https://poppler.freedesktop.org/ Added: head/graphics/poppler/files/patch-git_2d191b ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/poppler/files/patch-git_2d191b Thu Jul 11 04:11:31 2019 (r506396) @@ -0,0 +1,29 @@ +From 2d191b49ea074cc69ba4c68a572f26c8bdb55abd Mon Sep 17 00:00:00 2001 +From: Albert Astals Cid +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 + +