aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesús Daniel Colmenares Oviedo <dtxdf@FreeBSD.org>2025-06-03 18:01:08 +0000
committerJesús Daniel Colmenares Oviedo <dtxdf@FreeBSD.org>2025-06-03 20:32:48 +0000
commit71e01cad1094862bca01b9199d7a63a1e83b3c3a (patch)
treece4936e658f8281a7e552028771970c8aaf87bb1
parent6b35562463c0d51b2509344c18dce653c9750196 (diff)
devel/py-eliot: New port: Logging library that tells you why it happened
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. PR: 287127 Approved by: acm (mentor)
-rw-r--r--devel/Makefile1
-rw-r--r--devel/py-eliot/Makefile25
-rw-r--r--devel/py-eliot/distinfo3
-rw-r--r--devel/py-eliot/pkg-descr4
4 files changed, 33 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile
index 1bbf41f48977..76f6a94fa4f2 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -4837,6 +4837,7 @@
SUBDIR += py-editables
SUBDIR += py-editdistance
SUBDIR += py-ejson
+ SUBDIR += py-eliot
SUBDIR += py-enlighten
SUBDIR += py-entrypoint2
SUBDIR += py-entrypoints
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.