Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 29 Nov 2013 00:15:57 +0000 (UTC)
From:      William Grzybowski <wg@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r335131 - in head/devel: . py-pycparser
Message-ID:  <201311290015.rAT0FvvW079315@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: wg
Date: Fri Nov 29 00:15:57 2013
New Revision: 335131
URL: http://svnweb.freebsd.org/changeset/ports/335131

Log:
  devel/py-pycparser: C parser in Python
  
  pycparser is a complete parser of the C language, written in pure Python using
  the PLY parsing library. It parses C code into an AST and can serve as a
  front-end for C compilers or analysis tools.
  
  WWW: https://github.com/eliben/pycparser

Added:
  head/devel/py-pycparser/
  head/devel/py-pycparser/Makefile   (contents, props changed)
  head/devel/py-pycparser/distinfo   (contents, props changed)
  head/devel/py-pycparser/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Thu Nov 28 23:57:53 2013	(r335130)
+++ head/devel/Makefile	Fri Nov 29 00:15:57 2013	(r335131)
@@ -3696,6 +3696,7 @@
     SUBDIR += py-pycalendar
     SUBDIR += py-pycallgraph
     SUBDIR += py-pycerberus
+    SUBDIR += py-pycparser
     SUBDIR += py-pydasm
     SUBDIR += py-pyechonest
     SUBDIR += py-pyev

Added: head/devel/py-pycparser/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pycparser/Makefile	Fri Nov 29 00:15:57 2013	(r335131)
@@ -0,0 +1,19 @@
+# Created by: William Grzybowski <wg@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	pycparser
+PORTVERSION=	2.10
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	wg@FreeBSD.org
+COMMENT=	C parser in Python
+
+LICENSE=	BSD
+
+USE_PYTHON=	yes
+USE_PYDISTUTILS=	yes
+PYDISTUTILS_AUTOPLIST=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-pycparser/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pycparser/distinfo	Fri Nov 29 00:15:57 2013	(r335131)
@@ -0,0 +1,2 @@
+SHA256 (pycparser-2.10.tar.gz) = 957d98b661c0b64b580ab6f94b125e09b6714154ee51de40bca16d3f0076b86c
+SIZE (pycparser-2.10.tar.gz) = 206166

Added: head/devel/py-pycparser/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pycparser/pkg-descr	Fri Nov 29 00:15:57 2013	(r335131)
@@ -0,0 +1,5 @@
+pycparser is a complete parser of the C language, written in pure Python using
+the PLY parsing library. It parses C code into an AST and can serve as a
+front-end for C compilers or analysis tools.
+
+WWW: https://github.com/eliben/pycparser



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311290015.rAT0FvvW079315>