summaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorYuri Victorovich <yuri@FreeBSD.org>2019-01-21 20:30:49 +0000
committerYuri Victorovich <yuri@FreeBSD.org>2019-01-21 20:30:49 +0000
commit7374dd52357b983aa710d62331e65c10b4e37385 (patch)
tree0608fabb10b9293cdbc803032cba41b6aa629332 /graphics
parentmisc/py-fast-histogram: Fix categories (diff)
New port: graphics/py-mpl-scatter-density: Matplotlib helpers to make density scatter plots
Notes
Notes: svn path=/head/; revision=490896
Diffstat (limited to 'graphics')
-rw-r--r--graphics/Makefile1
-rw-r--r--graphics/py-mpl-scatter-density/Makefile24
-rw-r--r--graphics/py-mpl-scatter-density/distinfo3
-rw-r--r--graphics/py-mpl-scatter-density/pkg-descr7
4 files changed, 35 insertions, 0 deletions
diff --git a/graphics/Makefile b/graphics/Makefile
index 800e1788295d..4f058298788a 100644
--- a/graphics/Makefile
+++ b/graphics/Makefile
@@ -846,6 +846,7 @@
SUBDIR += py-mayavi
SUBDIR += py-mcomix
SUBDIR += py-ming
+ SUBDIR += py-mpl-scatter-density
SUBDIR += py-nwdiag
SUBDIR += py-open3d-python
SUBDIR += py-opencolorio
diff --git a/graphics/py-mpl-scatter-density/Makefile b/graphics/py-mpl-scatter-density/Makefile
new file mode 100644
index 000000000000..e6b1b85bb5be
--- /dev/null
+++ b/graphics/py-mpl-scatter-density/Makefile
@@ -0,0 +1,24 @@
+# $FreeBSD$
+
+PORTNAME= mpl-scatter-density
+PORTVERSION= 0.4
+CATEGORIES= graphics python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= yuri@FreeBSD.org
+COMMENT= Matplotlib helpers to make density scatter plots
+
+LICENSE= BSD2CLAUSE
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+RUN_DEPENDS= ${PYNUMPY} \
+ ${PYTHON_PKGNAMEPREFIX}fast-histogram>=0.3:misc/py-fast-histogram@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}matplotlib>=1.5:math/py-matplotlib@${PY_FLAVOR}
+
+USES= python
+USE_PYTHON= distutils autoplist
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
diff --git a/graphics/py-mpl-scatter-density/distinfo b/graphics/py-mpl-scatter-density/distinfo
new file mode 100644
index 000000000000..31fe9990316e
--- /dev/null
+++ b/graphics/py-mpl-scatter-density/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1548100987
+SHA256 (mpl-scatter-density-0.4.tar.gz) = 0ddffbfa0e54fb9ea0032595ef868870a77ef2e87fb1fce935527026fb01099d
+SIZE (mpl-scatter-density-0.4.tar.gz) = 6185275
diff --git a/graphics/py-mpl-scatter-density/pkg-descr b/graphics/py-mpl-scatter-density/pkg-descr
new file mode 100644
index 000000000000..6d2386196537
--- /dev/null
+++ b/graphics/py-mpl-scatter-density/pkg-descr
@@ -0,0 +1,7 @@
+The mpl-scatter-density mini-package provides functionality to make it easy to
+make your own scatter density maps, both for interactive and non-interactive
+use. Fast. The following animation shows real-time interactive use with 10
+million points, but interactive performance is still good even with 100 million
+points (and more if you have enough RAM).
+
+WWW: https://github.com/astrofrog/mpl-scatter-density