From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 26 12:20:03 2009 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6FF7E106567C for ; Thu, 26 Feb 2009 12:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 421078FC2F for ; Thu, 26 Feb 2009 12:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n1QCK3qC001354 for ; Thu, 26 Feb 2009 12:20:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n1QCK3D7001350; Thu, 26 Feb 2009 12:20:03 GMT (envelope-from gnats) Resent-Date: Thu, 26 Feb 2009 12:20:03 GMT Resent-Message-Id: <200902261220.n1QCK3D7001350@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Marcin Cieslak Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2E26110656BB for ; Thu, 26 Feb 2009 12:13:09 +0000 (UTC) (envelope-from saper@saper.info) Received: from k.saper.info (smtp-out.saper.info [IPv6:2001:41d0:1:c823::1002]) by mx1.freebsd.org (Postfix) with ESMTP id B7B498FC1A for ; Thu, 26 Feb 2009 12:13:08 +0000 (UTC) (envelope-from saper@saper.info) Received: from k.saper.info (localhost [127.0.0.1]) by k.saper.info (8.14.2/8.14.2) with ESMTP id n1QC7G1p057850 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Thu, 26 Feb 2009 12:07:16 GMT (envelope-from saper@saper.info) Received: (from uucp@localhost) by k.saper.info (8.14.2/8.14.2/Submit) with UUCP id n1QC7GWO057849 for FreeBSD-gnats-submit@freebsd.org; Thu, 26 Feb 2009 12:07:16 GMT (envelope-from saper@saper.info) Received: from radziecki.saper.info (localhost [127.0.0.1]) by radziecki.saper.info (8.14.3/8.14.3) with ESMTP id n1QCCsBZ076791 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Thu, 26 Feb 2009 12:12:55 GMT (envelope-from saper@saper.info) Received: (from saper@localhost) by radziecki.saper.info (8.14.3/8.14.3/Submit) id n1QCCsbF076780; Thu, 26 Feb 2009 12:12:54 GMT (envelope-from saper) Message-Id: <200902261212.n1QCCsbF076780@radziecki.saper.info> Date: Thu, 26 Feb 2009 12:12:54 GMT From: Marcin Cieslak To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/132124: [NEW PORT] lang/tinypy: A minimalist implementation of python in 64k of code X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Feb 2009 12:20:03 -0000 >Number: 132124 >Category: ports >Synopsis: [NEW PORT] lang/tinypy: A minimalist implementation of python in 64k of code >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Feb 26 12:20:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Marcin Cieslak >Release: FreeBSD 7.1-STABLE amd64 >Organization: http://saper.info >Environment: System: FreeBSD radziecki.saper.info 7.1-STABLE FreeBSD 7.1-STABLE #2 r187968M: Tue Feb 17 10:52:35 CET >Description: tinypy includes a whole heap of features: * parser and bytecode compiler written in tinypy * fully bootstrapped * luaesque virtual machine with garbage collection written in C it's "stackless" sans any "stackless" features * cross-platform :) it runs under windows / linux / macosx * a fairly decent subset of python o classes and single inheritance o functions with variable or keyword arguments o strings, lists, dicts, numbers o modules, list comprehensions o exceptions with full traceback o some builtins * batteries not included -- yet WWW: http://www.tinypy.org/ Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- tinypy-1.1.shar begins here --- # 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: # # tinypy # tinypy/Makefile # tinypy/distinfo # tinypy/pkg-descr # echo c - tinypy mkdir -p tinypy > /dev/null 2>&1 echo x - tinypy/Makefile sed 's/^X//' >tinypy/Makefile << '964842e15f9e7641335175ea3ca873e5' X# New ports collection makefile for: tinypy X# Date created: 2009-02-26 X# Whom: Marcin Cieslak X# X# $FreeBSD$ X# X XPORTNAME= tinypy XPORTVERSION= 1.1 XCATEGORIES= lang XMASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} X XMAINTAINER= saper@SYSTEM.PL XCOMMENT= A minimalist implementation of python in 64k of code X XUSE_PYTHON= yes XUSE_PYDISTUTILS=yes X XPYDISTUTILS_BUILD_TARGET= linux XPYDISTUTILS_NOEGGINFO= yes XWANT_SDL= yes XUSE_SDL= sdl X XPLIST_FILES= bin/tinypy X X.include X X.if ${HAVE_SDL:Msdl} && !defined(WITHOUT_PYGAME) XPYDISTUTILS_BUILD_TARGET+= pygame X.endif X.if !defined(NOPORTEXAMPLE) && !defined(WITHOUT_PYGAME) XPORTEXAMPLES+= julia.py X.endif X Xdo-configure: X @${DO_NADA} X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/build/tinypy ${PREFIX}/bin X.if !defined(NOPORTEXAMPLES) && !defined(WITHOUT_PYGAME) X @${MKDIR} ${EXAMPLESDIR} X ${INSTALL_DATA} ${WRKSRC}/examples/julia.py ${EXAMPLESDIR} X.endif X X.include 964842e15f9e7641335175ea3ca873e5 echo x - tinypy/distinfo sed 's/^X//' >tinypy/distinfo << '6fdd0a052a03bc191e8f198cb7e2e122' XMD5 (tinypy-1.1.tar.gz) = 1091300b72fcc1f75cafb91bea92772e XSHA256 (tinypy-1.1.tar.gz) = 858d68d3643614e3646776ad99d5e4ad7cbd6428f44c3acd4cf7b11db1c55b39 XSIZE (tinypy-1.1.tar.gz) = 40632 6fdd0a052a03bc191e8f198cb7e2e122 echo x - tinypy/pkg-descr sed 's/^X//' >tinypy/pkg-descr << '5a07e7cbcda2c4de2565beab8821aab8' Xtinypy includes a whole heap of features: X X * parser and bytecode compiler written in tinypy X * fully bootstrapped X * luaesque virtual machine with garbage collection written in C X it's "stackless" sans any "stackless" features X * cross-platform :) it runs under windows / linux / macosx X * a fairly decent subset of python X o classes and single inheritance X o functions with variable or keyword arguments X o strings, lists, dicts, numbers X o modules, list comprehensions X o exceptions with full traceback X o some builtins X * batteries not included -- yet X XWWW: http://www.tinypy.org/ 5a07e7cbcda2c4de2565beab8821aab8 exit --- tinypy-1.1.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: