Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 24 Feb 2020 18:19:12 +0000 (UTC)
From:      Diane Bruce <db@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r527011 - in head/devel: . py-pydash
Message-ID:  <202002241819.01OIJCKX092460@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: db
Date: Mon Feb 24 18:19:12 2020
New Revision: 527011
URL: https://svnweb.freebsd.org/changeset/ports/527011

Log:
  The kitchen sink of Python utility libraries for doing "stuff" in a
  functional way. Based on the Lo-Dash Javascript library.
  
  Looking for a library that is more memory efficient and better suited for
  large datasets? Check out fnc! It's built around generators and iteration
  and has iteratee-first function signatures.
  
  WWW: https://pypi.org/pypi/pydash/

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Feb 24 17:59:35 2020	(r527010)
+++ head/devel/Makefile	Mon Feb 24 18:19:12 2020	(r527011)
@@ -4778,6 +4778,7 @@
     SUBDIR += py-pycompilation
     SUBDIR += py-pycparser
     SUBDIR += py-pydantic
+    SUBDIR += py-pydash
     SUBDIR += py-pydenticon
     SUBDIR += py-pydevd
     SUBDIR += py-pydispatcher

Added: head/devel/py-pydash/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pydash/Makefile	Mon Feb 24 18:19:12 2020	(r527011)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+
+PORTNAME=	pydash
+PORTVERSION=	4.7.6
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	db@FreeBSD.org
+COMMENT=	Kitchen sink of Python utility libraries for doing "stuff"
+
+LICENSE=	MIT
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-pydash/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pydash/distinfo	Mon Feb 24 18:19:12 2020	(r527011)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1582565400
+SHA256 (pydash-4.7.6.tar.gz) = a7733886ab811e36510b44ff1de7ccc980327d701fb444a4b2ce395e6f4a4a87
+SIZE (pydash-4.7.6.tar.gz) = 134403

Added: head/devel/py-pydash/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pydash/pkg-descr	Mon Feb 24 18:19:12 2020	(r527011)
@@ -0,0 +1,8 @@
+The kitchen sink of Python utility libraries for doing "stuff" in a
+functional way. Based on the Lo-Dash Javascript library.
+
+Looking for a library that is more memory efficient and better suited for
+large datasets? Check out fnc! It's built around generators and iteration
+and has iteratee-first function signatures.
+
+WWW: https://pypi.org/pypi/pydash/



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