diff --git a/dev-python/zodbpickle/Manifest b/dev-python/zodbpickle/Manifest new file mode 100644 index 0000000000..6639eb4ba1 --- /dev/null +++ b/dev-python/zodbpickle/Manifest @@ -0,0 +1 @@ +DIST zodbpickle-3.0.1.tar.gz 111068 BLAKE2B 32e5bb09f6fc97a6b5ecc865e750adef6fe60ab52d6dd3c8807920859d63749c6ed77a99c7bce5515f8e0839e03d845eec60712444bee90f37f6a9ebfaaa24c0 SHA512 f3b9fd019a175ec8eb8cb3d1d3c05a8f142f6b0842affb8d1b910bea0af0216c799608355dbce4bb236a6b3732634fe81744ffeb27c23cd9cad267255cfed253 diff --git a/dev-python/zodbpickle/metadata.xml b/dev-python/zodbpickle/metadata.xml new file mode 100644 index 0000000000..08292a3bba --- /dev/null +++ b/dev-python/zodbpickle/metadata.xml @@ -0,0 +1,24 @@ + + + + + Julien Roy + julien@jroy.ca + + + This package 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. + + + + Zope Foundation and Contributors + zope-dev@zope.org + + https://github.com/zopefoundation/zodbpickle/issues + https://github.com/zopefoundation/zodbpicle/blob/master/CHANGES.rst + zopefoundation/zodbpickle + zodbpickle + + diff --git a/dev-python/zodbpickle/zodbpickle-3.0.1.ebuild b/dev-python/zodbpickle/zodbpickle-3.0.1.ebuild new file mode 100644 index 0000000000..cfbaa9e199 --- /dev/null +++ b/dev-python/zodbpickle/zodbpickle-3.0.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..11} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Fork of Python's pickle module to work with ZODB" +HOMEPAGE="https://github.com/zopefoundation/zodbpickle" + +LICENSE="ZPL" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" +