Date: Mon, 26 Dec 2016 07:22:13 +0000 (UTC) From: Kurt Jaeger <pi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r429482 - in head/devel: . py-dill Message-ID: <201612260722.uBQ7MDGj066471@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pi Date: Mon Dec 26 07:22:13 2016 New Revision: 429482 URL: https://svnweb.freebsd.org/changeset/ports/429482 Log: New port: devel/py-dill Dill extends python's 'pickle' module for serializing and de-serializing python objects to the majority of the built-in python types. Serialization is the process of converting an object to a byte stream, and the inverse of which is converting a byte stream back to on python object hierarchy. WWW: https://pypi.python.org/pypi/dill PR: 214677 Submitted by: Yuri Victorovich <yuri@rawbw.com> Added: head/devel/py-dill/ head/devel/py-dill/Makefile (contents, props changed) head/devel/py-dill/distinfo (contents, props changed) head/devel/py-dill/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Dec 26 06:53:37 2016 (r429481) +++ head/devel/Makefile Mon Dec 26 07:22:13 2016 (r429482) @@ -4191,6 +4191,7 @@ SUBDIR += py-dexml SUBDIR += py-dialog SUBDIR += py-diazo + SUBDIR += py-dill SUBDIR += py-dirspec SUBDIR += py-distorm SUBDIR += py-django-rq Added: head/devel/py-dill/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-dill/Makefile Mon Dec 26 07:22:13 2016 (r429482) @@ -0,0 +1,21 @@ +# Created by: Yuri Victorovich <yuri@rawbw.com> +# $FreeBSD$ + +PORTNAME= dill +PORTVERSION= 0.2.5 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@rawbw.com +COMMENT= Serialize all of python + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python tar:tgz +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/devel/py-dill/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-dill/distinfo Mon Dec 26 07:22:13 2016 (r429482) @@ -0,0 +1,3 @@ +TIMESTAMP = 1479597021 +SHA256 (dill-0.2.5.tgz) = 431c9d46e190dcdf1397234cf659d66e2e22e33b0474ed6ee2d0b16c9c0ea319 +SIZE (dill-0.2.5.tgz) = 60572 Added: head/devel/py-dill/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-dill/pkg-descr Mon Dec 26 07:22:13 2016 (r429482) @@ -0,0 +1,6 @@ +Dill extends python's 'pickle' module for serializing and de-serializing +python objects to the majority of the built-in python types. Serialization +is the process of converting an object to a byte stream, and the inverse +of which is converting a byte stream back to on python object hierarchy. + +WWW: https://pypi.python.org/pypi/dill
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201612260722.uBQ7MDGj066471>