From owner-svn-ports-head@freebsd.org Mon Feb 22 19:00:38 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 E4784AB1B4B; Mon, 22 Feb 2016 19:00:37 +0000 (UTC) (envelope-from gblach@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 A2FE21BC2; Mon, 22 Feb 2016 19:00:37 +0000 (UTC) (envelope-from gblach@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1MJ0a7M064466; Mon, 22 Feb 2016 19:00:36 GMT (envelope-from gblach@FreeBSD.org) Received: (from gblach@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1MJ0a52064462; Mon, 22 Feb 2016 19:00:36 GMT (envelope-from gblach@FreeBSD.org) Message-Id: <201602221900.u1MJ0a52064462@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gblach set sender to gblach@FreeBSD.org using -f From: Grzegorz Blach Date: Mon, 22 Feb 2016 19:00:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r409363 - in head/devel: . py-arrow 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.20 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: Mon, 22 Feb 2016 19:00:38 -0000 Author: gblach Date: Mon Feb 22 19:00:36 2016 New Revision: 409363 URL: https://svnweb.freebsd.org/changeset/ports/409363 Log: New port: devel/py-arrow Arrow is a Python library that offers a sensible, human-friendly approach to creating, manipulating, formatting and converting dates, times, and timestamps. It implements and updates the datetime type, plugging gaps in functionality, and provides an intelligent module API that supports many common creation scenarios. Simply put, it helps you work with dates and times with fewer imports and a lot less code. Added: head/devel/py-arrow/ head/devel/py-arrow/Makefile (contents, props changed) head/devel/py-arrow/distinfo (contents, props changed) head/devel/py-arrow/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Feb 22 18:30:03 2016 (r409362) +++ head/devel/Makefile Mon Feb 22 19:00:36 2016 (r409363) @@ -3925,6 +3925,7 @@ SUBDIR += py-argh SUBDIR += py-argparse SUBDIR += py-args + SUBDIR += py-arrow SUBDIR += py-aspects SUBDIR += py-aspyct SUBDIR += py-astroid Added: head/devel/py-arrow/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-arrow/Makefile Mon Feb 22 19:00:36 2016 (r409363) @@ -0,0 +1,21 @@ +# Created by: Grzegorz Blach +# $FreeBSD$ + +PORTNAME= arrow +PORTVERSION= 0.7.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= gblach@FreeBSD.org +COMMENT= Better dates and times for Python + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dateutil>=2.1:${PORTSDIR}/devel/py-dateutil + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/devel/py-arrow/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-arrow/distinfo Mon Feb 22 19:00:36 2016 (r409363) @@ -0,0 +1,2 @@ +SHA256 (arrow-0.7.0.tar.gz) = 2a5333007af117a05a488b69c9ae15c26c23eefa25f084992b025d387e03a17b +SIZE (arrow-0.7.0.tar.gz) = 75385 Added: head/devel/py-arrow/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-arrow/pkg-descr Mon Feb 22 19:00:36 2016 (r409363) @@ -0,0 +1,8 @@ +Arrow is a Python library that offers a sensible, human-friendly approach +to creating, manipulating, formatting and converting dates, times, +and timestamps. It implements and updates the datetime type, plugging gaps +in functionality, and provides an intelligent module API that supports +many common creation scenarios. Simply put, it helps you work with dates +and times with fewer imports and a lot less code. + +WWW: https://arrow.readthedocs.org/en/latest/