svn commit: r399323 - in head/devel: . py-pytools

Jung-uk Kim jkim at FreeBSD.org
Thu Oct 15 00:06:50 UTC 2015


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 at FreeBSD.org
+COMMENT=	Collection of tools for Python
+
+LICENSE=	MIT
+
+USE_PYTHON=	autoplist distutils
+USES=		python
+
+.include <bsd.port.mk>

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


More information about the svn-ports-all mailing list