From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7EDFB15ACFC for ; Sat, 29 Apr 2023 05:36:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B1AF3E08A0; Sat, 29 Apr 2023 05:36:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9CCBAE08A0 for ; Sat, 29 Apr 2023 05:36:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B6C2433DF47 for ; Sat, 29 Apr 2023 05:36:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 51C7D8E4 for ; Sat, 29 Apr 2023 05:36:27 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1682745966.f76f94404982657913b80de418b3d52a981a622f.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/olm/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/olm/olm-3.2.14-r4.ebuild dev-python/olm/olm-3.2.14-r5.ebuild X-VCS-Directories: dev-python/olm/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: f76f94404982657913b80de418b3d52a981a622f X-VCS-Branch: dev Date: Sat, 29 Apr 2023 05:36:27 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0e672529-53c3-4314-ac56-c52104be3f14 X-Archives-Hash: f853383f8dafbc246fc779d30900b6c7 commit: f76f94404982657913b80de418b3d52a981a622f Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Sat Apr 29 05:26:06 2023 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Sat Apr 29 05:26:06 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f76f9440 dev-python/olm: enable py3.11 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> .../{olm-3.2.14-r4.ebuild => olm-3.2.14-r5.ebuild} | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/dev-python/olm/olm-3.2.14-r4.ebuild b/dev-python/olm/olm-3.2.14-r5.ebuild similarity index 68% rename from dev-python/olm/olm-3.2.14-r4.ebuild rename to dev-python/olm/olm-3.2.14-r5.ebuild index 0673257db..01f211a57 100644 --- a/dev-python/olm/olm-3.2.14-r4.ebuild +++ b/dev-python/olm/olm-3.2.14-r5.ebuild @@ -3,9 +3,8 @@ EAPI=8 +PYTHON_COMPAT=( python3_{9..11} ) DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..10} ) - inherit distutils-r1 DESCRIPTION="Python bindings for dev-libs/olm" @@ -20,21 +19,25 @@ KEYWORDS="~amd64" DEPEND="dev-libs/olm" RDEPEND=" ${DEPEND} - dev-python/cffi[${PYTHON_USEDEP}] dev-python/future[${PYTHON_USEDEP}] + virtual/python-cffi[${PYTHON_USEDEP}] " BDEPEND=" - test? ( - dev-python/aspectlib[${PYTHON_USEDEP}] - dev-python/pytest-benchmark[${PYTHON_USEDEP}] - ) + test? ( dev-python/aspectlib[${PYTHON_USEDEP}] ) " DOCS=( README-python.md ) distutils_enable_tests pytest -distutils_enable_sphinx docs +distutils_enable_sphinx docs \ + dev-python/alabaster + +EPYTEST_DESELECT=( + # need pytest-benchmark + tests/group_session_test.py::TestClass::test_encrypt + tests/group_session_test.py::TestClass::test_decrypt +) src_prepare() { distutils-r1_src_prepare