From 6d8a17c1de4716f081784b280b5ab51a8d41bc33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Thu, 11 Jul 2024 20:17:47 +0200 Subject: [PATCH] dev-python/pyu2f: Enable py3.13 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/pyu2f/pyu2f-0.1.5-r1.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dev-python/pyu2f/pyu2f-0.1.5-r1.ebuild b/dev-python/pyu2f/pyu2f-0.1.5-r1.ebuild index 9c1929203e474..43d950f052e02 100644 --- a/dev-python/pyu2f/pyu2f-0.1.5-r1.ebuild +++ b/dev-python/pyu2f/pyu2f-0.1.5-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..12} ) +PYTHON_COMPAT=( python3_{10..13} ) inherit distutils-r1 @@ -39,12 +39,15 @@ DOCS=( CONTRIBUTING.md README.md ) distutils_enable_tests pytest python_prepare_all() { - # adjust pyfakefs usage #888223 + # https://github.com/google/pyu2f/commit/5e2f862dd5ba61eadff341dbf0a1202e91b1b145 + sed -i -e 's:logger[.]warn:&ing:' pyu2f/hid/macos.py || die sed -e "s:CreateFile:create_file:" \ -e "s:CreateDirectory:create_dir:" \ -e "s:RemoveObject:remove_object:" \ -e "s:SetContents:set_contents:" \ -i pyu2f/tests/hid/linux_test.py || die + # https://github.com/google/pyu2f/commit/793acd9ff6612bb035f0724b04e10a01cdb5bb8d + # https://github.com/google/pyu2f/commit/dad654010a030f1038bd2df95a9647fb417e0447 find pyu2f/tests -name '*.py' -exec \ sed -e 's:assertEquals:assertEqual:' \ -e 's:assertRaisesRegexp:assertRaisesRegex:' \