From owner-svn-ports-head@freebsd.org Fri May 25 20:40:45 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3D21FEF3B66; Fri, 25 May 2018 20:40:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E534F736B9; Fri, 25 May 2018 20:40:44 +0000 (UTC) (envelope-from sunpoet@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C80A325E9A; Fri, 25 May 2018 20:40:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w4PKeiTX026371; Fri, 25 May 2018 20:40:44 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w4PKeiX2026367; Fri, 25 May 2018 20:40:44 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201805252040.w4PKeiX2026367@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 25 May 2018 20:40:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r470864 - in head/www: . py-folium X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/www: . py-folium X-SVN-Commit-Revision: 470864 X-SVN-Commit-Repository: ports 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.26 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: Fri, 25 May 2018 20:40:45 -0000 Author: sunpoet Date: Fri May 25 20:40:43 2018 New Revision: 470864 URL: https://svnweb.freebsd.org/changeset/ports/470864 Log: Add py-folium 0.5.0 folium builds on the data wrangling strengths of the Python ecosystem and the mapping strengths of the Leaflet.js library. Manipulate your data in Python, then visualize it in a Leaflet map via folium. WWW: https://pypi.org/project/folium/ WWW: https://github.com/python-visualization/folium Added: head/www/py-folium/ head/www/py-folium/Makefile (contents, props changed) head/www/py-folium/distinfo (contents, props changed) head/www/py-folium/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Fri May 25 20:40:01 2018 (r470863) +++ head/www/Makefile Fri May 25 20:40:43 2018 (r470864) @@ -1673,6 +1673,7 @@ SUBDIR += py-flask-wtf SUBDIR += py-flexget SUBDIR += py-flup6 + SUBDIR += py-folium SUBDIR += py-formalchemy SUBDIR += py-formencode SUBDIR += py-frappe-bench Added: head/www/py-folium/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-folium/Makefile Fri May 25 20:40:43 2018 (r470864) @@ -0,0 +1,26 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= folium +PORTVERSION= 0.5.0 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Make beautiful maps with Leaflet.js & Python + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Jinja2>=0:devel/py-Jinja2@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}branca>=0:www/py-branca@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${FLAVOR} + +NO_ARCH= yes +USE_PYTHON= autoplist concurrent distutils +USES= python + +.include Added: head/www/py-folium/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-folium/distinfo Fri May 25 20:40:43 2018 (r470864) @@ -0,0 +1,3 @@ +TIMESTAMP = 1527223222 +SHA256 (folium-0.5.0.tar.gz) = 748944521146d85c6cd6230acf234e885864cd0f42fea3758d655488517e5e6e +SIZE (folium-0.5.0.tar.gz) = 79187 Added: head/www/py-folium/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-folium/pkg-descr Fri May 25 20:40:43 2018 (r470864) @@ -0,0 +1,6 @@ +folium builds on the data wrangling strengths of the Python ecosystem and the +mapping strengths of the Leaflet.js library. Manipulate your data in Python, +then visualize it in a Leaflet map via folium. + +WWW: https://pypi.org/project/folium/ +WWW: https://github.com/python-visualization/folium