From owner-svn-ports-head@freebsd.org Wed Jun 22 15:20:55 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 DB63CB72B86; Wed, 22 Jun 2016 15:20:55 +0000 (UTC) (envelope-from feld@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 92F9D215E; Wed, 22 Jun 2016 15:20:55 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u5MFKsif058709; Wed, 22 Jun 2016 15:20:54 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5MFKssH058705; Wed, 22 Jun 2016 15:20:54 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201606221520.u5MFKssH058705@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Wed, 22 Jun 2016 15:20:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417315 - in head/devel: . py-jaraco.itertools 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: Wed, 22 Jun 2016 15:20:56 -0000 Author: feld Date: Wed Jun 22 15:20:54 2016 New Revision: 417315 URL: https://svnweb.freebsd.org/changeset/ports/417315 Log: jaraco.itertools Tools for working with iterables. Complements itertools and more_itertools. WWW: https://github.com/jaraco/jaraco.itertools Added: head/devel/py-jaraco.itertools/ head/devel/py-jaraco.itertools/Makefile (contents, props changed) head/devel/py-jaraco.itertools/distinfo (contents, props changed) head/devel/py-jaraco.itertools/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Jun 22 15:19:50 2016 (r417314) +++ head/devel/Makefile Wed Jun 22 15:20:54 2016 (r417315) @@ -4165,6 +4165,7 @@ SUBDIR += py-itools SUBDIR += py-jaraco.classes SUBDIR += py-jaraco.functools + SUBDIR += py-jaraco.itertools SUBDIR += py-jaraco.timing SUBDIR += py-jaraco.util SUBDIR += py-jcc Added: head/devel/py-jaraco.itertools/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jaraco.itertools/Makefile Wed Jun 22 15:20:54 2016 (r417315) @@ -0,0 +1,23 @@ +# Created by: Mark Felder +# $FreeBSD$ + +PORTNAME= jaraco.itertools +PORTVERSION= 1.7.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= feld@FreeBSD.org +COMMENT= Tools for working with iterables + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six \ + ${PYTHON_PKGNAMEPREFIX}more-itertools>0:devel/py-more-itertools \ + ${PYTHON_PKGNAMEPREFIX}inflect>0:devel/py-inflect +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>0:devel/py-setuptools_scm + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/devel/py-jaraco.itertools/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jaraco.itertools/distinfo Wed Jun 22 15:20:54 2016 (r417315) @@ -0,0 +1,2 @@ +SHA256 (jaraco.itertools-1.7.1.tar.gz) = bf5c7bf22c930a0c5942e0850166b10c77bbb6286117ac2c619c78c86db97d7b +SIZE (jaraco.itertools-1.7.1.tar.gz) = 10224 Added: head/devel/py-jaraco.itertools/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jaraco.itertools/pkg-descr Wed Jun 22 15:20:54 2016 (r417315) @@ -0,0 +1,4 @@ +jaraco.itertools Tools for working with iterables. Complements itertools +and more_itertools. + +WWW: https://github.com/jaraco/jaraco.itertools