From owner-freebsd-ports Thu Sep 5 13:30:15 2002 Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E02DC37B400 for ; Thu, 5 Sep 2002 13:30:02 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42DF343E4A for ; Thu, 5 Sep 2002 13:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.4/8.12.4) with ESMTP id g85KU2JU087900 for ; Thu, 5 Sep 2002 13:30:02 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.4/8.12.4/Submit) id g85KU2dQ087899; Thu, 5 Sep 2002 13:30:02 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1700737B400 for ; Thu, 5 Sep 2002 13:27:47 -0700 (PDT) Received: from gurudom.ramax.com (h24-68-240-50.cg.shawcable.net [24.68.240.50]) by mx1.FreeBSD.org (Postfix) with SMTP id 4222143E3B for ; Thu, 5 Sep 2002 13:27:46 -0700 (PDT) (envelope-from alex@gurudom.ramax.com) Received: (qmail 70929 invoked by uid 1000); 5 Sep 2002 20:27:45 -0000 Message-Id: <20020905202745.70928.qmail@gurudom.ramax.com> Date: 5 Sep 2002 20:27:45 -0000 From: Alex Rodioukov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/42456: New port: devel/py-psyco Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 42456 >Category: ports >Synopsis: New port: devel/py-psyco >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Sep 05 13:30:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Alex Rodioukov >Release: FreeBSD 4.5-RELEASE i386 >Organization: >Environment: System: FreeBSD netopia.io.sys 4.5-RELEASE FreeBSD 4.5-RELEASE #0: Mon Feb 4 13:21:59 MST 2002 root@bismark.io.sys:/usr/obj/usr/src/sys/NETOPIA i386 >Description: Psyco shows that it is possible to execute Python code at speeds approaching that of fully compiled languages, by "specialization". The current prototype operates on i386-compatible processors and shows 2 to 100 times speed-ups, depending on code. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # py-psyco # py-psyco/Makefile # py-psyco/pkg-comment # py-psyco/pkg-descr # py-psyco/distinfo # py-psyco/pkg-plist # echo c - py-psyco mkdir -p py-psyco > /dev/null 2>&1 echo x - py-psyco/Makefile sed 's/^X//' >py-psyco/Makefile << 'END-of-py-psyco/Makefile' X# New ports collection makefile for: py-psyco X# Date created: 5 September 2002 X# Whom: Alex Rodioukov X# X# $FreeBSD$ X# X XPORTNAME= psyco XPORTVERSION= 0.4.1 XCATEGORIES= devel python XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= psyco XPKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} XDISTNAME= ${PORTNAME}-${PORTVERSION}-src X XMAINTAINER= simuran@shaw.ca X XUSE_PYTHON= yes XUSE_PYDISTUTILS=yes X XWRKSRC= ${WRKDIR}/psyco-${PORTVERSION} X X.include END-of-py-psyco/Makefile echo x - py-psyco/pkg-comment sed 's/^X//' >py-psyco/pkg-comment << 'END-of-py-psyco/pkg-comment' XPsyco, the Python Specializing Compiler END-of-py-psyco/pkg-comment echo x - py-psyco/pkg-descr sed 's/^X//' >py-psyco/pkg-descr << 'END-of-py-psyco/pkg-descr' XPsyco shows that it is possible to execute Python code at speeds Xapproaching that of fully compiled languages, by "specialization". The Xcurrent prototype operates on i386-compatible processors and shows 2 Xto 100 times speed-ups, depending on code. X XWWW: http://psyco.sourceforge.net/ X X- Alex Rodioukov END-of-py-psyco/pkg-descr echo x - py-psyco/distinfo sed 's/^X//' >py-psyco/distinfo << 'END-of-py-psyco/distinfo' XMD5 (psyco-0.4.1-src.tar.gz) = ed8f400898c4540cd87bf5270b126609 END-of-py-psyco/distinfo echo x - py-psyco/pkg-plist sed 's/^X//' >py-psyco/pkg-plist << 'END-of-py-psyco/pkg-plist' X%%PYTHON_SITELIBDIR%%/psyco/__init__.py X%%PYTHON_SITELIBDIR%%/psyco/__init__.pyo X%%PYTHON_SITELIBDIR%%/psyco/__init__.pyc X%%PYTHON_SITELIBDIR%%/psyco/_psyco.so X%%PYTHON_SITELIBDIR%%/psyco/classes.py X%%PYTHON_SITELIBDIR%%/psyco/classes.pyc X%%PYTHON_SITELIBDIR%%/psyco/classes.pyo X@dirrm %%PYTHON_SITELIBDIR%%/psyco/ END-of-py-psyco/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message