aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPo-Chuan Hsieh <sunpoet@FreeBSD.org>2026-04-05 16:51:03 +0000
committerPo-Chuan Hsieh <sunpoet@FreeBSD.org>2026-04-05 17:17:55 +0000
commitfb52d1c8984ce78fe2976e9fb5258013fd7bf37b (patch)
tree95f93b1f39c2f40f15ab8b31a8c04b30f22907ca
parentb919d4c09d12fce7251b0095ef7d78f1495ca13e (diff)
devel/py-dask-geopandas: Add py-dask-geopandas 0.5.0
Dask-GeoPandas is a project merging the geospatial capabilities of GeoPandas and scalability of Dask. GeoPandas is an open source project designed to make working with geospatial data in Python easier. GeoPandas extends the datatypes used by pandas to allow spatial operations on geometric types. Dask provides advanced parallelism and distributed out-of-core computation with a dask.dataframe module designed to scale pandas. Since GeoPandas is an extension to the pandas DataFrame, the same way Dask scales pandas can also be applied to GeoPandas. This project is a bridge between Dask and GeoPandas and offers geospatial capabilities of GeoPandas backed by Dask.
-rw-r--r--devel/Makefile1
-rw-r--r--devel/py-dask-geopandas/Makefile28
-rw-r--r--devel/py-dask-geopandas/distinfo3
-rw-r--r--devel/py-dask-geopandas/pkg-descr11
4 files changed, 43 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile
index 1a62d4692898..a35cae82a90d 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -4813,6 +4813,7 @@
SUBDIR += py-dask
SUBDIR += py-dask-awkward
SUBDIR += py-dask-expr
+ SUBDIR += py-dask-geopandas
SUBDIR += py-dask-histogram
SUBDIR += py-dataclass-array
SUBDIR += py-dataclasses-json
diff --git a/devel/py-dask-geopandas/Makefile b/devel/py-dask-geopandas/Makefile
new file mode 100644
index 000000000000..2032a5cf8bb6
--- /dev/null
+++ b/devel/py-dask-geopandas/Makefile
@@ -0,0 +1,28 @@
+PORTNAME= dask-geopandas
+PORTVERSION= 0.5.0
+CATEGORIES= devel python
+MASTER_SITES= PYPI
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+DISTNAME= dask_geopandas-${PORTVERSION}
+
+MAINTAINER= sunpoet@FreeBSD.org
+COMMENT= Parallel GeoPandas with Dask
+WWW= https://dask-geopandas.readthedocs.io/en/stable/ \
+ https://github.com/geopandas/dask-geopandas
+
+LICENSE= BSD3CLAUSE
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=42:devel/py-setuptools@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dask>=2025.1.0:devel/py-dask@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}geopandas>=0.14.3:graphics/py-geopandas@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}packaging>=0:devel/py-packaging@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}shapely>=2.0:devel/py-shapely@${PY_FLAVOR}
+
+USES= python
+USE_PYTHON= autoplist concurrent pep517
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
diff --git a/devel/py-dask-geopandas/distinfo b/devel/py-dask-geopandas/distinfo
new file mode 100644
index 000000000000..4967d20fdadd
--- /dev/null
+++ b/devel/py-dask-geopandas/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1773966660
+SHA256 (dask_geopandas-0.5.0.tar.gz) = b1fc2a041550d609b87db9fcfad2e8217f7336e3436415da11ba9dc8437272b1
+SIZE (dask_geopandas-0.5.0.tar.gz) = 63726
diff --git a/devel/py-dask-geopandas/pkg-descr b/devel/py-dask-geopandas/pkg-descr
new file mode 100644
index 000000000000..3a0d2d7cdd53
--- /dev/null
+++ b/devel/py-dask-geopandas/pkg-descr
@@ -0,0 +1,11 @@
+Dask-GeoPandas is a project merging the geospatial capabilities of GeoPandas and
+scalability of Dask. GeoPandas is an open source project designed to make
+working with geospatial data in Python easier. GeoPandas extends the datatypes
+used by pandas to allow spatial operations on geometric types. Dask provides
+advanced parallelism and distributed out-of-core computation with a
+dask.dataframe module designed to scale pandas. Since GeoPandas is an extension
+to the pandas DataFrame, the same way Dask scales pandas can also be applied to
+GeoPandas.
+
+This project is a bridge between Dask and GeoPandas and offers geospatial
+capabilities of GeoPandas backed by Dask.