From owner-svn-ports-head@freebsd.org Sun Sep 3 10:35:11 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 24FDEE0481E; Sun, 3 Sep 2017 10:35:11 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E33CF66C5C; Sun, 3 Sep 2017 10:35:10 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v83AZAx5031823; Sun, 3 Sep 2017 10:35:10 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v83AZAOt031822; Sun, 3 Sep 2017 10:35:10 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201709031035.v83AZAOt031822@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 3 Sep 2017 10:35:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r449197 - head/devel/py-bsd X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: head/devel/py-bsd X-SVN-Commit-Revision: 449197 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Sep 2017 10:35:11 -0000 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