From owner-svn-ports-head@freebsd.org Thu Oct 20 01:45:27 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2E7CEC18BD9; Thu, 20 Oct 2016 01:45:27 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 08DFD6E6; Thu, 20 Oct 2016 01:45:26 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9K1jQRF049292; Thu, 20 Oct 2016 01:45:26 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9K1jPOo049287; Thu, 20 Oct 2016 01:45:25 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201610200145.u9K1jPOo049287@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Thu, 20 Oct 2016 01:45:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424301 - in head/www: . py-bokeh X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Oct 2016 01:45:27 -0000 Author: cpm Date: Thu Oct 20 01:45:25 2016 New Revision: 424301 URL: https://svnweb.freebsd.org/changeset/ports/424301 Log: [NEW PORT] www/py-bokeh: Interactive Web Plotting for Python 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 Approved by: koobs (mentor) Added: head/www/py-bokeh/ head/www/py-bokeh/Makefile (contents, props changed) head/www/py-bokeh/distinfo (contents, props changed) head/www/py-bokeh/pkg-descr (contents, props changed) head/www/py-bokeh/pkg-message (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Thu Oct 20 01:37:31 2016 (r424300) +++ head/www/Makefile Thu Oct 20 01:45:25 2016 (r424301) @@ -1492,6 +1492,7 @@ SUBDIR += py-bjoern SUBDIR += py-bleach SUBDIR += py-blogofile + SUBDIR += py-bokeh SUBDIR += py-boto3 SUBDIR += py-bottle SUBDIR += py-bottle-cork Added: head/www/py-bokeh/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-bokeh/Makefile Thu Oct 20 01:45:25 2016 (r424301) @@ -0,0 +1,35 @@ +# Created by: Sergey Kozlov +# $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 + +.if ${PYTHON_REL} == 2700 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}futures>3.0.3:devel/py-futures +.endif + +.include Added: head/www/py-bokeh/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-bokeh/distinfo Thu Oct 20 01:45:25 2016 (r424301) @@ -0,0 +1,3 @@ +TIMESTAMP = 1476927265 +SHA256 (bokeh-0.12.3.tar.gz) = e138941b62f59bc48bc5b8d249e90c03fed31c1d5abe47ab2ce9e4c83202f73c +SIZE (bokeh-0.12.3.tar.gz) = 3931255 Added: head/www/py-bokeh/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-bokeh/pkg-descr Thu Oct 20 01:45:25 2016 (r424301) @@ -0,0 +1,8 @@ +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/ Added: head/www/py-bokeh/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-bokeh/pkg-message Thu Oct 20 01:45:25 2016 (r424301) @@ -0,0 +1,2 @@ +The bokeh.charts interface and various examples depend on the Pandas library. +If you want to use this functionality - please install math/py-pandas