svn commit: r449197 - head/devel/py-bsd

Antoine Brodin antoine at FreeBSD.org
Sun Sep 3 10:35:11 UTC 2017


Author: antoine
Date: Sun Sep  3 10:35:09 2017
New Revision: 449197
URL: https://svnweb.freebsd.org/changeset/ports/449197

Log:
  Mark BROKEN: fails to build
  
  cythoning bsd/extattr.pyx to bsd/extattr.c
  Error compiling Cython file:
  ------------------------------------------------------------
  ...
          attr_name = k
          attr_data = v
          data_len = len(v)
  
          if isinstance(fobj, file_types):
              kr = defs.extattr_set_fd(fobj.fileno(), namespace, attr_name, attr_data, data_len)
                      ^
  ------------------------------------------------------------
  bsd/extattr.pyx:266:21: cimported module has no attribute 'extattr_set_fd'
  
  Reported by:	pkg-fallout

Modified:
  head/devel/py-bsd/Makefile

Modified: head/devel/py-bsd/Makefile
==============================================================================
--- head/devel/py-bsd/Makefile	Sun Sep  3 10:33:56 2017	(r449196)
+++ head/devel/py-bsd/Makefile	Sun Sep  3 10:35:09 2017	(r449197)
@@ -10,6 +10,8 @@ COMMENT=	Python wrappers for various BSD libc and syst
 
 LICENSE=	BSD3CLAUSE
 
+BROKEN=		fails to build
+
 BUILD_DEPENDS=	cython>0:lang/cython \
 		${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six


More information about the svn-ports-all mailing list