From saper@saper.info  Thu Feb 26 12:13:09 2009
Return-Path: <saper@saper.info>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 2E26110656BB
	for <FreeBSD-gnats-submit@freebsd.org>; 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 <FreeBSD-gnats-submit@freebsd.org>; 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 <FreeBSD-gnats-submit@freebsd.org>; 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 <FreeBSD-gnats-submit@freebsd.org>; 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 <saper@SYSTEM.PL>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: [NEW PORT] lang/tinypy: A minimalist implementation of python in 64k of code
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>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:    amdmi3
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Thu Feb 26 12:20:02 UTC 2009
>Closed-Date:    Thu Apr 02 00:57:13 UTC 2009
>Last-Modified:  Thu Apr  2 01:00:07 UTC 2009
>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 <saper@SYSTEM.PL>
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 <bsd.port.pre.mk>
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 <bsd.port.post.mk>
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:
Responsible-Changed-From-To: freebsd-ports-bugs->amdmi3 
Responsible-Changed-By: amdmi3 
Responsible-Changed-When: Sun Mar 1 19:09:22 UTC 2009 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=132124 
State-Changed-From-To: open->feedback 
State-Changed-By: amdmi3 
State-Changed-When: Sun Mar 1 19:09:29 UTC 2009 
State-Changed-Why:  
Can this be changed to respect $CC and $CFLAGS and PYGAME implemented as 
an OPTION? 

http://www.freebsd.org/cgi/query-pr.cgi?pr=132124 
State-Changed-From-To: feedback->open 
State-Changed-By: pav 
State-Changed-When: Wed Mar 25 15:25:57 UTC 2009 
State-Changed-Why:  
Feedback timeout 

http://www.freebsd.org/cgi/query-pr.cgi?pr=132124 

From: Dmitry Marakasov <amdmi3@amdmi3.ru>
To: pav@FreeBSD.org, bug-followup@FreeBSD.org
Cc: saper@SYSTEM.PL
Subject: Re: ports/132124: [NEW PORT] lang/tinypy: A minimalist
	implementation of python in 64k of code
Date: Wed, 25 Mar 2009 18:34:25 +0300

 > Feedback timeout
 > 
 > http://www.freebsd.org/cgi/query-pr.cgi?pr=132124
 
 The port also doesn't seem to work. I've mained submitter, but got
 no reply yet.
 
 -- 
 Dmitry Marakasov   .   55B5 0596 FF1E 8D84 5F56  9510 D35A 80DD F9D2 F77D
 amdmi3@amdmi3.ru  ..:  jabber: amdmi3@jabber.ru    http://www.amdmi3.ru
State-Changed-From-To: open->closed 
State-Changed-By: amdmi3 
State-Changed-When: Thu Apr 2 00:57:12 UTC 2009 
State-Changed-Why:  
New port added, with minor changes. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=132124 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/132124: commit references a PR
Date: Thu,  2 Apr 2009 00:57:17 +0000 (UTC)

 amdmi3      2009-04-02 00:57:07 UTC
 
   FreeBSD ports repository
 
   Modified files:
     lang                 Makefile 
   Added files:
     lang/tinypy          Makefile distinfo pkg-descr 
   Log:
   tinypy is a minimalist implementation of python in 64k of code
   
   it 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/
   
   PR:             132124
   Submitted by:   Marcin Cieslak <saper at SYSTEM dot PL>
   
   Revision  Changes    Path
   1.631     +1 -0      ports/lang/Makefile
   1.1       +50 -0     ports/lang/tinypy/Makefile (new)
   1.1       +3 -0      ports/lang/tinypy/distinfo (new)
   1.1       +19 -0     ports/lang/tinypy/pkg-descr (new)
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
