Date: Sun, 8 Oct 2017 08:07:38 +0000 (UTC) From: Antoine Brodin <antoine@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r451505 - head/devel/py-doit Message-ID: <201710080807.v9887cZ8055574@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: antoine Date: Sun Oct 8 08:07:38 2017 New Revision: 451505 URL: https://svnweb.freebsd.org/changeset/ports/451505 Log: Ignore on the package builders Reported by: pkg-fallout MFH: 2017Q4 Modified: head/devel/py-doit/Makefile Modified: head/devel/py-doit/Makefile ============================================================================== --- head/devel/py-doit/Makefile Sun Oct 8 08:04:52 2017 (r451504) +++ head/devel/py-doit/Makefile Sun Oct 8 08:07:38 2017 (r451505) @@ -23,9 +23,14 @@ USE_PYTHON= distutils autoplist NO_ARCH= yes -.include <bsd.port.pre.mk> - do-test: @cd ${WRKSRC} && ${PYTHON_CMD} -m pytest + +.include <bsd.port.pre.mk> + +.if defined(PACKAGE_BUILDING) && !defined(PACKAGE_BUILDING_FLAVORS) && \ + ${PYTHON_VER} != ${PYTHON_DEFAULT} +IGNORE= you have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER} +.endif .include <bsd.port.post.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201710080807.v9887cZ8055574>