From owner-svn-ports-all@FreeBSD.ORG Mon Jun 16 12:37:58 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B4A80448; Mon, 16 Jun 2014 12:37:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 955F52C78; Mon, 16 Jun 2014 12:37:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5GCbw6O081659; Mon, 16 Jun 2014 12:37:58 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5GCbvmA081654; Mon, 16 Jun 2014 12:37:57 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201406161237.s5GCbvmA081654@svn.freebsd.org> From: William Grzybowski Date: Mon, 16 Jun 2014 12:37:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r357979 - in head/devel: . py-jaraco.util X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jun 2014 12:37:58 -0000 Author: wg Date: Mon Jun 16 12:37:57 2014 New Revision: 357979 URL: http://svnweb.freebsd.org/changeset/ports/357979 QAT: https://qat.redports.org/buildarchive/r357979/ Log: devel/py-jaraco.util: general utility modules that supply commonly-used functionality jaraco.util contains a number of nominally useful, reusable classes and functions. They're designed to be intuitively named and self-documenting (many with extensive doctests). WWW: https://pypi.python.org/pypi/jaraco.util Added: head/devel/py-jaraco.util/ head/devel/py-jaraco.util/Makefile (contents, props changed) head/devel/py-jaraco.util/distinfo (contents, props changed) head/devel/py-jaraco.util/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Jun 16 12:32:13 2014 (r357978) +++ head/devel/Makefile Mon Jun 16 12:37:57 2014 (r357979) @@ -3683,6 +3683,7 @@ SUBDIR += py-isodate SUBDIR += py-iterpipes SUBDIR += py-itools + SUBDIR += py-jaraco.util SUBDIR += py-jcc SUBDIR += py-jdcal SUBDIR += py-jellyfish Added: head/devel/py-jaraco.util/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jaraco.util/Makefile Mon Jun 16 12:37:57 2014 (r357979) @@ -0,0 +1,24 @@ +# Created by: William Grzybowski +# $FreeBSD$ + +PORTNAME= jaraco.util +PORTVERSION= 10.0.2 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wg@FreeBSD.org +COMMENT= General utility modules that supply commonly-used functionality + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:${PORTSDIR}/devel/py-six \ + ${PYTHON_PKGNAMEPREFIX}more-itertools>0:${PORTSDIR}/devel/py-more-itertools +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hgtools>0:${PORTSDIR}/devel/py-hgtools + +USES= zip +USE_PYTHON= yes +USE_PYDISTUTILS=yes +PYDISTUTILS_AUTOPLIST= yes + +.include Added: head/devel/py-jaraco.util/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jaraco.util/distinfo Mon Jun 16 12:37:57 2014 (r357979) @@ -0,0 +1,2 @@ +SHA256 (jaraco.util-10.0.2.zip) = da136010c98f1ceaaa02ab1a201da45d3b2d59348fac8e3c7b1ddb61825ca872 +SIZE (jaraco.util-10.0.2.zip) = 83375 Added: head/devel/py-jaraco.util/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jaraco.util/pkg-descr Mon Jun 16 12:37:57 2014 (r357979) @@ -0,0 +1,7 @@ +jaraco.util contains a number of nominally useful, reusable classes and +functions. + +They're designed to be intuitively named and self-documenting (many with +extensive doctests). + +WWW: https://pypi.python.org/pypi/jaraco.util