From owner-freebsd-python@FreeBSD.ORG Thu Apr 17 01:48:10 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 6FE7BFF6 for ; Thu, 17 Apr 2014 01:48:10 +0000 (UTC) Received: from mail-pd0-x236.google.com (mail-pd0-x236.google.com [IPv6:2607:f8b0:400e:c02::236]) (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 41A6A118A for ; Thu, 17 Apr 2014 01:48:10 +0000 (UTC) Received: by mail-pd0-f182.google.com with SMTP id y10so11427429pdj.13 for ; Wed, 16 Apr 2014 18:48:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:reply-to:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=yxBPtmzfXr/1IMUlWI57EoCKRY3PX2J0kbsjw6THc5M=; b=Xap+61cRiFWKM27s/VBPOUgIC97v+4gv385E8/RqchOmrSiiawW29J9MHqi+bbFfCh bbgY+iLFNSUBI5OHkZS28LP5v7539AAoznups1dphFB91erlmFGcJhp+nXuPDYBv3Z13 exp7ZHOOQT1sfC66V4L8X7KTeNEqLNpcTOKVWClKA7waNVvlxcD8VlfB1tRSvgyj8pNv /dLMfOw7JpQpYW1xZwFSEo1JZPCsic3uW47+brzWnyvF/OFiyzeAbZdtE0zmcd6+9KRR B/emAkdFUWT8oGkWL4n8uQ6z2UbX0BScbvjcc6VRQrzSnz1OFUIwARTUv2oK19AyVaTD BGKA== X-Received: by 10.66.65.204 with SMTP id z12mr12250840pas.60.1397699289635; Wed, 16 Apr 2014 18:48:09 -0700 (PDT) Received: from [192.168.1.7] (ppp59-167-128-11.static.internode.on.net. [59.167.128.11]) by mx.google.com with ESMTPSA id ff4sm118598580pad.24.2014.04.16.18.48.07 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 16 Apr 2014 18:48:09 -0700 (PDT) Message-ID: <534F32D2.1070107@FreeBSD.org> Date: Thu, 17 Apr 2014 11:48:02 +1000 From: Kubilay Kocak User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Thunderbird/28.0 MIME-Version: 1.0 To: paul beard Subject: Re: This seems messed up [py-setuptools] References: <534E264A.7020106@FreeBSD.org> In-Reply-To: X-Enigmail-Version: 1.6 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: python@freebsd.org X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: koobs@FreeBSD.org List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Apr 2014 01:48:10 -0000 On 17/04/2014 1:16 AM, paul beard wrote: > On Tue, Apr 15, 2014 at 11:42 PM, Kubilay Kocak wrote: >> >> Please have a read of /usr/ports/UPDATING entry 20140307, with tl;dr: > > > From the URL listed there: >> >> If you have any questions, or are unsure whether you can remove a >> particular entry or not, either: >> - Delete it, then reinstall devel/py-setuptoolsXY for good measure, OR >> - Check with us on the mailing list or at #freebsd-python on freenode IRC > > > I deleted it more than once but apparently it was the > /usr/local/lib/python2.7/site-packages/distribute-0.6.35-py2.7.egg > file that was the issue. In the old days, before pkgng, there was a > way to find files that weren't registered to a port. I should perhaps > have thought to use that if it still exists. > > Paul, If you have distribute installed in your site-packages (whether or not you have the port/package installed), you'll want to remove that as well. Background: In the past year the Python team have taken (in order) the following steps to track changes in Python packaging: 1) Replace setuptools 0.6.x with distribute 2) Replace distribute with setuptools 0.7.x+ [1] Note that setuptools (0.6 and 0.7+) and distribute *all* provide the 'setuptools' python module and corresponding files. py-distribute was deleted on Nov 29 2013 [2]. For more detail on the effect having multiple or stale versions of these left installed, see: http://lists.freebsd.org/pipermail/freebsd-python/2014-April/006828.html [1] https://pythonhosted.org/setuptools/merge.html [2] http://svnweb.freebsd.org/ports?view=revision&revision=335167 We're also available to assist on #freebsd-python on IRC (freenode) if you need anything :) Koobs