diff options
author | wiz <wiz@pkgsrc.org> | 2005-10-19 01:33:16 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2005-10-19 01:33:16 +0000 |
commit | 55a9e0896acba5813d516bad626a49e97f50be89 (patch) | |
tree | 4ad6c27edfcf9a07de39c762f8ad53b723977a9d /lang/py-psyco | |
parent | 64588223e1155edc2bd0354a89d4828db46bb637 (diff) | |
download | pkgsrc-55a9e0896acba5813d516bad626a49e97f50be89.tar.gz |
Update to 1.4, based on PR 31335 by Victor I.
Additional PLIST fixes.
Changes in 1.4:
An interesting new optimization: instances of user-defined classes
are now really supported, i.e. their attributes keep type information
and are stored quite compactly in memory. However, it only works
so far with instances of a new type ``psyco.compact`` (which is
subclassable). The line ``from psyco.classes import *`` has the
effect of turning your classes into psyco.compact subclasses, too.
Changes in 1.3:
Includes support for Python 2.4 (and of course still for 2.1-2.3).
As always comes with a few bug fixes, including a memory leak when
using the profiler. Another good news is that the built-in functions
that read the local variables -- locals(), eval(), execfile(),
vars(), dir(), input() -- now work correctly!
Diffstat (limited to 'lang/py-psyco')
-rw-r--r-- | lang/py-psyco/Makefile | 6 | ||||
-rw-r--r-- | lang/py-psyco/PLIST | 5 | ||||
-rw-r--r-- | lang/py-psyco/distinfo | 8 |
3 files changed, 11 insertions, 8 deletions
diff --git a/lang/py-psyco/Makefile b/lang/py-psyco/Makefile index a4e9ba0e5c2..7992ecadddf 100644 --- a/lang/py-psyco/Makefile +++ b/lang/py-psyco/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.7 2005/07/27 16:21:17 wiz Exp $ +# $NetBSD: Makefile,v 1.8 2005/10/19 01:33:16 wiz Exp $ -DISTNAME= psyco-1.2-src +DISTNAME= psyco-1.4-src PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/-src//} CATEGORIES= lang python MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=psyco/} @@ -15,7 +15,7 @@ PYBINMODULE= YES PY_PATCHPLIST= YES ONLY_FOR_PLATFORM= *-*-i386 -PYTHON_VERSIONS_ACCEPTED= 23 22 21 +PYTHON_VERSIONS_ACCEPTED= 24 23 22 21 .include "../../lang/python/extension.mk" .include "../../mk/bsd.pkg.mk" diff --git a/lang/py-psyco/PLIST b/lang/py-psyco/PLIST index 4f7d54c4c6d..5f9b8a78a54 100644 --- a/lang/py-psyco/PLIST +++ b/lang/py-psyco/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1.1.1 2003/10/01 22:39:06 recht Exp $ +@comment $NetBSD: PLIST,v 1.2 2005/10/19 01:33:16 wiz Exp $ ${PYSITELIB}/psyco/__init__.py ${PYSITELIB}/psyco/__init__.pyc ${PYSITELIB}/psyco/__init__.pyo @@ -9,6 +9,9 @@ ${PYSITELIB}/psyco/classes.pyo ${PYSITELIB}/psyco/core.py ${PYSITELIB}/psyco/core.pyc ${PYSITELIB}/psyco/core.pyo +${PYSITELIB}/psyco/kdictproxy.py +${PYSITELIB}/psyco/kdictproxy.pyc +${PYSITELIB}/psyco/kdictproxy.pyo ${PYSITELIB}/psyco/logger.py ${PYSITELIB}/psyco/logger.pyc ${PYSITELIB}/psyco/logger.pyo diff --git a/lang/py-psyco/distinfo b/lang/py-psyco/distinfo index 5dd7de87d6e..0c3f49a36be 100644 --- a/lang/py-psyco/distinfo +++ b/lang/py-psyco/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.3 2005/02/24 09:03:10 agc Exp $ +$NetBSD: distinfo,v 1.4 2005/10/19 01:33:16 wiz Exp $ -SHA1 (psyco-1.2-src.tar.gz) = 8962da56d5fe6e79e06d0780feb1156de63b4ace -RMD160 (psyco-1.2-src.tar.gz) = 94a4774dee7557b5f70b960a30c3e18c96cc8bdf -Size (psyco-1.2-src.tar.gz) = 318472 bytes +SHA1 (psyco-1.4-src.tar.gz) = 965d2b8fdecde3f1fb3a1855b697b53da66fa058 +RMD160 (psyco-1.4-src.tar.gz) = 9520355ea9e55f6c910e6c0563bc2ea8f3a17535 +Size (psyco-1.4-src.tar.gz) = 345871 bytes |