1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

Update to 1.0.2

- Update pkg-descr
- Update WWW
- Take maintainership

Changes:	https://github.com/zopefoundation/zodbpickle/blob/master/CHANGES.rst
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2018-10-29 22:12:41 +00:00
parent 13ca9af7b5
commit 302f26a0fd
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=483408
3 changed files with 15 additions and 16 deletions

View File

@ -2,18 +2,18 @@
# $FreeBSD$
PORTNAME= zodbpickle
PORTVERSION= 0.7.0
PORTVERSION= 1.0.2
CATEGORIES= databases python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= ports@FreeBSD.org
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Python pickling interface for ZODB
LICENSE= PSFL ZPL21
LICENSE_COMB= multi
USES= python
USE_PYTHON= autoplist distutils
USE_PYTHON= autoplist concurrent distutils
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1507833956
SHA256 (zodbpickle-0.7.0.tar.gz) = 95a247fb17bce980af8d548af70ac5bd1bad22773f242eb8efa24428efa909a8
SIZE (zodbpickle-0.7.0.tar.gz) = 181263
TIMESTAMP = 1540846712
SHA256 (zodbpickle-1.0.2.tar.gz) = f26e6eba6550ff1575ef2f2831fc8bc0b465f17f9757d0b6c7db55fab5702061
SIZE (zodbpickle-1.0.2.tar.gz) = 182435

View File

@ -1,11 +1,10 @@
Under Python2, this package forks both Python 2.7's pickle and
cPickle modules, adding support for the protocol 3 opcodes. It also
provides a new subclass of bytes, zodbpickle.binary, which Python2
applications can use to pickle binary values such that they will be
unpickled as bytes under Py3k.
zodbpickle presents a uniform pickling interface for ZODB:
- Under Python2, this package forks both Python 2.7's pickle and cPickle
modules, adding support for the protocol 3 opcodes. It also provides a new
subclass of bytes, zodbpickle.binary, which Python2 applications can use to
pickle binary values such that they will be unpickled as bytes under Py3k.
- Under Py3k, this package forks the pickle module (and the supporting C
extension) from both Python 3.2 and Python 3.3. The fork add support for the
noload operations used by ZODB.
Under Py3k, this package forks the pickle module (and the supporting
C extension) from both Python 3.2 and Python 3.3. The fork add support
for the noload operations used by ZODB.
WWW: https://pypi.org/project/zodbpickle/
WWW: https://github.com/zopefoundation/zodbpickle