svn commit: r432289 - in branches/2017Q1/graphics/py-poppler-qt4: . files

Tobias C. Berner tcberner at FreeBSD.org
Mon Jan 23 20:40:09 UTC 2017


Author: tcberner
Date: Mon Jan 23 20:40:08 2017
New Revision: 432289
URL: https://svnweb.freebsd.org/changeset/ports/432289

Log:
  MFH: r432089
  
  Fix graphics/py-poppler-qt4: fails to build with clang 4.0
  
    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.
  
  PR:		216228
  Approved by:	portmgr blanket, rakuco (mentor)
  
  Approved by:	ports-secteam (junovitch), rakuco (mentor)

Added:
  branches/2017Q1/graphics/py-poppler-qt4/files/
     - copied from r432089, head/graphics/py-poppler-qt4/files/
Modified:
  branches/2017Q1/graphics/py-poppler-qt4/Makefile
Directory Properties:
  branches/2017Q1/   (props changed)

Modified: branches/2017Q1/graphics/py-poppler-qt4/Makefile
==============================================================================
--- branches/2017Q1/graphics/py-poppler-qt4/Makefile	Mon Jan 23 20:27:07 2017	(r432288)
+++ branches/2017Q1/graphics/py-poppler-qt4/Makefile	Mon Jan 23 20:40:08 2017	(r432289)
@@ -2,7 +2,7 @@
 
 PORTNAME=	poppler-qt4
 PORTVERSION=	0.18.1
-PORTREVISION=	6
+PORTREVISION=	7
 CATEGORIES=	graphics python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}


More information about the svn-ports-all mailing list