From owner-freebsd-python@FreeBSD.ORG Thu Jun 6 17:11:12 2013 Return-Path: Delivered-To: python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 3799D5EA; Thu, 6 Jun 2013 17:11:12 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-ie0-x22c.google.com (mail-ie0-x22c.google.com [IPv6:2607:f8b0:4001:c03::22c]) by mx1.freebsd.org (Postfix) with ESMTP id 08E141E56; Thu, 6 Jun 2013 17:11:11 +0000 (UTC) Received: by mail-ie0-f172.google.com with SMTP id 17so7889333iea.31 for ; Thu, 06 Jun 2013 10:11:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to:content-type; bh=rmPhEoCWmNprKg5X9fi76UjvppN/29Whr69UPcXGBPQ=; b=VLXSejcE5H50IMt35getYp1yh7QlY4i52jt+KCEOOLpQiOKOABxFBgUMa+G4kCrzvA YAddJThDVPe6HWP6zMiznNUK6w3Eo3EHUA9ukwg7gDe/RWyq4HsvMTOuF75sNR89zIiK 75IUaWpVWUwXKrgwOMN/hzxnOos9ZriECsW/AvBeqyobBH2gNin7ENzMwB2FWfxQ3q5z sw3d4WtrYHm3PYcqJ67riBvlPuZKPsZ/eWtqxq992noWF1G3DyVHPBojqFUyGstVGV0Z /yeAEOk7uKVOrmllyg/OnpB0sF2ztCkY2Hs69tcdiR05aBYkY/aAln56eblVGkejr1yi 3fJw== X-Received: by 10.42.89.145 with SMTP id g17mr7825623icm.37.1370538671199; Thu, 06 Jun 2013 10:11:11 -0700 (PDT) MIME-Version: 1.0 Received: by 10.64.71.101 with HTTP; Thu, 6 Jun 2013 10:10:41 -0700 (PDT) From: Chris Rees Date: Thu, 6 Jun 2013 18:10:41 +0100 Message-ID: Subject: Re: ports/133081: Fix PYEASYINSTALL_ARCHDEP=yes packages To: "bug-followup@freebsd.org" , python Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Jun 2013 17:11:12 -0000 Hi all again, After much grinding of teeth, I have discovered that easy_install completely ignores the envar _PYTHON_HOST_PLATFORM. I also discovered that the only thing it really did was add the egg to %%PYTHON_SITELIBDIR%%/easy-install.pth, so I wrote some sed and ed magic to replace it. This patch now fixes the problem in http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/133081. I've tested it and it works, and all the affected ports pass tinderbox. Any comments before I commit? http://www.bayofrum.net/~crees/patches/python-filthy2.diff Chris