- Update to 1.15.0
- Added LICENSE_FILE - Sorted variables a bit according to the PHB - Rebased pkg-descr - Updated WWW PR: 230131 Submitted by: ndowens@yahoo.com, freebsd_ports@k-worx.org Approved by: maintainer
This commit is contained in:
parent
529c1282f8
commit
95dc10b704
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=489953
3 changed files with 19 additions and 17 deletions
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= automaton
|
||||
PORTVERSION= 1.7.0
|
||||
PORTVERSION= 1.14.0
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
@ -11,15 +11,16 @@ MAINTAINER= alexander.nusov@nfvexpress.com
|
|||
COMMENT= Friendly state machines for python
|
||||
|
||||
LICENSE= APACHE20
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=1.8:devel/py-pbr@${PY_FLAVOR}
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.9.0:devel/py-six@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}debtcollector>=1.2.0:devel/py-debtcollector@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}prettytable>=0:devel/py-prettytable@${PY_FLAVOR}
|
||||
|
||||
NO_ARCH= yes
|
||||
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=2.0.0:devel/py-pbr@${PY_FLAVOR}
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=2.0.0:devel/py-pbr@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}prettytable>=0.7.1:devel/py-prettytable@${PY_FLAVOR}
|
||||
|
||||
USES= python
|
||||
USE_PYTHON= autoplist distutils
|
||||
|
||||
NO_ARCH= yes
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1485277112
|
||||
SHA256 (automaton-1.7.0.tar.gz) = 104a07653e5f94e9bfa0a1930c091b7876f85df758ab31e05f2e44a9d2e2802f
|
||||
SIZE (automaton-1.7.0.tar.gz) = 30244
|
||||
TIMESTAMP = 1538381054
|
||||
SHA256 (automaton-1.14.0.tar.gz) = 7c2e9e784ecab01cb00909f86c88e4e9de74d95adc28cd6beb9586b6ad93ddc4
|
||||
SIZE (automaton-1.14.0.tar.gz) = 30412
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
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.
|
||||
Friendly state machines for Python. The goal of this library is to provide well
|
||||
documented state machine classes and associated utilities.
|
||||
|
||||
WWW: https://pypi.org/project/automaton/
|
||||
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://docs.openstack.org/automaton
|
||||
|
|
Loading…
Reference in a new issue