mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
29f80ab3d8
Bokeh is a Python interactive visualization library that targets modern web browsers for presentation. Its goal is to provide elegant, concise construction of novel graphics in the style of D3.js, and to extend this capability with high-performance interactivity over very large or streaming datasets. Bokeh can help anyone who would like to quickly and easily create interactive plots, dashboards, and data applications. WWW: http://bokeh.pydata.org/ PR: 213578 Submitted by: Sergey Kozlov <kozlov.sergey.404@gmail.com> Approved by: koobs (mentor)
36 lines
924 B
Makefile
36 lines
924 B
Makefile
# Created by: Sergey Kozlov <kozlov.sergey.404@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= bokeh
|
|
PORTVERSION= 0.12.3
|
|
CATEGORIES= www python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= kozlov.sergey.404@gmail.com
|
|
COMMENT= Interactive Web Plotting for Python
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.5.2:devel/py-six \
|
|
${PYTHON_PKGNAMEPREFIX}requests>=1.2.3:www/py-requests \
|
|
${PYTHON_PKGNAMEPREFIX}yaml>=3.10:devel/py-yaml \
|
|
${PYTHON_PKGNAMEPREFIX}dateutil>=2.1:devel/py-dateutil \
|
|
${PYTHON_PKGNAMEPREFIX}Jinja2>=2.7:devel/py-Jinja2 \
|
|
${PYNUMPY} \
|
|
${PYTHON_PKGNAMEPREFIX}tornado>=4.3:www/py-tornado
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist distutils concurrent
|
|
|
|
NO_ARCH= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PYTHON_REL} == 2700
|
|
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}futures>3.0.3:devel/py-futures
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|