Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 31 Jan 2012 17:37:54 -0800
From:      Paul Hoffman <phoffman@proper.com>
To:        Mark Linimon <linimon@lonesome.com>
Cc:        freebsd-python@FreeBSD.org
Subject:   Re: The state of packages based on Python ports
Message-ID:  <73AC545C-1F1A-48F5-9FDD-A91107AB3003@proper.com>
In-Reply-To: <20120201004547.GA30118@lonesome.com>
References:  <03D706CD-7FE1-43EC-BC5D-A00095FF57C5@proper.com> <20120201004547.GA30118@lonesome.com>

next in thread | previous in thread | raw e-mail | index | archive | help

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=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?73AC545C-1F1A-48F5-9FDD-A91107AB3003>