View | Details | Raw Unified | Return to bug 242182
Collapse All | Expand All

(-)Makefile (-4 / +3 lines)
Lines 2-9 Link Here
2
2
3
PORTNAME=	python-poppler-qt5
3
PORTNAME=	python-poppler-qt5
4
DISTVERSIONPREFIX=	v
4
DISTVERSIONPREFIX=	v
5
DISTVERSION=	0.74.0
5
DISTVERSION=	0.75.0
6
PORTREVISION=	2
7
CATEGORIES=	graphics python
6
CATEGORIES=	graphics python
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
7
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
9
8
Lines 16-25 Link Here
16
LIB_DEPENDS=	libpoppler-qt5.so:graphics/poppler-qt5
15
LIB_DEPENDS=	libpoppler-qt5.so:graphics/poppler-qt5
17
16
18
USES=		compiler:c++11-lang pkgconfig pyqt:5 python:3.4+ qmake qt:5
17
USES=		compiler:c++11-lang pkgconfig pyqt:5 python:3.4+ qmake qt:5
18
USE_GITHUB=	yes
19
GH_ACCOUNT=	wbsoft
19
USE_PYQT=	gui xml sip_build
20
USE_PYQT=	gui xml sip_build
20
USE_PYTHON=	autoplist distutils
21
USE_PYTHON=	autoplist distutils
21
USE_GITHUB=	yes
22
GH_ACCOUNT=	wbsoft
23
22
24
PYDISTUTILS_BUILD_TARGET=	build_ext
23
PYDISTUTILS_BUILD_TARGET=	build_ext
25
PYDISTUTILS_BUILDARGS+=	--pyqt-sip-dir=${PYQT_SIPDIR}
24
PYDISTUTILS_BUILDARGS+=	--pyqt-sip-dir=${PYQT_SIPDIR}
(-)distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1568875323
1
TIMESTAMP = 1574494951
2
SHA256 (wbsoft-python-poppler-qt5-v0.74.0_GH0.tar.gz) = 8e073ec496a1c39bbe14b53d70c0a8628b7ec3fe0f8db0709440a6a6b553109f
2
SHA256 (wbsoft-python-poppler-qt5-v0.75.0_GH0.tar.gz) = 92e6bd8f4ce90ba4e3e0c2ada026b643481ba1b109d45e8fdbdaedca8416a995
3
SIZE (wbsoft-python-poppler-qt5-v0.74.0_GH0.tar.gz) = 23243
3
SIZE (wbsoft-python-poppler-qt5-v0.75.0_GH0.tar.gz) = 23281
(-)files/patch-types.sip (-18 lines)
Lines 1-18 Link Here
1
--- types.sip.orig	2019-09-18 15:22:50 UTC
2
+++ types.sip
3
@@ -266,13 +266,13 @@ template <TYPE>
4
 
5
     if (sipPy == Py_None)
6
     {
7
-        *sipCppPtr = new long();
8
+        *sipCppPtr = new time_t();
9
         return 1;
10
     }
11
 
12
     if (PyLong_Check(sipPy))
13
     {
14
-        *sipCppPtr = new long(PyLong_AsLong(sipPy)); 
15
+        *sipCppPtr = new time_t(PyLong_AsLong(sipPy));
16
         return 1;
17
     }
18
     return 0;

Return to bug 242182