FreeBSD Bugzilla – Attachment 200192 Details for
Bug 234085
graphics/py-poppler-qt4: Resurrect as graphics/py-python-poppler-qt5, Update to 0.24.2
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
updated patch v3
py-python-poppler-0.24.2.diff (text/plain), 4.91 KB, created by
Martin Neubauer
on 2018-12-17 12:27:34 UTC
(
hide
)
Description:
updated patch v3
Filename:
MIME Type:
Creator:
Martin Neubauer
Created:
2018-12-17 12:27:34 UTC
Size:
4.91 KB
patch
obsolete
>Index: graphics/py-python-poppler/Makefile >=================================================================== >--- graphics/py-python-poppler/Makefile (nonexistent) >+++ graphics/py-python-poppler/Makefile (working copy) >@@ -0,0 +1,25 @@ >+# $FreeBSD$ >+ >+PORTNAME= python-poppler >+PORTVERSION= 0.24.2 >+CATEGORIES= graphics python >+MASTER_SITES= CHEESESHOP >+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} >+DISTVERSIONPREFIX= qt5- >+ >+MAINTAINER= martin.dieringer@gmx.de >+COMMENT= Python bindings for the Poppler-Qt PDF rendering library >+ >+LICENSE= LGPL21 LGPL3 >+LICENSE_COMB= dual >+ >+LIB_DEPENDS= libpoppler-qt5.so:graphics/poppler-qt5 >+ >+USES= pkgconfig pyqt:5 python:3.4+ qmake qt:5 >+USE_PYQT= gui xml sip_build >+USE_PYTHON= distutils autoplist >+ >+PYDISTUTILS_BUILD_TARGET= build_ext >+PYDISTUTILS_BUILDARGS+= --pyqt-sip-dir=${PYQT_SIPDIR} >+ >+.include <bsd.port.mk> > >Property changes on: graphics/py-python-poppler/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: graphics/py-python-poppler/distinfo >=================================================================== >--- graphics/py-python-poppler/distinfo (nonexistent) >+++ graphics/py-python-poppler/distinfo (working copy) >@@ -0,0 +1,3 @@ >+TIMESTAMP = 1522237769 >+SHA256 (python-poppler-qt5-0.24.2.tar.gz) = 3970c35ce1f0f1464a6c2746bea4c479b9780b4e17030c92479f7f1738a5c950 >+SIZE (python-poppler-qt5-0.24.2.tar.gz) = 20944 > >Property changes on: graphics/py-python-poppler/distinfo >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: graphics/py-python-poppler/files/patch-poppler-qt5.sip >=================================================================== >--- graphics/py-python-poppler/files/patch-poppler-qt5.sip (nonexistent) >+++ graphics/py-python-poppler/files/patch-poppler-qt5.sip (working copy) >@@ -0,0 +1,10 @@ >+--- poppler-qt5.sip.orig 2015-02-23 06:41:56 UTC >++++ poppler-qt5.sip >+@@ -8,6 +8,7 @@ >+ >+ %Import QtCore/QtCoremod.sip >+ %Import QtGui/QtGuimod.sip >++%Import QtXml/QtXmlmod.sip >+ >+ %Feature QTXML_AVAILABLE >+ > >Property changes on: graphics/py-python-poppler/files/patch-poppler-qt5.sip >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: graphics/py-python-poppler/files/patch-types.sip >=================================================================== >--- graphics/py-python-poppler/files/patch-types.sip (nonexistent) >+++ graphics/py-python-poppler/files/patch-types.sip (working copy) >@@ -0,0 +1,16 @@ >+PyList_SET_ITEM() is supposed to be void, but as a macro it's an >+expression and has a pointer value. Clang 4.0 trips on the bogus >+pointer comparison; given the comparison, it should be PyList_SetItem() >+which returns -1 on failure. >+ >+--- types.sip.orig 2017-01-21 07:19:29 UTC >++++ types.sip >+@@ -27,7 +27,7 @@ >+ foreach (Poppler::Document::RenderBackend value, set) >+ { >+ PyObject *obj = PyLong_FromLong ((long) value); >+- if (obj == NULL || PyList_SET_ITEM (l, i, obj) < 0) >++ if (obj == NULL || PyList_SetItem (l, i, obj) < 0) >+ { >+ Py_DECREF(l); >+ > >Property changes on: graphics/py-python-poppler/files/patch-types.sip >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: graphics/py-python-poppler/pkg-descr >=================================================================== >--- graphics/py-python-poppler/pkg-descr (nonexistent) >+++ graphics/py-python-poppler/pkg-descr (working copy) >@@ -0,0 +1,9 @@ >+A Python binding for libpoppler-qt5 that aims for completeness and for being actively maintained. >+ >+Created and currently maintained by Wilbert Berendsen <wbsoft@xs4all.nl>. >+ >+Usage: >+ import popplerqt5 >+ d = popplerqt5.Poppler.Document.load('file.pdf') >+ >+WWW: https://pypi.python.org/pypi/python-poppler-qt5 > >Property changes on: graphics/py-python-poppler/pkg-descr >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+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 234085
:
200174
|
200190
|
200192
|
200201
|
200257