dev-python/cloudpickle: Bump to 3.1.2

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny 2025-11-04 07:25:45 +01:00
parent fef43f3e4f
commit 61ff06acb2
No known key found for this signature in database
GPG Key ID: 639ADAE2329E240E
2 changed files with 40 additions and 0 deletions

View File

@ -1 +1,2 @@
DIST cloudpickle-3.1.1.gh.tar.gz 63697 BLAKE2B 81a971fd2e96cab4bdd56adf3c6f9eb4349a978a2b5d7dddeb3a1c0ecf0b2c4f02f4fb64890759316d4ba978758aee042ede883f1803d5133d6012da8eef5a48 SHA512 a967f7236dde114d76b3b77e981bc274101e3bd5a11b05b57a23428bf6b9cd8f6b04113295170e40b9d30f1f09d646bc906879c0146aa81b7adf0368608f45b4
DIST cloudpickle-3.1.2.gh.tar.gz 64055 BLAKE2B 65ccf67aefb92581daf3ba6b4835246e1446c00a2489aedf093ccfdb78323d487a30535d107db9ff10ad8169f4b2fbe5a017388340b43ba752f3542fd5c2c0d6 SHA512 d3742305eb6f336278ae31fb16b86bf49c55db5ea47d1ff637a5cff55c7e4157c70dba99b82f70181c40c204e6afccedbb768315c78c0f67c3f1324b01238079

View File

@ -0,0 +1,39 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=flit
PYTHON_COMPAT=( python3_{11..14} python3_{13,14}t )
inherit distutils-r1
DESCRIPTION="Extended pickling support for Python objects"
HOMEPAGE="
https://github.com/cloudpipe/cloudpickle/
https://pypi.org/project/cloudpickle/
"
SRC_URI="
https://github.com/cloudpipe/cloudpickle/archive/v${PV}.tar.gz
-> ${P}.gh.tar.gz
"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~x64-macos"
BDEPEND="
test? (
dev-python/psutil[${PYTHON_USEDEP}]
)
"
EPYTEST_PLUGINS=()
distutils_enable_tests pytest
python_test() {
local -x PYTHONPATH=${PYTHONPATH}:tests/cloudpickle_testpkg
# -s unbreaks some tests
# https://github.com/cloudpipe/cloudpickle/issues/252
epytest -s
}