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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 16738158089 for ; Sun, 12 Nov 2023 16:37:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5BA472BC017; Sun, 12 Nov 2023 16:37:28 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2728C2BC017 for ; Sun, 12 Nov 2023 16:37:28 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 36049335D60 for ; Sun, 12 Nov 2023 16:37:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9045E11DB for ; Sun, 12 Nov 2023 16:37:25 +0000 (UTC) From: "Steven Stallion" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Steven Stallion" Message-ID: <1699806986.bc8c602b3332f99c6dfb5ba1972d7d9f7c9033f6.sstallion@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-admin/dotbot/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-admin/dotbot/dotbot-1.20.1.ebuild X-VCS-Directories: app-admin/dotbot/ X-VCS-Committer: sstallion X-VCS-Committer-Name: Steven Stallion X-VCS-Revision: bc8c602b3332f99c6dfb5ba1972d7d9f7c9033f6 X-VCS-Branch: dev Date: Sun, 12 Nov 2023 16:37:25 +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: c6bd9b42-a2a6-402b-b073-20d99cafcd18 X-Archives-Hash: d6d4d5cda66d1d64d9b76634098dfa18 commit: bc8c602b3332f99c6dfb5ba1972d7d9f7c9033f6 Author: Steven Stallion gmail com> AuthorDate: Sun Nov 12 16:36:26 2023 +0000 Commit: Steven Stallion gmail com> CommitDate: Sun Nov 12 16:36:26 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bc8c602b app-admin/dotbot: fix ebuild Closes: https://bugs.gentoo.org/916987 Signed-off-by: Steven Stallion gmail.com> app-admin/dotbot/dotbot-1.20.1.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app-admin/dotbot/dotbot-1.20.1.ebuild b/app-admin/dotbot/dotbot-1.20.1.ebuild index 2c0ce9be8c..38f4dcc5fd 100644 --- a/app-admin/dotbot/dotbot-1.20.1.ebuild +++ b/app-admin/dotbot/dotbot-1.20.1.ebuild @@ -3,6 +3,7 @@ EAPI=8 +DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{10..12} ) inherit distutils-r1 @@ -20,3 +21,8 @@ RDEPEND=" " distutils_enable_tests pytest + +python_test() { + # test_shim fails when executed with superuser privileges: + epytest -k "not test_shim" #916987 +}