Date: Sun, 21 Feb 2016 14:55:24 +0000 (UTC) From: Kubilay Kocak <koobs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r409292 - in head/devel: . py-cloudpickle Message-ID: <201602211455.u1LEtOiD069648@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: koobs Date: Sun Feb 21 14:55:24 2016 New Revision: 409292 URL: https://svnweb.freebsd.org/changeset/ports/409292 Log: [NEW] devel/py-cloudpickle: Extended pickling support for Python objects cloudpickle makes it possible to serialize Python constructs not supported by the default pickle module from the Python standard library. cloudpickle is especially useful for cluster computing where Python expressions are shipped over the network to execute on remote hosts, possibly close to the data. Among other things, cloudpickle supports pickling for lambda expressions, functions and classes defined interactively in the `__main__` module. WWW: https://github.com/cloudpipe/cloudpickle Added: head/devel/py-cloudpickle/ head/devel/py-cloudpickle/Makefile (contents, props changed) head/devel/py-cloudpickle/distinfo (contents, props changed) head/devel/py-cloudpickle/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Feb 21 14:54:03 2016 (r409291) +++ head/devel/Makefile Sun Feb 21 14:55:24 2016 (r409292) @@ -3964,6 +3964,7 @@ SUBDIR += py-click SUBDIR += py-clint SUBDIR += py-clonedigger + SUBDIR += py-cloudpickle SUBDIR += py-cmdln SUBDIR += py-codegen SUBDIR += py-cog Added: head/devel/py-cloudpickle/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-cloudpickle/Makefile Sun Feb 21 14:55:24 2016 (r409292) @@ -0,0 +1,24 @@ +# Created by: Kubilay Kocak <koobs@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= cloudpickle +PORTVERSION= 0.2.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= koobs@FreeBSD.org +COMMENT= Extended pickling support for Python objects + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test + +.include <bsd.port.mk> Added: head/devel/py-cloudpickle/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-cloudpickle/distinfo Sun Feb 21 14:55:24 2016 (r409292) @@ -0,0 +1,2 @@ +SHA256 (cloudpickle-0.2.1.tar.gz) = eea4b655e6aed3dba39b104ad1872226e3f9e23d8d202fc003f3e65f2d125c3b +SIZE (cloudpickle-0.2.1.tar.gz) = 15514 Added: head/devel/py-cloudpickle/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-cloudpickle/pkg-descr Sun Feb 21 14:55:24 2016 (r409292) @@ -0,0 +1,12 @@ +cloudpickle makes it possible to serialize Python constructs not +supported by the default pickle module from the Python standard library. + +cloudpickle is especially useful for cluster computing where Python +expressions are shipped over the network to execute on remote hosts, +possibly close to the data. + +Among other things, cloudpickle supports pickling for lambda +expressions, functions and classes defined interactively in the +`__main__` module. + +WWW: https://github.com/cloudpipe/cloudpickle
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602211455.u1LEtOiD069648>