Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 29 Mar 2018 21:06:16 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r465929 - in head/devel: . py-toolz
Message-ID:  <201803292106.w2TL6GnT029601@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Thu Mar 29 21:06:16 2018
New Revision: 465929
URL: https://svnweb.freebsd.org/changeset/ports/465929

Log:
  New port: devel/py-toolz: Functional standard library for Python

Added:
  head/devel/py-toolz/
  head/devel/py-toolz/Makefile   (contents, props changed)
  head/devel/py-toolz/distinfo   (contents, props changed)
  head/devel/py-toolz/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Thu Mar 29 20:37:39 2018	(r465928)
+++ head/devel/Makefile	Thu Mar 29 21:06:16 2018	(r465929)
@@ -4980,6 +4980,7 @@
     SUBDIR += py-tinyarray
     SUBDIR += py-tinyrpc
     SUBDIR += py-tipper
+    SUBDIR += py-toolz
     SUBDIR += py-tooz
     SUBDIR += py-toposort
     SUBDIR += py-total-ordering

Added: head/devel/py-toolz/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-toolz/Makefile	Thu Mar 29 21:06:16 2018	(r465929)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+
+PORTNAME=	toolz
+DISTVERSION=	0.9.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	Functional standard library for Python
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-toolz/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-toolz/distinfo	Thu Mar 29 21:06:16 2018	(r465929)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1522357087
+SHA256 (toolz-0.9.0.tar.gz) = 929f0a7ea7f61c178bd951bdae93920515d3fbdbafc8e6caf82d752b9b3b31c9
+SIZE (toolz-0.9.0.tar.gz) = 45544

Added: head/devel/py-toolz/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-toolz/pkg-descr	Thu Mar 29 21:06:16 2018	(r465929)
@@ -0,0 +1,12 @@
+toolz is implemented in three parts:
+* itertoolz, for operations on iterables.
+  Examples: groupby, unique, interpose,
+* functoolz, for higher-order functions.
+  Examples: memoize, curry, compose
+* dicttoolz, for operations on dictionaries.
+  Examples: assoc, update-in, merge.
+
+These functions come from the legacy of functional languages for list
+processing. They interoperate well to accomplish common complex tasks.
+
+WWW: http://github.com/pytoolz/toolz/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803292106.w2TL6GnT029601>