From owner-svn-ports-head@freebsd.org Mon Dec 26 07:22:14 2016 Return-Path: Delivered-To: svn-ports-head@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 D9762C91A75; Mon, 26 Dec 2016 07:22:14 +0000 (UTC) (envelope-from pi@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 93FCB1FD; Mon, 26 Dec 2016 07:22:14 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBQ7MDIO066475; Mon, 26 Dec 2016 07:22:13 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBQ7MDGj066471; Mon, 26 Dec 2016 07:22:13 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201612260722.uBQ7MDGj066471@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Mon, 26 Dec 2016 07:22:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r429482 - in head/devel: . py-dill X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2016 07:22:15 -0000 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 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 +# $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 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