From owner-freebsd-python@FreeBSD.ORG Thu Aug 7 07:45:20 2014 Return-Path: Delivered-To: python@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CA7E7C91 for ; Thu, 7 Aug 2014 07:45:20 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 98CF12FC5 for ; Thu, 7 Aug 2014 07:45:20 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s777jKvm003490 for ; Thu, 7 Aug 2014 07:45:20 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 192449] lang/python27 fails to build on FreeBSD 11 Date: Thu, 07 Aug 2014 07:45:20 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: cipher_nl@hotmail.com X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: python@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Aug 2014 07:45:20 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192449 --- Comment #7 from cipher_nl@hotmail.com --- Thanks for the pointer. I scripted the retrieval of the information like this: MAKECONF_OSVERSION=`/bin/cat /usr/include/sys/param.h | grep "^#define __FreeBSD_version" | cut -d\ -f 3 | cut -f 1` MAKECONF_UNAME_R=`/bin/cat /usr/src/release/doc/share/xml/release.ent | grep "release.branch" | cut -d\" -f 2` MAKECONF_UNAME_V=`/bin/cat /usr/src/release/doc/share/xml/release.ent | grep "release.branch" | cut -d\" -f 2` echo >> /etc/make.conf echo -n "${MAKECONF_UNAME_R}" >> /etc/make.conf echo -n "${MAKECONF_UNAME_V}" >> /etc/make.conf echo -n "${MAKECONF_OSVERSION}" >> /etc/make.conf The result is the following being added to /etc/make.conf prior to building: UNAME_r=11-CURRENT UNAME_v=11-CURRENT OSVERSION=1100028 However, i still get the same build failure. It still fails with: pkg-static: lstat(/usr/ports/lang/python27/work/stage/usr/local/lib/python2.7/plat-freebsd11/IN.py): No such file or directory pkg-static: lstat(/usr/ports/lang/python27/work/stage/usr/local/lib/python2.7/plat-freebsd11/IN.pyo): No such file or directory pkg-static: lstat(/usr/ports/lang/python27/work/stage/usr/local/lib/python2.7/plat-freebsd11/IN.pyc): No such file or directory pkg-static: lstat(/usr/ports/lang/python27/work/stage/usr/local/lib/python2.7/plat-freebsd11/regen): No such file or directory pkg-static: lstat(/usr/ports/lang/python27/work/stage/usr/local/lib/python2.7/plat-freebsd11/): No such file or directory *** Error code 74 Interestingly, initially i set OSVERSION to the SVN revision, which started with a '2'. This changed the failure in python27, saying "freebsd2" instead of "freebsd11". So it does appear that the setting is used. But perhaps there is an additional problem why python27 is not compiling. Is there any more diagnosis that can be done? Thanks for the help! -- You are receiving this mail because: You are the assignee for the bug.