From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 14:10:20 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 01CAC7E5; Sun, 5 Oct 2014 14:10:20 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C92A8BBD; Sun, 5 Oct 2014 14:10:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95EAJVa012472; Sun, 5 Oct 2014 14:10:19 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95EAIVv012467; Sun, 5 Oct 2014 14:10:18 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410051410.s95EAIVv012467@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 5 Oct 2014 14:10:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370083 - in head/devel: . py-codegen X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 14:10:20 -0000 Author: antoine Date: Sun Oct 5 14:10:18 2014 New Revision: 370083 URL: https://svnweb.freebsd.org/changeset/ports/370083 QAT: https://qat.redports.org/buildarchive/r370083/ Log: New port: devel/py-codegen Extension to ast that allows ast to python code generation. WWW: https://github.com/andreif/codegen Added: head/devel/py-codegen/ head/devel/py-codegen/Makefile (contents, props changed) head/devel/py-codegen/distinfo (contents, props changed) head/devel/py-codegen/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Oct 5 14:10:10 2014 (r370082) +++ head/devel/Makefile Sun Oct 5 14:10:18 2014 (r370083) @@ -3635,6 +3635,7 @@ SUBDIR += py-clint SUBDIR += py-clonedigger SUBDIR += py-cmdln + SUBDIR += py-codegen SUBDIR += py-cog SUBDIR += py-coil SUBDIR += py-collective.monkeypatcher Added: head/devel/py-codegen/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-codegen/Makefile Sun Oct 5 14:10:18 2014 (r370083) @@ -0,0 +1,18 @@ +# Created by: antoine@FreeBSD.org +# $FreeBSD$ + +PORTNAME= codegen +PORTVERSION= 1.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Extension to ast that allows ast to python code generation + +LICENSE= BSD3CLAUSE + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/devel/py-codegen/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-codegen/distinfo Sun Oct 5 14:10:18 2014 (r370083) @@ -0,0 +1,2 @@ +SHA256 (codegen-1.0.tar.gz) = d14caccc4175903d79bc5ed2890d140163281b1cdff79f3657e963369e79a6ee +SIZE (codegen-1.0.tar.gz) = 4380 Added: head/devel/py-codegen/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-codegen/pkg-descr Sun Oct 5 14:10:18 2014 (r370083) @@ -0,0 +1,3 @@ +Extension to ast that allows ast to python code generation. + +WWW: https://github.com/andreif/codegen