From owner-svn-ports-head@freebsd.org Mon Jul 4 15:25:18 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 23E2DB910C1; Mon, 4 Jul 2016 15:25:18 +0000 (UTC) (envelope-from matthew@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 CCC7021DC; Mon, 4 Jul 2016 15:25:17 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u64FPHhc051072; Mon, 4 Jul 2016 15:25:17 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u64FPG8J051068; Mon, 4 Jul 2016 15:25:16 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201607041525.u64FPG8J051068@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Mon, 4 Jul 2016 15:25:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418035 - in head/textproc: . py-agate 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.22 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, 04 Jul 2016 15:25:18 -0000 Author: matthew Date: Mon Jul 4 15:25:16 2016 New Revision: 418035 URL: https://svnweb.freebsd.org/changeset/ports/418035 Log: agate is a Python data analysis library that is optimized for humans instead of machines. It is an alternative to numpy and pandas that solves real-world problems with readable code. agate was previously known as journalism. WWW: http://agate.rtfd.org/ Added: head/textproc/py-agate/ head/textproc/py-agate/Makefile (contents, props changed) head/textproc/py-agate/distinfo (contents, props changed) head/textproc/py-agate/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Mon Jul 4 15:00:43 2016 (r418034) +++ head/textproc/Makefile Mon Jul 4 15:25:16 2016 (r418035) @@ -1216,6 +1216,7 @@ SUBDIR += py-MarkupSafe SUBDIR += py-Tempita SUBDIR += py-acora + SUBDIR += py-agate SUBDIR += py-alabaster SUBDIR += py-asv SUBDIR += py-awesome-slugify Added: head/textproc/py-agate/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-agate/Makefile Mon Jul 4 15:25:16 2016 (r418035) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= agate +PORTVERSION= 1.4.0 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= matthew@FreeBSD.org +COMMENT= Data analysis library optimized for humans + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.6.1:devel/py-six \ + ${PYTHON_PKGNAMEPREFIX}pytimeparse>=1.1.5:devel/py-pytimeparse \ + ${PYTHON_PKGNAMEPREFIX}Babel>=2.0:devel/py-babel \ + ${PYTHON_PKGNAMEPREFIX}parsedatetime>=2.1:devel/py-parsedatetime \ + ${PYTHON_PKGNAMEPREFIX}isodate>=0.5.4:devel/py-isodate \ + ${PYTHON_PKGNAMEPREFIX}awesome-slugify>=1.6.5:textproc/py-awesome-slugify + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/textproc/py-agate/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-agate/distinfo Mon Jul 4 15:25:16 2016 (r418035) @@ -0,0 +1,3 @@ +TIMESTAMP = 1467645785 +SHA256 (agate-1.4.0.tar.gz) = 4436fca90177886e7747ce0a2dc293c3a49d4152baead4784c8da80861085eaf +SIZE (agate-1.4.0.tar.gz) = 47345 Added: head/textproc/py-agate/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-agate/pkg-descr Mon Jul 4 15:25:16 2016 (r418035) @@ -0,0 +1,7 @@ +agate is a Python data analysis library that is optimized for humans +instead of machines. It is an alternative to numpy and pandas that +solves real-world problems with readable code. + +agate was previously known as journalism. + +WWW: http://agate.rtfd.org/