Add py-taskflow3 3.8.0 (copied from py-taskflow)
- Add PORTSCOUT
This commit is contained in:
parent
b0f053b414
commit
ef91333d32
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=525524
4 changed files with 66 additions and 0 deletions
|
@ -5023,6 +5023,7 @@
|
|||
SUBDIR += py-tapi
|
||||
SUBDIR += py-tarantool-queue
|
||||
SUBDIR += py-taskflow
|
||||
SUBDIR += py-taskflow3
|
||||
SUBDIR += py-tblib
|
||||
SUBDIR += py-tconfpy
|
||||
SUBDIR += py-tempora
|
||||
|
|
56
devel/py-taskflow3/Makefile
Normal file
56
devel/py-taskflow3/Makefile
Normal file
|
@ -0,0 +1,56 @@
|
|||
# Created by: Alexander Nusov <alexander.nusov@nfvexpress.com>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= taskflow
|
||||
PORTVERSION= 3.8.0
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
PKGNAMESUFFIX= 3
|
||||
|
||||
MAINTAINER= sunpoet@FreeBSD.org
|
||||
COMMENT= Taskflow structured state management library
|
||||
|
||||
LICENSE= APACHE20
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=2.0.0:devel/py-pbr@${PY_FLAVOR}
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}automaton>=1.9.0:devel/py-automaton@${PY_FLAVOR} \
|
||||
${PY_ENUM34} \
|
||||
${PYTHON_PKGNAMEPREFIX}fasteners>=0.7.0:devel/py-fasteners@${PY_FLAVOR} \
|
||||
${PY_FUTURES} \
|
||||
${PYTHON_PKGNAMEPREFIX}futurist>=1.2.0:devel/py-futurist@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}jsonschema>=2.6.0:devel/py-jsonschema@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}oslo.serialization>=2.18.0:devel/py-oslo.serialization@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}oslo.utils>=3.33.0:devel/py-oslo.utils@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pbr>=2.0.0:devel/py-pbr@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pydot>=1.2.4:graphics/py-pydot@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}stevedore>=1.20.0:devel/py-stevedore@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}tenacity>=4.4.0:devel/py-tenacity@${PY_FLAVOR}
|
||||
|
||||
USES= python
|
||||
USE_PYTHON= autoplist concurrent distutils
|
||||
|
||||
NO_ARCH= yes
|
||||
|
||||
PORTSCOUT= limit:^3\.
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${PYTHON_REL} < 3000
|
||||
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}contextlib2>=0.4.0:devel/py-contextlib2@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}networkx>=2.1.0,1<2.3,1:math/py-networkx@${PY_FLAVOR}
|
||||
.endif
|
||||
|
||||
.if ${PYTHON_REL} >= 3400
|
||||
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}networkx>=2.1.0,1:math/py-networkx@${PY_FLAVOR}
|
||||
.endif
|
||||
|
||||
.if ${PYTHON_REL} < 3500
|
||||
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}cachetools3>=2.0.0:devel/py-cachetools3@${PY_FLAVOR}
|
||||
.else
|
||||
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}cachetools>=2.0.0:devel/py-cachetools@${PY_FLAVOR}
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
3
devel/py-taskflow3/distinfo
Normal file
3
devel/py-taskflow3/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1578401162
|
||||
SHA256 (taskflow-3.8.0.tar.gz) = d70c1b3e7fca612a4e05342bae505808a99257864980342f4125b451b3d171e2
|
||||
SIZE (taskflow-3.8.0.tar.gz) = 1063459
|
6
devel/py-taskflow3/pkg-descr
Normal file
6
devel/py-taskflow3/pkg-descr
Normal file
|
@ -0,0 +1,6 @@
|
|||
TaskFlow is a library to do [jobs, tasks, flows] in a highly available, easy to
|
||||
understand and declarative manner (and more!) to be used with OpenStack and
|
||||
other projects.
|
||||
|
||||
WWW: https://docs.openstack.org/taskflow/latest/
|
||||
WWW: https://github.com/openstack/taskflow
|
Loading…
Reference in a new issue