From owner-freebsd-python@FreeBSD.ORG Wed Feb 1 01:37:55 2012 Return-Path: Delivered-To: freebsd-python@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AD008106566B for ; Wed, 1 Feb 2012 01:37:55 +0000 (UTC) (envelope-from phoffman@proper.com) Received: from hoffman.proper.com (IPv6.Hoffman.Proper.COM [IPv6:2605:8e00:100:41::81]) by mx1.freebsd.org (Postfix) with ESMTP id 8B3CA8FC17 for ; Wed, 1 Feb 2012 01:37:55 +0000 (UTC) Received: from [10.20.30.103] (50-0-66-4.dsl.dynamic.fusionbroadband.com [50.0.66.4]) (authenticated bits=0) by hoffman.proper.com (8.14.5/8.14.3) with ESMTP id q111bsNh067946 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO); Tue, 31 Jan 2012 18:37:54 -0700 (MST) (envelope-from phoffman@proper.com) Mime-Version: 1.0 (Apple Message framework v1251.1) Content-Type: text/plain; charset=us-ascii From: Paul Hoffman In-Reply-To: <20120201004547.GA30118@lonesome.com> Date: Tue, 31 Jan 2012 17:37:54 -0800 Content-Transfer-Encoding: quoted-printable Message-Id: <73AC545C-1F1A-48F5-9FDD-A91107AB3003@proper.com> References: <03D706CD-7FE1-43EC-BC5D-A00095FF57C5@proper.com> <20120201004547.GA30118@lonesome.com> To: Mark Linimon X-Mailer: Apple Mail (2.1251.1) Cc: freebsd-python@FreeBSD.org Subject: Re: The state of packages based on Python ports X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Feb 2012 01:37:55 -0000 On Jan 31, 2012, at 4:45 PM, Mark Linimon wrote: > On Tue, Jan 31, 2012 at 04:24:24PM -0800, Paul Hoffman wrote: >> Nearly all of the packages in the packages system for Python-related >> ports are for Python 2.6 *only*. >=20 > er, you'll have to tell me where you're seeing this? ftp.freebsd.org: /pub/FreeBSD/ports/i386/packages-8.2-release/All #!/usr/bin/python3 AllLines =3D open("8.2.listing.txt", "r").readlines() print("Total lines: " + str(len(AllLines))) py26count =3D 0 py27count =3D 0 py3count =3D 0 for ThisLine in AllLines: if "py26" in ThisLine: py26count+=3D1 elif "py27" in ThisLine: py27count+=3D1 elif "py3" in ThisLine: py3count+=3D1 print ("2.6: " + str(py26count) + "\n2.7: " + str(py27count) + "\n3: " + = str(py3count)) Total lines: 21437 2.6: 822 2.7: 0 3: 2 (FWIW, the two packages with py3 are py31-postgresql-1.0.2.tbz and = py31-tkinter-3.1.3_3.tbz) >=20 > I checked on pointyhat, on a recent i386-8 build for 8-STABLE: >=20 > $ pwd =20 > /dumpster/pointyhat/i386/archive/errorlogs/a.8.20120118070557 > $ ls py* | wc -l > 1199 > $ grep BUILD_DEPENDS py* | grep python24 | wc -l > 2 > $ grep BUILD_DEPENDS py* | grep python25 | wc -l > 3 > $ grep BUILD_DEPENDS py* | grep python26 | wc -l > 2 > $ grep BUILD_DEPENDS py* | grep python27 | wc -l > 1179 > $ grep BUILD_DEPENDS py* | grep python3 | wc -l > 5 >=20 > So, I'm confused? I'm not sure what the error logs in pointyhat are referring to. --Paul Hoffman=