From owner-svn-ports-head@freebsd.org Sat Oct 29 12:01:56 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 06C1DC2632A; Sat, 29 Oct 2016 12:01:56 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 B9D78DD0; Sat, 29 Oct 2016 12:01:55 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9TC1scS074032; Sat, 29 Oct 2016 12:01:54 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9TC1sa9074028; Sat, 29 Oct 2016 12:01:54 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201610291201.u9TC1sa9074028@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Sat, 29 Oct 2016 12:01:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424902 - in head/devel: . py-automaton 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.23 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: Sat, 29 Oct 2016 12:01:56 -0000 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 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 +# $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 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