Date: Sat, 18 Feb 2017 07:34:43 +0000 (UTC) From: Dmitry Sivachenko <demon@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r434330 - in head/devel: . py-Automat py-Automat/files Message-ID: <201702180734.v1I7Yh7c069591@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: demon Date: Sat Feb 18 07:34:43 2017 New Revision: 434330 URL: https://svnweb.freebsd.org/changeset/ports/434330 Log: New port: py-Automat Automat is a library for concise, idiomatic Python expression of finite-state automata (particularly deterministic finite-state transducers). PR: 217186 Submitted by: John W. O'Brien <john@saltant.com> Added: head/devel/py-Automat/ head/devel/py-Automat/Makefile (contents, props changed) head/devel/py-Automat/distinfo (contents, props changed) head/devel/py-Automat/files/ head/devel/py-Automat/files/patch-setup.py (contents, props changed) head/devel/py-Automat/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Feb 18 07:28:02 2017 (r434329) +++ head/devel/Makefile Sat Feb 18 07:34:43 2017 (r434330) @@ -3995,6 +3995,7 @@ SUBDIR += pwlib SUBDIR += py-Acquisition SUBDIR += py-AddOns + SUBDIR += py-Automat SUBDIR += py-Breve SUBDIR += py-BytecodeAssembler SUBDIR += py-DateTime Added: head/devel/py-Automat/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-Automat/Makefile Sat Feb 18 07:34:43 2017 (r434330) @@ -0,0 +1,26 @@ +# Created by: John W. O'Brien <john@saltant.com> +# $FreeBSD$ + +PORTNAME= Automat +PORTVERSION= 0.5.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= john@saltant.com +COMMENT= Finite-state machines in Python + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>0:devel/py-setuptools_scm \ + ${PYTHON_PKGNAMEPREFIX}m2r>0:textproc/py-m2r +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}attrs>0:devel/py-attrs \ + ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/devel/py-Automat/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-Automat/distinfo Sat Feb 18 07:34:43 2017 (r434330) @@ -0,0 +1,3 @@ +TIMESTAMP = 1487351142 +SHA256 (Automat-0.5.0.tar.gz) = 4889ec6763377432ec4db265ad552bbe956768ea3fff39014855308ba79dd7c2 +SIZE (Automat-0.5.0.tar.gz) = 32599 Added: head/devel/py-Automat/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-Automat/files/patch-setup.py Sat Feb 18 07:34:43 2017 (r434330) @@ -0,0 +1,13 @@ +--- setup.py.orig 2017-02-18 00:40:15 UTC ++++ setup.py +@@ -39,8 +39,8 @@ setup( + "automat-visualize = automat._visualize:tool" + ], + }, +- author_name='Glyph', +- author_mail='glyph@twistedmatrix.com', ++ author='Glyph', ++ author_email='glyph@twistedmatrix.com', + include_package_data=True, + license="MIT", + keywords='fsm finite state machine automata', Added: head/devel/py-Automat/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-Automat/pkg-descr Sat Feb 18 07:34:43 2017 (r434330) @@ -0,0 +1,5 @@ +Automat is a library for concise, idiomatic Python expression of +finite-state automata (particularly deterministic finite-state +transducers). + +WWW: https://github.com/glyph/Automat
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702180734.v1I7Yh7c069591>