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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8A3AB158086 for ; Thu, 7 Oct 2021 10:22:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 87D07E086C; Thu, 7 Oct 2021 10:22:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3E4CEE086A for ; Thu, 7 Oct 2021 10:22:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CBDD9343367 for ; Thu, 7 Oct 2021 10:22:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4434A138 for ; Thu, 7 Oct 2021 10:22:47 +0000 (UTC) From: "Alessandro Barbieri" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alessandro Barbieri" Message-ID: <1633602165.4b57775c07db488724946ae9f8f34f6ec8bf5a26.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/orjson/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/orjson/orjson-3.5.3-r1.ebuild dev-python/orjson/orjson-3.5.3.ebuild X-VCS-Directories: dev-python/orjson/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: 4b57775c07db488724946ae9f8f34f6ec8bf5a26 X-VCS-Branch: dev Date: Thu, 7 Oct 2021 10:22:47 +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: 32db6028-cf5e-4926-b145-ef9e68ea3895 X-Archives-Hash: c55d6416ea2763f3d333a7a8fd4dd7b6 commit: 4b57775c07db488724946ae9f8f34f6ec8bf5a26 Author: Alessandro Barbieri gmail com> AuthorDate: Thu Oct 7 10:06:11 2021 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Thu Oct 7 10:22:45 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4b57775c dev-python/orjson: EAPI 8 Closes: https://bugs.gentoo.org/816738 Closes: https://bugs.gentoo.org/816735 Closes: https://bugs.gentoo.org/816732 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Alessandro Barbieri gmail.com> ...{orjson-3.5.3.ebuild => orjson-3.5.3-r1.ebuild} | 23 +++++++++++----------- 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/dev-python/orjson/orjson-3.5.3.ebuild b/dev-python/orjson/orjson-3.5.3-r1.ebuild similarity index 78% rename from dev-python/orjson/orjson-3.5.3.ebuild rename to dev-python/orjson/orjson-3.5.3-r1.ebuild index 3dc01d0d5..ee55a96ae 100644 --- a/dev-python/orjson/orjson-3.5.3.ebuild +++ b/dev-python/orjson/orjson-3.5.3-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 CRATES=" ahash-0.7.4 @@ -39,7 +39,17 @@ CRATES=" " DISTUTILS_SINGLE_IMPL=1 DISTUTILS_USE_SETUPTOOLS=no +EPYTEST_DESELECT=( + test/test_datetime.py::DatetimeTests::test_datetime_pendulum_positive + test/test_datetime.py::DatetimeTests::test_datetime_partial_second_pendulum_supported + test/test_datetime.py::DatetimeTests::test_datetime_pendulum_negative_dst + test/test_datetime.py::DatetimeTests::test_datetime_pendulum_negative_non_dst + test/test_datetime.py::DatetimeTests::test_datetime_partial_hour + test/test_datetime.py::DatetimeTests::test_datetime_pendulum_partial_hour + test/test_api.py::ApiTests::test_version +) PYTHON_COMPAT=( python3_{8..9} ) +QA_FLAGS_IGNORED="*" inherit cargo distutils-r1 @@ -97,14 +107,3 @@ src_install() { python_domodule orjson/orjson*.so dodoc README.md } - -python_test() { - epytest -vv \ - --deselect test/test_datetime.py::DatetimeTests::test_datetime_pendulum_positive \ - --deselect test/test_datetime.py::DatetimeTests::test_datetime_partial_second_pendulum_supported \ - --deselect test/test_datetime.py::DatetimeTests::test_datetime_pendulum_negative_dst \ - --deselect test/test_datetime.py::DatetimeTests::test_datetime_pendulum_negative_non_dst \ - --deselect test/test_datetime.py::DatetimeTests::test_datetime_partial_hour \ - --deselect test/test_datetime.py::DatetimeTests::test_datetime_pendulum_partial_hour \ - || die -}