Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 29 Oct 2016 12:01:54 +0000 (UTC)
From:      Roman Bogorodskiy <novel@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r424902 - in head/devel: . py-automaton
Message-ID:  <201610291201.u9TC1sa9074028@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: novel
Date: Sat Oct 29 12:01:54 2016
New Revision: 424902
URL: https://svnweb.freebsd.org/changeset/ports/424902

Log:
  Add py-automaton 1.4.0, friendly state machines for python.
  
  PR:		213769
  Submitted by:	Alexander Nusov <alexander.nusov@nfvexpress.com>

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Oct 29 11:58:16 2016	(r424901)
+++ head/devel/Makefile	Sat Oct 29 12:01:54 2016	(r424902)
@@ -4020,6 +4020,7 @@
     SUBDIR += py-atomiclong
     SUBDIR += py-atomicwrites
     SUBDIR += py-attrs
+    SUBDIR += py-automaton
     SUBDIR += py-avro
     SUBDIR += py-babel
     SUBDIR += py-babelfish

Added: head/devel/py-automaton/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-automaton/Makefile	Sat Oct 29 12:01:54 2016	(r424902)
@@ -0,0 +1,23 @@
+# Created by: Alexander Nusov <alexander.nusov@nfvexpress.com>
+# $FreeBSD$
+
+PORTNAME=	automaton
+PORTVERSION=	1.4.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	alexander.nusov@nfvexpress.com
+COMMENT=	Friendly state machines for python
+
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pbr>=1.6:devel/py-pbr
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}six>=1.9.0:devel/py-six \
+		${PYTHON_PKGNAMEPREFIX}debtcollector>=1.2.0:devel/py-debtcollector \
+		${PYTHON_PKGNAMEPREFIX}prettytable>=0:devel/py-prettytable
+
+NO_ARCH=	yes
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/devel/py-automaton/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-automaton/distinfo	Sat Oct 29 12:01:54 2016	(r424902)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1476648562
+SHA256 (automaton-1.4.0.tar.gz) = 27bc790506057d9ef2bcc6cd36d5039aa28ae1836d1afb14b1c7ed3d94f48aa6
+SIZE (automaton-1.4.0.tar.gz) = 24938

Added: head/devel/py-automaton/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-automaton/pkg-descr	Sat Oct 29 12:01:54 2016	(r424902)
@@ -0,0 +1,8 @@
+Friendly state machines for python. The goal of this library is to provide
+well documented state machine classes and associated utilities. The state
+machine pattern (or the implemented variation there-of) is a commonly used
+pattern and has a multitude of various usages. Some of the usages for this
+library include providing state & transition validation and
+running/scheduling/analyzing the execution of tasks.
+
+WWW: https://pypi.python.org/pypi/automaton



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