pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
new version, please see https://github.com/uqfoundation/dill/releases
Module Name: pkgsrc-wip
Committed By: Derouiche <kamel.derouiche%gmail.com@localhost>
Pushed By: jihbed
Date: Fri Oct 2 23:52:21 2015 +0100
Changeset: d88419ee980336606b9251b10569bbdebf6f53c7
Modified Files:
py-dill/DESCR
py-dill/Makefile
py-dill/PLIST
py-dill/distinfo
Removed Files:
py-dill/patches/patch-setup.py
Log Message:
new version, please see https://github.com/uqfoundation/dill/releases
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=d88419ee980336606b9251b10569bbdebf6f53c7
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
py-dill/DESCR | 21 ---------------------
py-dill/Makefile | 16 +++++++---------
py-dill/PLIST | 12 +++++++++---
py-dill/distinfo | 6 +++---
py-dill/patches/patch-setup.py | 20 --------------------
5 files changed, 19 insertions(+), 56 deletions(-)
diffs:
diff --git a/py-dill/DESCR b/py-dill/DESCR
index 6cc19de..e69de29 100644
--- a/py-dill/DESCR
+++ b/py-dill/DESCR
@@ -1,21 +0,0 @@
-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.
-
-Dill provides the user the same interface as the 'pickle' module, and
-also includes some additional features. In addition to pickling python
-objects, dill provides the ability to save the state of an interpreter
-session in a single command. Hence, it would be feasable to save a
-interpreter session, close the interpreter, ship the pickled file to
-another computer, open a new interpreter, unpickle the session and
-thus continue from the 'saved' state of the original interpreter
-session.
-
-Dill can be used to store python objects to a file, but the primary
-usage is to send python objects across the network as a byte stream.
-Dill is quite flexible, and allows arbitrary user defined classes
-and funcitons to be serialized. Thus dill is not intended to be
-secure against erroneously or maliciously constructed data. It is
-left to the user to decide whether the data they unpickle is from
-a trustworthy source.
diff --git a/py-dill/Makefile b/py-dill/Makefile
index b84be06..8b83c11 100644
--- a/py-dill/Makefile
+++ b/py-dill/Makefile
@@ -1,24 +1,22 @@
-# $NetBSD: Makefile,v 1.1 2014/06/09 21:12:57 jihbed Exp $
+# $NetBSD$
-DISTNAME= dill-0.2.1
+DISTNAME= dill-0.2.4
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= https://pypi.python.org/packages/source/d/dill/
-EXTRACT_SUFX= .zip#md5=b2354a5717da6228acae33cb13bc407b
+EXTRACT_SUFX= .tgz#md5=8e7d1ec5a0f150b536da4d0623c3931b
MAINTAINER= kamelderouiche%yahoo.com@localhost
HOMEPAGE= http://www.cacr.caltech.edu/~mmckerns/dill.htm
COMMENT= Utility for serialization of python objects
LICENSE= 2-clause-bsd
-USE_LANGUAGES= # none
+DEPENDS+= ${PYPKGPREFIX}-readline-[0-9]*:../../devel/readline
-PYTHON_VERSIONS_INCOMPATIBLE= 30 31 32 33 34
-PLIST_SUBST+= PYVERSSUFFIX=${PYVERSSUFFIX}
+USE_LANGUAGES= # none
-post-extract:
- ${MV} ${WRKSRC}/scripts/get_objgraph.py ${WRKSRC}/scripts/get_objgraph.py${PYVERSSUFFIX}
- ${MV} ${WRKSRC}/scripts/unpickle.py ${WRKSRC}/scripts/unpickle.py${PYVERSSUFFIX}
+PYTHON_VERSIONS_INCOMPATIBLE= 32 33 34
+
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/py-dill/PLIST b/py-dill/PLIST
index b8b5bb1..9840e8c 100644
--- a/py-dill/PLIST
+++ b/py-dill/PLIST
@@ -1,11 +1,14 @@
-@comment $NetBSD: PLIST,v 1.1 2014/06/09 21:12:57 jihbed Exp $
-bin/get_objgraph.py2.7
-bin/unpickle.py2.7
+@comment $NetBSD$
+bin/get_objgraph.py
+bin/unpickle.py
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/dill/__diff.py
+${PYSITELIB}/dill/__diff.pyc
+${PYSITELIB}/dill/__diff.pyo
${PYSITELIB}/dill/__init__.py
${PYSITELIB}/dill/__init__.pyc
${PYSITELIB}/dill/__init__.pyo
@@ -27,6 +30,9 @@ ${PYSITELIB}/dill/objtypes.pyo
${PYSITELIB}/dill/pointers.py
${PYSITELIB}/dill/pointers.pyc
${PYSITELIB}/dill/pointers.pyo
+${PYSITELIB}/dill/settings.py
+${PYSITELIB}/dill/settings.pyc
+${PYSITELIB}/dill/settings.pyo
${PYSITELIB}/dill/source.py
${PYSITELIB}/dill/source.pyc
${PYSITELIB}/dill/source.pyo
diff --git a/py-dill/distinfo b/py-dill/distinfo
index 062badc..4bdef9e 100644
--- a/py-dill/distinfo
+++ b/py-dill/distinfo
@@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.1 2014/06/09 21:12:57 jihbed Exp $
-SHA1 (dill-0.2.1.zip) = 355a0805bcaf7df28dce977267f3849f553933b5
-RMD160 (dill-0.2.1.zip) = eee0d073409323a12aded4349594c3c8cc3ba583
-Size (dill-0.2.1.zip) = 63980 bytes
+SHA1 (dill-0.2.4.tgz) = f36c57e0146b9c570db7040f1a1b0da9b69a4b41
+RMD160 (dill-0.2.4.tgz) = 6a29a4e66ad8b37881ef3c02b6c02829cb05716f
+Size (dill-0.2.4.tgz) = 58607 bytes
SHA1 (patch-setup.py) = db2ec39a36236e594f3b64662bd9ed39021d10a8
diff --git a/py-dill/patches/patch-setup.py b/py-dill/patches/patch-setup.py
deleted file mode 100644
index 13f9ced..0000000
--- a/py-dill/patches/patch-setup.py
+++ /dev/null
@@ -1,20 +0,0 @@
-$NetBSD: patch-setup.py,v 1.1 2014/06/09 21:12:57 jihbed Exp $
---- setup.py.orig 2014-06-09 21:01:41.000000000 +0100
-+++ setup.py 2014-06-09 21:07:15.000000000 +0100
-@@ -7,6 +7,7 @@
-
- from __future__ import with_statement, absolute_import
- import os
-+import sys
-
- # set version numbers
- stable_version = '0.2.1'
-@@ -268,7 +269,7 @@
-
- # add the scripts, and close 'setup' call
- setup_code += """
-- scripts=['scripts/unpickle.py','scripts/get_objgraph.py'])
-+ scripts=['scripts/unpickle.py'+sys.version[0:3],'scripts/get_objgraph.py'+sys.version[0:3]])
- """
-
- # exec the 'setup' code
Home |
Main Index |
Thread Index |
Old Index