From owner-svn-ports-head@freebsd.org Thu Oct 15 00:06:50 2015 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 AA5AFA157E5; Thu, 15 Oct 2015 00:06:50 +0000 (UTC) (envelope-from jkim@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 8267C13AA; Thu, 15 Oct 2015 00:06:50 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9F06nNd059449; Thu, 15 Oct 2015 00:06:49 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9F06nih059445; Thu, 15 Oct 2015 00:06:49 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201510150006.t9F06nih059445@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Thu, 15 Oct 2015 00:06:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399323 - in head/devel: . py-pytools 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: Thu, 15 Oct 2015 00:06:50 -0000 Author: jkim Date: Thu Oct 15 00:06:49 2015 New Revision: 399323 URL: https://svnweb.freebsd.org/changeset/ports/399323 Log: Pytools is a big bag of things that are "missing" from the Python standard library. This is mainly a dependency of my other software packages, and is probably of little interest to you unless you use those. If you're curious nonetheless, here's what's on offer: - A ton of small tool functions such as len_iterable, argmin, tuple generation, permutation generation, ASCII table pretty printing, GvR's mokeypatch_xxx() hack, the elusive flatten, and much more. - Michele Simionato's decorator module. - A time-series logging module, pytools.log. - Batch job submission, pytools.batchjob. - A lexer, pytools.lex. WWW: http://pypi.python.org/pypi/pytools Added: head/devel/py-pytools/ head/devel/py-pytools/Makefile (contents, props changed) head/devel/py-pytools/distinfo (contents, props changed) head/devel/py-pytools/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Oct 14 23:59:01 2015 (r399322) +++ head/devel/Makefile Thu Oct 15 00:06:49 2015 (r399323) @@ -4196,6 +4196,7 @@ SUBDIR += py-python2-pythondialog SUBDIR += py-pythonbrew SUBDIR += py-pytimeparse + SUBDIR += py-pytools SUBDIR += py-pytrie SUBDIR += py-pytz SUBDIR += py-pyutil Added: head/devel/py-pytools/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytools/Makefile Thu Oct 15 00:06:49 2015 (r399323) @@ -0,0 +1,17 @@ +# $FreeBSD$ + +PORTNAME= pytools +PORTVERSION= 2015.1.3 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= python@FreeBSD.org +COMMENT= Collection of tools for Python + +LICENSE= MIT + +USE_PYTHON= autoplist distutils +USES= python + +.include Added: head/devel/py-pytools/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytools/distinfo Thu Oct 15 00:06:49 2015 (r399323) @@ -0,0 +1,2 @@ +SHA256 (pytools-2015.1.3.tar.gz) = c29dba78c85e0f4fa1f16ef72d79ce9f7e8234a105f6efe11a4ac06ad2ed4e64 +SIZE (pytools-2015.1.3.tar.gz) = 46843 Added: head/devel/py-pytools/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytools/pkg-descr Thu Oct 15 00:06:49 2015 (r399323) @@ -0,0 +1,14 @@ +Pytools is a big bag of things that are "missing" from the Python standard +library. This is mainly a dependency of my other software packages, and +is probably of little interest to you unless you use those. If you're +curious nonetheless, here's what's on offer: + +- A ton of small tool functions such as len_iterable, argmin, tuple + generation, permutation generation, ASCII table pretty printing, GvR's + mokeypatch_xxx() hack, the elusive flatten, and much more. +- Michele Simionato's decorator module. +- A time-series logging module, pytools.log. +- Batch job submission, pytools.batchjob. +- A lexer, pytools.lex. + +WWW: http://pypi.python.org/pypi/pytools