From owner-svn-ports-head@freebsd.org Mon Oct 29 22:12:45 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B734A10EBA29; Mon, 29 Oct 2018 22:12:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 64678862E7; Mon, 29 Oct 2018 22:12:45 +0000 (UTC) (envelope-from sunpoet@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5C48814694; Mon, 29 Oct 2018 22:12:42 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9TMCgmJ078665; Mon, 29 Oct 2018 22:12:42 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9TMCfYd078663; Mon, 29 Oct 2018 22:12:41 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201810292212.w9TMCfYd078663@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 29 Oct 2018 22:12:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483408 - head/databases/py-zodbpickle X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/databases/py-zodbpickle X-SVN-Commit-Revision: 483408 X-SVN-Commit-Repository: ports 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.29 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, 29 Oct 2018 22:12:46 -0000 Author: sunpoet Date: Mon Oct 29 22:12:41 2018 New Revision: 483408 URL: https://svnweb.freebsd.org/changeset/ports/483408 Log: Update to 1.0.2 - Update pkg-descr - Update WWW - Take maintainership Changes: https://github.com/zopefoundation/zodbpickle/blob/master/CHANGES.rst Modified: head/databases/py-zodbpickle/Makefile head/databases/py-zodbpickle/distinfo (contents, props changed) head/databases/py-zodbpickle/pkg-descr (contents, props changed) Modified: head/databases/py-zodbpickle/Makefile ============================================================================== --- head/databases/py-zodbpickle/Makefile Mon Oct 29 22:12:33 2018 (r483407) +++ head/databases/py-zodbpickle/Makefile Mon Oct 29 22:12:41 2018 (r483408) @@ -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 Modified: head/databases/py-zodbpickle/distinfo ============================================================================== --- head/databases/py-zodbpickle/distinfo Mon Oct 29 22:12:33 2018 (r483407) +++ head/databases/py-zodbpickle/distinfo Mon Oct 29 22:12:41 2018 (r483408) @@ -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 Modified: head/databases/py-zodbpickle/pkg-descr ============================================================================== --- head/databases/py-zodbpickle/pkg-descr Mon Oct 29 22:12:33 2018 (r483407) +++ head/databases/py-zodbpickle/pkg-descr Mon Oct 29 22:12:41 2018 (r483408) @@ -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