Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 22 Feb 2016 19:00:36 +0000 (UTC)
From:      Grzegorz Blach <gblach@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r409363 - in head/devel: . py-arrow
Message-ID:  <201602221900.u1MJ0a52064462@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <gblach@FreeBSD.org>
+# $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 <bsd.port.mk>

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/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602221900.u1MJ0a52064462>