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 820AE15808D for ; Sat, 23 Apr 2022 15:22:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 645C6E092B; Sat, 23 Apr 2022 15:22:24 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 9CFFBE092B for ; Sat, 23 Apr 2022 15:22:23 +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 EFD04341361 for ; Sat, 23 Apr 2022 15:22:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 36AEF398 for ; Sat, 23 Apr 2022 15:22:19 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1650727311.2fcd08fb9215e6ece3775aba9793c50e6a14817c.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/pkgcore/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/pkgcore/pkgcore-0.12.10.ebuild sys-apps/pkgcore/pkgcore-9999.ebuild X-VCS-Directories: sys-apps/pkgcore/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 2fcd08fb9215e6ece3775aba9793c50e6a14817c X-VCS-Branch: master Date: Sat, 23 Apr 2022 15:22:19 +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: ffd0ec5f-1e66-4063-a02e-21ed5f5b9110 X-Archives-Hash: 8e3f0848896f08fafb3574d80787ddbd commit: 2fcd08fb9215e6ece3775aba9793c50e6a14817c Author: Mike Gilbert gentoo org> AuthorDate: Sat Apr 23 15:21:51 2022 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sat Apr 23 15:21:51 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fcd08fb sys-apps/pkgcore: addpredict / for tests Closes: https://bugs.gentoo.org/840266 Signed-off-by: Mike Gilbert gentoo.org> sys-apps/pkgcore/pkgcore-0.12.10.ebuild | 5 +++++ sys-apps/pkgcore/pkgcore-9999.ebuild | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/sys-apps/pkgcore/pkgcore-0.12.10.ebuild b/sys-apps/pkgcore/pkgcore-0.12.10.ebuild index 9f81bcac50ec..10463ba06f4d 100644 --- a/sys-apps/pkgcore/pkgcore-0.12.10.ebuild +++ b/sys-apps/pkgcore/pkgcore-0.12.10.ebuild @@ -39,6 +39,11 @@ BDEPEND=" distutils_enable_tests setup.py src_test() { + # With PYTHONDONTWRITEBYTECODE=, python will try rebuild all sorts of modules. + # https://bugs.gentoo.org/840266 + local -x SANDBOX_PREDICT=${SANDBOX_PREDICT} + addpredict / + local -x PYTHONDONTWRITEBYTECODE= distutils-r1_src_test } diff --git a/sys-apps/pkgcore/pkgcore-9999.ebuild b/sys-apps/pkgcore/pkgcore-9999.ebuild index f6d5f97f6274..9473f2dfdaa0 100644 --- a/sys-apps/pkgcore/pkgcore-9999.ebuild +++ b/sys-apps/pkgcore/pkgcore-9999.ebuild @@ -39,6 +39,11 @@ BDEPEND=" distutils_enable_tests setup.py src_test() { + # With PYTHONDONTWRITEBYTECODE=, python will try rebuild all sorts of modules. + # https://bugs.gentoo.org/840266 + local -x SANDBOX_PREDICT=${SANDBOX_PREDICT} + addpredict / + local -x PYTHONDONTWRITEBYTECODE= distutils-r1_src_test }