From owner-svn-ports-head@FreeBSD.ORG Sun Jul 20 21:32:52 2014 Return-Path: Delivered-To: svn-ports-head@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 1680CD69; Sun, 20 Jul 2014 21:32:52 +0000 (UTC) Received: from smtprelay01.ispgateway.de (smtprelay01.ispgateway.de [80.67.31.39]) (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 99D872E60; Sun, 20 Jul 2014 21:32:51 +0000 (UTC) Received: from [80.67.16.121] (helo=webmailfront01.ispgateway.de) by smtprelay01.ispgateway.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1X8yVW-0002dl-Gt; Sun, 20 Jul 2014 23:18:58 +0200 Received: from a89-182-169-159.net-htp.de (a89-182-169-159.net-htp.de [89.182.169.159]) by webmail.df.eu (Horde Framework) with HTTP; Sun, 20 Jul 2014 23:18:58 +0200 Date: Sun, 20 Jul 2014 23:18:58 +0200 Message-ID: <20140720231858.Horde.hH8gtABZabgnNKjWAXT_Yw7@webmail.df.eu> From: Marcus von Appen To: Antoine Brodin , python@freebsd.org Subject: Re: svn commit: r361263 - in head: . Mk References: <201407081614.s68GEXP0055616@svn.freebsd.org> In-Reply-To: Reply-to: mva@freebsd.org User-Agent: Internet Messaging Program (IMP) H5 (6.0.4) Content-Type: text/plain; charset=UTF-8; format=flowed; DelSp=Yes MIME-Version: 1.0 Content-Disposition: inline X-Df-Sender: ZnJlZWJzZEBzeXNmYXVsdC5vcmc= Cc: "svn-ports-head@freebsd.org" , "svn-ports-all@freebsd.org" , "ports-committers@freebsd.org" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 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, 20 Jul 2014 21:32:52 -0000 Antoine Brodin : > On Tue, Jul 8, 2014 at 6:14 PM, Marcus von Appen wrote: >> Author: mva >> Date: Tue Jul 8 16:14:33 2014 >> New Revision: 361263 >> URL: http://svnweb.freebsd.org/changeset/ports/361263 >> QAT: https://qat.redports.org/buildarchive/r361263/ >> >> Log: >> Support for installations based on the easy_install setup.py target has >> been removed from the Ports framework for Python software. The >> PYEASYINSTALL_* knobs and support for USE_PYDISTUTILS=easy_install have >> been removed. >> >> Phabric: D299 >> With hat: python@ > > Hi, > > There is a regression after this commit, more than 200 python modules > that use USE_PYDISTUTILS=yes but don't use autoplist orphan their > egginfo. Ouch! I thought that I tested everything often enough... >> @@ -574,10 +501,8 @@ PYDISTUTILS_EGGINFODIR?=${STAGEDIR}${PYT >> add-plist-egginfo: >> .if !defined(PYDISTUTILS_NOEGGINFO) && \ >> !defined(PYDISTUTILS_AUTOPLIST) && \ >> - (defined(INSTALLS_EGGINFO) || \ >> - (defined(USE_PYDISTUTILS) && \ >> - ${USE_PYDISTUTILS} != "easy_install")) && \ >> - defined(PYTHON_REL) >> + defined(INSTALLS_EGGINFO) && \ >> + defined(PYTHON_REL) >> . for egginfo in ${PYDISTUTILS_EGGINFO} >> if [ -d "${PYDISTUTILS_EGGINFODIR}/${egginfo}" ]; then \ >> ${LS} ${PYDISTUTILS_EGGINFODIR}/${egginfo} | while >> read f; do \ The mistake seems to be here. This should be .if !defined(PYDISTUTILS_NOEGGINFO) && \ !defined(PYDISTUTILS_AUTOPLIST) && \ (defined(INSTALLS_EGGINFO) || defined(USE_PYDISTUTILS)) && \ defined(PYTHON_REL) ... .endif I won't have the time to check and commit this in the next few days. Can a python@'eer recheck and commit a fix please? Thanks Marcus