svn commit: r527802 - head/security/py-pyvex

Mark Linimon linimon at FreeBSD.org
Thu Mar 5 01:42:46 UTC 2020


Author: linimon
Date: Thu Mar  5 01:42:44 2020
New Revision: 527802
URL: https://svnweb.freebsd.org/changeset/ports/527802

Log:
  Mark as only for architectures that are supported (see pyvex_c/pyvex.c
  line 170).
  
  OK, it also supports 390x, but we don't.
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/security/py-pyvex/Makefile

Modified: head/security/py-pyvex/Makefile
==============================================================================
--- head/security/py-pyvex/Makefile	Wed Mar  4 22:27:14 2020	(r527801)
+++ head/security/py-pyvex/Makefile	Thu Mar  5 01:42:44 2020	(r527802)
@@ -15,6 +15,9 @@ LICENSE_FILE_BSD2CLAUSE=	${WRKSRC}/LICENSE
 LICENSE_FILE_GPLv2+ =	${WRKSRC}/vex/LICENSE.GPL
 LICENSE_FILE_GPLv3=	${WRKSRC}/pyvex_c/LICENSE
 
+ONLY_FOR_ARCHS=		aarch64 amd64 armv7 i386
+ONLY_FOR_ARCHS_REASON=	pyvex_c/pyvex.c does not support this architecture (see line 170)
+
 BUILD_DEPENDS=	${_MY_DEPENDS}
 RUN_DEPENDS=	${_MY_DEPENDS} \
 		${PYTHON_PKGNAMEPREFIX}archinfo>0:devel/py-archinfo@${PY_FLAVOR} \


More information about the svn-ports-all mailing list