aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuri Victorovich <yuri@FreeBSD.org>2026-04-19 17:45:30 +0000
committerYuri Victorovich <yuri@FreeBSD.org>2026-04-19 17:49:34 +0000
commitcd7b91a56a20ee2aaf37c3f48e8f386b42b82cd4 (patch)
tree71fc332605b81c10f0f362ca718f5ba52c4e4287
parentec4e4a60ecfaf85440cb60164168f84b66a12311 (diff)
devel/py-dpath: New port: Filesystem-like pathing and searching for dictionaries
-rw-r--r--devel/Makefile1
-rw-r--r--devel/py-dpath/Makefile19
-rw-r--r--devel/py-dpath/distinfo3
-rw-r--r--devel/py-dpath/pkg-descr3
4 files changed, 26 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile
index 52afd852b15d..c4267d589b2d 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -4892,6 +4892,7 @@
SUBDIR += py-dotmap
SUBDIR += py-dotted
SUBDIR += py-dotty-dict
+ SUBDIR += py-dpath
SUBDIR += py-dpcontracts
SUBDIR += py-dtfabric
SUBDIR += py-dukpy
diff --git a/devel/py-dpath/Makefile b/devel/py-dpath/Makefile
new file mode 100644
index 000000000000..588cbe874aa9
--- /dev/null
+++ b/devel/py-dpath/Makefile
@@ -0,0 +1,19 @@
+PORTNAME= dpath
+DISTVERSION= 2.2.0
+CATEGORIES= devel python
+MASTER_SITES= PYPI
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= yuri@FreeBSD.org
+COMMENT= Filesystem-like pathing and searching for dictionaries
+WWW= https://github.com/dpath-maintainers/dpath-python
+
+LICENSE= MIT
+LICENSE_FILE= ${WRKSRC}/LICENSE.txt
+
+USES= python
+USE_PYTHON= autoplist distutils
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
diff --git a/devel/py-dpath/distinfo b/devel/py-dpath/distinfo
new file mode 100644
index 000000000000..7cd569f52e95
--- /dev/null
+++ b/devel/py-dpath/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1776617668
+SHA256 (dpath-2.2.0.tar.gz) = 34f7e630dc55ea3f219e555726f5da4b4b25f2200319c8e6902c394258dd6a3e
+SIZE (dpath-2.2.0.tar.gz) = 28266
diff --git a/devel/py-dpath/pkg-descr b/devel/py-dpath/pkg-descr
new file mode 100644
index 000000000000..d043988be7a7
--- /dev/null
+++ b/devel/py-dpath/pkg-descr
@@ -0,0 +1,3 @@
+dpath is a Python library for accessing and searching dictionaries via
+/slashed/paths. It enables querying, setting, and iterating over dictionaries
+using glob-like patterns.