From owner-svn-ports-all@freebsd.org Sun Sep 29 07:24:04 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 50A7CF73D9; Sun, 29 Sep 2019 07:24:04 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46gxq81G46z4Dv1; Sun, 29 Sep 2019 07:24:04 +0000 (UTC) (envelope-from pi@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0FB9BE9EE; Sun, 29 Sep 2019 07:24:04 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8T7O3Bw042257; Sun, 29 Sep 2019 07:24:03 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8T7O3J0042253; Sun, 29 Sep 2019 07:24:03 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201909290724.x8T7O3J0042253@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 29 Sep 2019 07:24:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r513195 - in head/devel: . py-transitions X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/devel: . py-transitions X-SVN-Commit-Revision: 513195 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Sep 2019 07:24:04 -0000 Author: pi Date: Sun Sep 29 07:24:03 2019 New Revision: 513195 URL: https://svnweb.freebsd.org/changeset/ports/513195 Log: New port: devel/py-transitions A lightweight, object-oriented state machine implementation in Python. Compatible with Python 2.7+ and 3.0+. WWW: https://github.com/pytransitions/transitions PR: 240894 Submitted by: Sergey Akhmatov Added: head/devel/py-transitions/ head/devel/py-transitions/Makefile (contents, props changed) head/devel/py-transitions/distinfo (contents, props changed) head/devel/py-transitions/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Sep 29 07:21:24 2019 (r513194) +++ head/devel/Makefile Sun Sep 29 07:24:03 2019 (r513195) @@ -5125,6 +5125,7 @@ SUBDIR += py-traitlets SUBDIR += py-traits SUBDIR += py-transaction + SUBDIR += py-transitions SUBDIR += py-tree-format SUBDIR += py-trollius SUBDIR += py-ttystatus Added: head/devel/py-transitions/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-transitions/Makefile Sun Sep 29 07:24:03 2019 (r513195) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= transitions +DISTVERSION= 0.7.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sergey@akhmatov.ru +COMMENT= Lightweight, object-oriented Python state machine implementation + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/devel/py-transitions/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-transitions/distinfo Sun Sep 29 07:24:03 2019 (r513195) @@ -0,0 +1,3 @@ +TIMESTAMP = 1569669785 +SHA256 (transitions-0.7.1.tar.gz) = b73015080833b753cbb4a10f51f8234924ddfbdbaf33539fee4e4f3abfff454d +SIZE (transitions-0.7.1.tar.gz) = 1318322 Added: head/devel/py-transitions/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-transitions/pkg-descr Sun Sep 29 07:24:03 2019 (r513195) @@ -0,0 +1,4 @@ +A lightweight, object-oriented state machine implementation in Python. +Compatible with Python 2.7+ and 3.0+. + +WWW: https://github.com/pytransitions/transitions