FreeBSD Bugzilla – Attachment 178822 Details for
Bug 216002
[CHANGE-REQUEST] graphics/zathura 0.3.7, graphics/zathura-djvu 0.2.6, graphics/zathura-pdf-poppler 0.2.7, graphics/zathura-pdf-mupdf 0.3.1, x11-toolkits/girara 0.2.7
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
BUILD FAILS! graphics/zathura-pdf-mupdf
zathura-pdf-mupdf.svndif (text/plain), 8.23 KB, created by
Anonymized Account
on 2017-01-12 19:09:35 UTC
(
hide
)
Description:
BUILD FAILS! graphics/zathura-pdf-mupdf
Filename:
MIME Type:
Creator:
Anonymized Account
Created:
2017-01-12 19:09:35 UTC
Size:
8.23 KB
patch
obsolete
>Index: graphics/zathura-pdf-mupdf/Makefile >=================================================================== >--- graphics/zathura-pdf-mupdf/Makefile (revision 429273) >+++ graphics/zathura-pdf-mupdf/Makefile (working copy) >@@ -2,8 +2,7 @@ > # $FreeBSD$ > > PORTNAME= zathura-pdf-mupdf >-PORTVERSION= 0.3.0 >-PORTREVISION= 3 >+PORTVERSION= 0.3.1 > CATEGORIES= graphics > MASTER_SITES= http://pwmt.org/projects/zathura-pdf-mupdf/download/ > >Index: graphics/zathura-pdf-mupdf/distinfo >=================================================================== >--- graphics/zathura-pdf-mupdf/distinfo (revision 429273) >+++ graphics/zathura-pdf-mupdf/distinfo (working copy) >@@ -1,2 +1,3 @@ >-SHA256 (zathura-pdf-mupdf-0.3.0.tar.gz) = 478cb9d1562d08e096ebec4a6db9116d616a3536260197c2a28a2772171f72c8 >-SIZE (zathura-pdf-mupdf-0.3.0.tar.gz) = 9914 >+TIMESTAMP = 1484228209 >+SHA256 (zathura-pdf-mupdf-0.3.1.tar.gz) = d9b9edc0297b9eddb53020976f287b4e8db33edef8cfa047d70e02653eb2f81b >+SIZE (zathura-pdf-mupdf-0.3.1.tar.gz) = 9755 >Index: graphics/zathura-pdf-mupdf/files/patch-document.c >=================================================================== >--- graphics/zathura-pdf-mupdf/files/patch-document.c (revision 429273) >+++ graphics/zathura-pdf-mupdf/files/patch-document.c (nonexistent) >@@ -1,13 +0,0 @@ >---- document.c.orig 2016-02-14 22:49:46 UTC >-+++ document.c >-@@ -113,8 +113,8 @@ pdf_document_save_as(zathura_document_t* >- * pdf_write_document does not check if the third arguments is NULL for some >- * options. */ >- >-- fz_write_options opts = { 0 }; /* just use the default options */ >-- fz_write_document(mupdf_document->ctx, mupdf_document->document, (char*) path, &opts); >-+ pdf_write_options opts = { 0 }; /* just use the default options */ >-+ pdf_save_document(mupdf_document->ctx, mupdf_document->document, (char*) path, &opts); >- } fz_catch (mupdf_document->ctx) { >- return ZATHURA_ERROR_UNKNOWN; >- } > >Property changes on: graphics/zathura-pdf-mupdf/files/patch-document.c >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1 +0,0 ## >-yes >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: graphics/zathura-pdf-mupdf/files/patch-image.c >=================================================================== >--- graphics/zathura-pdf-mupdf/files/patch-image.c (revision 429273) >+++ graphics/zathura-pdf-mupdf/files/patch-image.c (nonexistent) >@@ -1,11 +0,0 @@ >---- image.c.orig 2016-06-25 17:52:28 UTC >-+++ image.c >-@@ -93,7 +93,7 @@ pdf_page_image_get_cairo(zathura_page_t* >- fz_pixmap* pixmap = NULL; >- cairo_surface_t* surface = NULL; >- >-- pixmap = fz_new_pixmap_from_image(mupdf_page->ctx, mupdf_image, 0, 0); >-+ pixmap = fz_get_pixmap_from_image(mupdf_page->ctx, mupdf_image, 0, 0); >- if (pixmap == NULL) { >- goto error_free; >- } > >Property changes on: graphics/zathura-pdf-mupdf/files/patch-image.c >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1 +0,0 ## >-yes >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: graphics/zathura-pdf-mupdf/files/patch-page.c >=================================================================== >--- graphics/zathura-pdf-mupdf/files/patch-page.c (revision 429273) >+++ graphics/zathura-pdf-mupdf/files/patch-page.c (nonexistent) >@@ -1,31 +0,0 @@ >---- page.c.orig 2016-06-25 17:39:19 UTC >-+++ page.c >-@@ -43,12 +43,12 @@ pdf_page_init(zathura_page_t* page) >- /* setup text */ >- mupdf_page->extracted_text = false; >- >-- mupdf_page->text = fz_new_text_page(mupdf_page->ctx); >-+ mupdf_page->text = fz_new_stext_page(mupdf_page->ctx); >- if (mupdf_page->text == NULL) { >- goto error_free; >- } >- >-- mupdf_page->sheet = fz_new_text_sheet(mupdf_page->ctx); >-+ mupdf_page->sheet = fz_new_stext_sheet(mupdf_page->ctx); >- if (mupdf_page->sheet == NULL) { >- goto error_free; >- } >-@@ -74,11 +74,11 @@ pdf_page_clear(zathura_page_t* page, mup >- >- if (mupdf_page != NULL) { >- if (mupdf_page->text != NULL) { >-- fz_drop_text_page(mupdf_page->ctx, mupdf_page->text); >-+ fz_drop_stext_page(mupdf_page->ctx, mupdf_page->text); >- } >- >- if (mupdf_page->sheet != NULL) { >-- fz_drop_text_sheet(mupdf_page->ctx, mupdf_page->sheet); >-+ fz_drop_stext_sheet(mupdf_page->ctx, mupdf_page->sheet); >- } >- >- if (mupdf_page->page != NULL) { > >Property changes on: graphics/zathura-pdf-mupdf/files/patch-page.c >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1 +0,0 ## >-yes >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: graphics/zathura-pdf-mupdf/files/patch-plugin.h >=================================================================== >--- graphics/zathura-pdf-mupdf/files/patch-plugin.h (revision 429273) >+++ graphics/zathura-pdf-mupdf/files/patch-plugin.h (nonexistent) >@@ -1,13 +0,0 @@ >---- plugin.h.orig 2016-02-14 22:49:46 UTC >-+++ plugin.h >-@@ -21,8 +21,8 @@ typedef struct mupdf_page_s >- { >- fz_page* page; /**< Reference to the mupdf page */ >- fz_context* ctx; /**< Context */ >-- fz_text_sheet* sheet; /**< Text sheet */ >-- fz_text_page* text; /**< Page text */ >-+ fz_stext_sheet* sheet; /**< Text sheet */ >-+ fz_stext_page* text; /**< Page text */ >- fz_rect bbox; /**< Bbox */ >- bool extracted_text; /**< If text has already been extracted */ >- } mupdf_page_t; > >Property changes on: graphics/zathura-pdf-mupdf/files/patch-plugin.h >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1 +0,0 ## >-yes >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: graphics/zathura-pdf-mupdf/files/patch-search.c >=================================================================== >--- graphics/zathura-pdf-mupdf/files/patch-search.c (revision 429273) >+++ graphics/zathura-pdf-mupdf/files/patch-search.c (nonexistent) >@@ -1,11 +0,0 @@ >---- search.c.orig 2016-06-25 17:42:12 UTC >-+++ search.c >-@@ -40,7 +40,7 @@ pdf_page_search_text(zathura_page_t* pag >- } >- >- fz_rect* hit_bbox = fz_malloc_array(mupdf_page->ctx, N_SEARCH_RESULTS, sizeof(fz_rect)); >-- int num_results = fz_search_text_page(mupdf_page->ctx, mupdf_page->text, >-+ int num_results = fz_search_stext_page(mupdf_page->ctx, mupdf_page->text, >- (char*) text, hit_bbox, N_SEARCH_RESULTS); >- >- for (int i = 0; i < num_results; i++) { > >Property changes on: graphics/zathura-pdf-mupdf/files/patch-search.c >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1 +0,0 ## >-yes >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: graphics/zathura-pdf-mupdf/files/patch-utils.c >=================================================================== >--- graphics/zathura-pdf-mupdf/files/patch-utils.c (revision 429273) >+++ graphics/zathura-pdf-mupdf/files/patch-utils.c (nonexistent) >@@ -1,11 +0,0 @@ >---- utils.c.orig 2016-06-25 17:44:43 UTC >-+++ utils.c >-@@ -14,7 +14,7 @@ mupdf_page_extract_text(mupdf_document_t >- fz_device* text_device = NULL; >- >- fz_try (mupdf_page->ctx) { >-- text_device = fz_new_text_device(mupdf_page->ctx, mupdf_page->sheet, mupdf_page->text); >-+ text_device = fz_new_stext_device(mupdf_page->ctx, mupdf_page->sheet, mupdf_page->text); >- >- /* Disable FZ_IGNORE_IMAGE to collect image blocks */ >- fz_disable_device_hints(mupdf_page->ctx, text_device, FZ_IGNORE_IMAGE); > >Property changes on: graphics/zathura-pdf-mupdf/files/patch-utils.c >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1 +0,0 ## >-yes >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property
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 216002
:
178808
|
178809
|
178810
|
178812
|
178813
|
178814
|
178815
|
178816
|
178817
|
178818
|
178819
|
178820
|
178821
| 178822 |
178823
|
178824