Pickle tracebacks and raise exceptions with pickled tracebacks in different processes. This allows better error handling when running code over multiple processes (imagine multiprocessing, billiard, futures, celery etc). Parse traceback strings and raise with the parsed tracebacks. WWW: https://pypi.python.org/pypi/tblib PR: 211051 Submitted by: Danilo G. Baio <dbaio@bsd.com.br>
19 lines
355 B
Makefile
19 lines
355 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= tblib
|
|
PORTVERSION= 1.3.0
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= dbaio@bsd.com.br
|
|
COMMENT= Traceback serialization library in Python
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
NO_ARCH= yes
|
|
USES= python
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
.include <bsd.port.mk>
|