From owner-svn-ports-all@FreeBSD.ORG Sat Jan 31 10:17:04 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 14F32D21; Sat, 31 Jan 2015 10:17:04 +0000 (UTC) Received: from mail-wg0-x229.google.com (mail-wg0-x229.google.com [IPv6:2a00:1450:400c:c00::229]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 99B509A0; Sat, 31 Jan 2015 10:17:03 +0000 (UTC) Received: by mail-wg0-f41.google.com with SMTP id a1so30884853wgh.0; Sat, 31 Jan 2015 02:17:02 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-type:content-transfer-encoding; bh=m/w9VsTgzHMj7PDFn2bUHrw9gdbRnwUZEwjDCPWI0JM=; b=uQGPhH4Authijcv4U2D0wGE2lmplj3S6nAWGvj3idcmgANKEDr9YKDBzwgTfR3Gu10 /HZHNluF3FmCeOlaLH1JLE7tYX6bRHX5Priu4H3zZCMj+LeV83ei2q63eEu9d5X/PC7k gqWJhGVKSjzj6zhMMby9pXi12NFUmhYjMTsKVrf8ZHLYl9HMvqMU1Ijf0zdLoXkNFCBp LY2TUtju9fRUTU7ZrFy/dNd5NI/oyLfg3D4YQVk/f6Fyoi+niNtveLXkTw5i7PITwfX7 JlFI1wCa4OdaHsIurb7xJiSGSVeZz7D0v5+q30V/PE/yL6LRr4d46Uac1fJlIblj4SLh 2BsA== X-Received: by 10.180.211.2 with SMTP id my2mr3278853wic.3.1422699421993; Sat, 31 Jan 2015 02:17:01 -0800 (PST) Received: from tuborg (AMarseille-655-1-790-238.w92-158.abo.wanadoo.fr. [92.158.171.238]) by mx.google.com with ESMTPSA id uo6sm18630273wjc.49.2015.01.31.02.17.00 (version=TLSv1 cipher=RC4-SHA bits=128/128); Sat, 31 Jan 2015 02:17:01 -0800 (PST) Sender: Olivier Duchateau Date: Sat, 31 Jan 2015 11:18:58 +0000 From: Olivier Duchateau To: Antoine Brodin Subject: Re: svn commit: r378197 - head/science/py-scimath Message-Id: <20150131111858.3bc140fbf86098fe50a148a5@freebsd.org> In-Reply-To: <201501311000.t0VA0jHe064347@svn.freebsd.org> References: <201501311000.t0VA0jHe064347@svn.freebsd.org> X-Mailer: Sylpheed 3.4.2 (GTK+ 2.24.25; i386-portbld-freebsd9.3) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 Jan 2015 10:17:04 -0000 On Sat, 31 Jan 2015 10:00:45 +0000 (UTC) Antoine Brodin wrote: > Author: antoine > Date: Sat Jan 31 10:00:44 2015 > New Revision: 378197 > URL: https://svnweb.freebsd.org/changeset/ports/378197 > QAT: https://qat.redports.org/buildarchive/r378197/ > > Log: > Mark BROKEN: Fails to build > > ===> Configuring for py27-scimath-4.1.2_3 > Traceback (most recent call last): > File "", line 1, in > File "setup.py", line 9, in > import numpy.distutils.core > ImportError: No module named numpy.distutils.core > > Reported by: pkg-fallout > > Modified: > head/science/py-scimath/Makefile > > Modified: head/science/py-scimath/Makefile > ============================================================================== > --- head/science/py-scimath/Makefile Sat Jan 31 09:54:15 2015 (r378196) > +++ head/science/py-scimath/Makefile Sat Jan 31 10:00:44 2015 (r378197) > @@ -14,6 +14,8 @@ COMMENT= Scientific and Mathematical cal > LICENSE= BSD3CLAUSE LGPL3 > LICENSE_COMB= dual > > +BROKEN= Fails to build > + > BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}traits>=3.6.0:${PORTSDIR}/devel/py-traits > RUN_DEPENDS:= ${BUILD_DEPENDS} > > This port is only compatible with Python2, because execfile () function is only available in Python2, skipped in Python3 (we can use exec (), but build fails for interpolate/_interpolate.cpp file (Py_InitModule3 function is not present in Python3). I'm working on this port, in order to update it, unfortunately no time to send PR to maintainer. -- Olivier Duchateau