FreeBSD Bugzilla – Attachment 212813 Details for
Bug 245150
[exp-run] Upgrade graphics/poppler to 0.87.0
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
v1
poppler-0.87.0.v1.diff (text/plain), 4.94 KB, created by
Tobias C. Berner
on 2020-03-28 19:53:49 UTC
(
hide
)
Description:
v1
Filename:
MIME Type:
Creator:
Tobias C. Berner
Created:
2020-03-28 19:53:49 UTC
Size:
4.94 KB
patch
obsolete
>diff --git a/graphics/poppler-glib/Makefile b/graphics/poppler-glib/Makefile >index fc61a3effe42..13ebb1558f82 100644 >--- a/graphics/poppler-glib/Makefile >+++ b/graphics/poppler-glib/Makefile >@@ -1,7 +1,7 @@ > # Created by: Michael Johnson <ahze@FreeBSD.org> > # $FreeBSD$ > >-PORTREVISION= 2 >+PORTREVISION= 0 > > COMMENT= GLib bindings to poppler > >diff --git a/graphics/poppler-qt5/pkg-plist b/graphics/poppler-qt5/pkg-plist >index 8476da5c6be8..c90ed40c8af6 100644 >--- a/graphics/poppler-qt5/pkg-plist >+++ b/graphics/poppler-qt5/pkg-plist >@@ -9,5 +9,5 @@ include/poppler/qt5/poppler-qt5.h > include/poppler/qt5/poppler-version.h > lib/libpoppler-qt5.so > lib/libpoppler-qt5.so.1 >-lib/libpoppler-qt5.so.1.22.0 >+lib/libpoppler-qt5.so.1.23.0 > libdata/pkgconfig/poppler-qt5.pc >diff --git a/graphics/poppler/Makefile b/graphics/poppler/Makefile >index 54de06cc855c..de67149daae7 100644 >--- a/graphics/poppler/Makefile >+++ b/graphics/poppler/Makefile >@@ -2,8 +2,7 @@ > # $FreeBSD$ > > PORTNAME= poppler >-DISTVERSION= 0.86.1 >-PORTREVISION?= 1 >+DISTVERSION= 0.87.0 > CATEGORIES= graphics print > MASTER_SITES= https://poppler.freedesktop.org/ > >@@ -48,7 +47,7 @@ CMAKE_OFF+= ${_POPPLER_SLAVES:N${_SLAVE_PORT}:tu:S/^/ENABLE_/} > PORTSCOUT= limitw:1,even > USES+= iconv > CMAKE_ON+= ENABLE_CPP >-PLIST_SUB+= SHLIB_VER=97 >+PLIST_SUB+= SHLIB_VER=98 > > OPTIONS_DEFINE= CURL OPENJPEG > OPTIONS_DEFAULT= OPENJPEG >diff --git a/graphics/poppler/distinfo b/graphics/poppler/distinfo >index 4a33dbc6ec3a..c78661bb765e 100644 >--- a/graphics/poppler/distinfo >+++ b/graphics/poppler/distinfo >@@ -1,3 +1,3 @@ >-TIMESTAMP = 1584260973 >-SHA256 (poppler-0.86.1.tar.xz) = af630a277c8e194c31339c5446241834aed6ed3d4b4dc7080311e51c66257f6c >-SIZE (poppler-0.86.1.tar.xz) = 1593856 >+TIMESTAMP = 1585408580 >+SHA256 (poppler-0.87.0.tar.xz) = 6f602b9c24c2d05780be93e7306201012e41459f289b8279a27a79431ad4150e >+SIZE (poppler-0.87.0.tar.xz) = 1595088 >diff --git a/graphics/poppler/files/patch-glib_poppler-action.cc b/graphics/poppler/files/patch-glib_poppler-action.cc >deleted file mode 100644 >index fd5b93f8717a..000000000000 >--- a/graphics/poppler/files/patch-glib_poppler-action.cc >+++ /dev/null >@@ -1,51 +0,0 @@ >---- glib/poppler-action.cc.orig 2020-03-01 19:52:52 UTC >-+++ glib/poppler-action.cc >-@@ -627,39 +627,39 @@ _poppler_action_new (PopplerDocument *document, >- switch (link->getKind ()) { >- case actionGoTo: >- action->type = POPPLER_ACTION_GOTO_DEST; >-- build_goto_dest (document, action, dynamic_cast <const LinkGoTo *> (link)); >-+ build_goto_dest (document, action, static_cast <const LinkGoTo *> (link)); >- break; >- case actionGoToR: >- action->type = POPPLER_ACTION_GOTO_REMOTE; >-- build_goto_remote (action, dynamic_cast <const LinkGoToR *> (link)); >-+ build_goto_remote (action, static_cast <const LinkGoToR *> (link)); >- break; >- case actionLaunch: >- action->type = POPPLER_ACTION_LAUNCH; >-- build_launch (action, dynamic_cast <const LinkLaunch *> (link)); >-+ build_launch (action, static_cast <const LinkLaunch *> (link)); >- break; >- case actionURI: >- action->type = POPPLER_ACTION_URI; >-- build_uri (action, dynamic_cast <const LinkURI *> (link)); >-+ build_uri (action, static_cast <const LinkURI *> (link)); >- break; >- case actionNamed: >- action->type = POPPLER_ACTION_NAMED; >-- build_named (action, dynamic_cast <const LinkNamed *> (link)); >-+ build_named (action, static_cast <const LinkNamed *> (link)); >- break; >- case actionMovie: >- action->type = POPPLER_ACTION_MOVIE; >-- build_movie (document, action, dynamic_cast<const LinkMovie*> (link)); >-+ build_movie (document, action, static_cast<const LinkMovie*> (link)); >- break; >- case actionRendition: >- action->type = POPPLER_ACTION_RENDITION; >-- build_rendition (action, dynamic_cast<const LinkRendition*> (link)); >-+ build_rendition (action, static_cast<const LinkRendition*> (link)); >- break; >- case actionOCGState: >- action->type = POPPLER_ACTION_OCG_STATE; >-- build_ocg_state (document, action, dynamic_cast<const LinkOCGState*> (link)); >-+ build_ocg_state (document, action, static_cast<const LinkOCGState*> (link)); >- break; >- case actionJavaScript: >- action->type = POPPLER_ACTION_JAVASCRIPT; >-- build_javascript (action, dynamic_cast<const LinkJavaScript*> (link)); >-+ build_javascript (action, static_cast<const LinkJavaScript*> (link)); >- break; >- case actionUnknown: >- default: >diff --git a/graphics/poppler/files/patch-utils_HtmlOutputDev.cc b/graphics/poppler/files/patch-utils_HtmlOutputDev.cc >deleted file mode 100644 >index b26c3a71513e..000000000000 >--- a/graphics/poppler/files/patch-utils_HtmlOutputDev.cc >+++ /dev/null >@@ -1,11 +0,0 @@ >---- utils/HtmlOutputDev.cc.orig 2020-03-01 19:52:52 UTC >-+++ utils/HtmlOutputDev.cc >-@@ -1838,7 +1838,7 @@ int HtmlOutputDev::getOutlinePageNum(OutlineItem *item >- if (!action || action->getKind() != actionGoTo) >- return pagenum; >- >-- link = dynamic_cast<const LinkGoTo*>(action); >-+ link = static_cast<const LinkGoTo*>(action); >- >- if (!link || !link->isOk()) >- return pagenum;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 245150
: 212813