From owner-svn-ports-all@freebsd.org Sun Feb 21 14:55:25 2016 Return-Path: Delivered-To: svn-ports-all@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 B1C5DAB01A0; Sun, 21 Feb 2016 14:55:25 +0000 (UTC) (envelope-from koobs@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 8C9BC1A08; Sun, 21 Feb 2016 14:55:25 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1LEtOZg069652; Sun, 21 Feb 2016 14:55:24 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1LEtOiD069648; Sun, 21 Feb 2016 14:55:24 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201602211455.u1LEtOiD069648@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Sun, 21 Feb 2016 14:55:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r409292 - in head/devel: . py-cloudpickle X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Feb 2016 14:55:25 -0000 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 +# $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 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