svn commit: r320606 - in head/devel: . py-fsm
Steven Kreuzer
skreuzer at FreeBSD.org
Tue Jun 11 15:41:15 UTC 2013
Author: skreuzer
Date: Tue Jun 11 15:41:13 2013
New Revision: 320606
URL: http://svnweb.freebsd.org/changeset/ports/320606
Log:
Python module for building and describing deterministic finite-state automata.
WWW: http://code.google.com/p/python-fsm/
Added:
head/devel/py-fsm/
head/devel/py-fsm/Makefile (contents, props changed)
head/devel/py-fsm/distinfo (contents, props changed)
head/devel/py-fsm/pkg-descr (contents, props changed)
head/devel/py-fsm/pkg-plist (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Tue Jun 11 15:25:53 2013 (r320605)
+++ head/devel/Makefile Tue Jun 11 15:41:13 2013 (r320606)
@@ -3498,6 +3498,7 @@
SUBDIR += py-fortran
SUBDIR += py-freebsd
SUBDIR += py-fs
+ SUBDIR += py-fsm
SUBDIR += py-fudge
SUBDIR += py-funcparserlib
SUBDIR += py-fusefs
Added: head/devel/py-fsm/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-fsm/Makefile Tue Jun 11 15:41:13 2013 (r320606)
@@ -0,0 +1,22 @@
+# $FreeBSD$
+
+PORTNAME= fsm
+PORTVERSION= 0.01
+CATEGORIES= devel python
+MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
+PROJECTHOST= python-${PORTNAME}
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+DISTNAME= python-${PORTNAME}-${PORTVERSION}
+
+MAINTAINER= skreuzer at FreeBSD.org
+COMMENT= Pure Python Implementation of a Finite State Machine
+
+LICENSE= BSD
+
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}graphviz>=1.0:${PORTSDIR}/graphics/py-graphviz
+
+USE_PYTHON= yes
+USE_PYDISTUTILS= yes
+PYDISTUTILS_EGGINFO= python_${PORTNAME}-${PORTVERSION}-py${PYTHON_VER}.egg-info
+
+.include <bsd.port.mk>
Added: head/devel/py-fsm/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-fsm/distinfo Tue Jun 11 15:41:13 2013 (r320606)
@@ -0,0 +1,2 @@
+SHA256 (python-fsm-0.01.tar.gz) = 0cd9303d50d5b449a46069b73c5c7f67399af4579652dbdfdec5aeac5d9e5689
+SIZE (python-fsm-0.01.tar.gz) = 4038
Added: head/devel/py-fsm/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-fsm/pkg-descr Tue Jun 11 15:41:13 2013 (r320606)
@@ -0,0 +1,3 @@
+Python module for building and describing deterministic finite-state automata.
+
+WWW: http://code.google.com/p/python-fsm/
Added: head/devel/py-fsm/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-fsm/pkg-plist Tue Jun 11 15:41:13 2013 (r320606)
@@ -0,0 +1,3 @@
+%%PYTHON_SITELIBDIR%%/fsm.py
+%%PYTHON_SITELIBDIR%%/fsm.pyc
+%%PYTHON_SITELIBDIR%%/fsm.pyo
More information about the svn-ports-head
mailing list