svn commit: r415960 - head/math/py-networkx

Dmitry Sivachenko trtrmitya at gmail.com
Sat May 28 13:50:27 UTC 2016


> On 27 May 2016, at 22:42, Dmitry Marakasov <amdmi3 at FreeBSD.org> wrote:
> 
> Author: amdmi3
> Date: Fri May 27 19:42:12 2016
> New Revision: 415960
> URL: https://svnweb.freebsd.org/changeset/ports/415960
> 
> Log:
>  - Change condition to fix build with fmake when using python3.x
> 
>  PR:		209514
>  Approved by:	portmgr blanket
> 
> Modified:
>  head/math/py-networkx/Makefile
> 
> Modified: head/math/py-networkx/Makefile
> ==============================================================================
> --- head/math/py-networkx/Makefile	Fri May 27 19:40:28 2016	(r415959)
> +++ head/math/py-networkx/Makefile	Fri May 27 19:42:12 2016	(r415960)
> @@ -49,8 +49,10 @@ YAML_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX
> 
> .include <bsd.port.pre.mk>
> 
> -.if ${PYTHON_REL} >= 3000 && (${PORT_OPTIONS:MMPL} || ${PORT_OPTIONS:MGRAPHVIZ})
> +.if ${PYTHON_REL} >= 3000
> +. if ${PORT_OPTIONS:MMPL} || ${PORT_OPTIONS:MGRAPHVIZ}
> BROKEN=		Neither math/py-matplotlib nor graphics/py-graphviz support Python 3.x yet. Please disable both the MPL and 



This BROKEN message seems wrong: according to documentation and FreeBSD port, py-matplotlib does support python3;
Also there is separate port graphics/py3-pygraphviz which support python3.


More information about the svn-ports-all mailing list