diff options
Diffstat (limited to 'devel/py-eliot')
-rw-r--r-- | devel/py-eliot/Makefile | 25 | ||||
-rw-r--r-- | devel/py-eliot/distinfo | 3 | ||||
-rw-r--r-- | devel/py-eliot/pkg-descr | 4 |
3 files changed, 32 insertions, 0 deletions
diff --git a/devel/py-eliot/Makefile b/devel/py-eliot/Makefile new file mode 100644 index 000000000000..59265efee720 --- /dev/null +++ b/devel/py-eliot/Makefile @@ -0,0 +1,25 @@ +PORTNAME= eliot +DISTVERSION= 1.17.5 +CATEGORIES= devel python +MASTER_SITES= PYPI +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dtxdf@FreeBSD.org +COMMENT= Logging library that tells you why it happened +WWW= https://pypi.org/project/${PORTNAME} \ + https://github.com/itamarst/${PORTNAME} + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}boltons>=0:devel/py-boltons@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}orjson>=0:devel/py-orjson@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pyrsistent>=0:devel/py-pyrsistent@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}zope.interface>=0:devel/py-zope.interface@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include <bsd.port.mk> diff --git a/devel/py-eliot/distinfo b/devel/py-eliot/distinfo new file mode 100644 index 000000000000..148ded67282e --- /dev/null +++ b/devel/py-eliot/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1748365250 +SHA256 (eliot-1.17.5.tar.gz) = 6b3b17c60d8cbb9285369b61601bc5554aad023a153fc7bccadb1538968ea767 +SIZE (eliot-1.17.5.tar.gz) = 160097 diff --git a/devel/py-eliot/pkg-descr b/devel/py-eliot/pkg-descr new file mode 100644 index 000000000000..60c5023dfe3b --- /dev/null +++ b/devel/py-eliot/pkg-descr @@ -0,0 +1,4 @@ +eliot is a Python logging system that outputs causal chains of +actions: actions can spawn other actions, and eventually they either +succeed or fail. The resulting logs tell you the story of what your +software did: what happened, and what caused it. |