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 54E2B138359 for ; Fri, 18 Sep 2020 11:02:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 744C2E0815; Fri, 18 Sep 2020 11:02:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5A162E0815 for ; Fri, 18 Sep 2020 11:02:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 34D39340FB5 for ; Fri, 18 Sep 2020 11:02:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 97A3E2E1 for ; Fri, 18 Sep 2020 11:02:26 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1600426943.03e5ee5e332a94066172dd4df5322cb3f3a5b35e.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/scons/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/scons/scons-4.0.1.ebuild X-VCS-Directories: dev-util/scons/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 03e5ee5e332a94066172dd4df5322cb3f3a5b35e X-VCS-Branch: master Date: Fri, 18 Sep 2020 11:02:26 +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: d3a537ce-72fa-46cb-a13c-a65b96426c4e X-Archives-Hash: 93314bb6f2e5c56f767fb6a6e47087c7 commit: 03e5ee5e332a94066172dd4df5322cb3f3a5b35e Author: Michał Górny gentoo org> AuthorDate: Fri Sep 18 11:01:51 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Sep 18 11:02:23 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03e5ee5e dev-util/scons: Fix/skip test failures Closes: https://bugs.gentoo.org/712696 Signed-off-by: Michał Górny gentoo.org> dev-util/scons/scons-4.0.1.ebuild | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/dev-util/scons/scons-4.0.1.ebuild b/dev-util/scons/scons-4.0.1.ebuild index 3257b86adaa..11498c389cf 100644 --- a/dev-util/scons/scons-4.0.1.ebuild +++ b/dev-util/scons/scons-4.0.1.ebuild @@ -62,9 +62,20 @@ src_prepare() { # and fix manpage install location sed -i -e '/cmdclass/,/},$/d' \ -e '/data_files/s:man/:share/man/:' "${S}"/setup.py || die + + local remove_tests=( + # TODO: does not respect PATH? + test/Clang + # broken + test/DVIPDF/DVIPDFFLAGS.py + test/Java/swig-dependencies.py + test/Java/multi-step.py + ) + rm -r "${remove_tests[@]}" || die } python_test() { + local -x COLUMNS=80 # set variable from escons() of scons-util.eclass to make env-passthrough patch work within test env local -x GENTOO_SCONS_ENV_PASSTHROUGH=1 # unset some env variables to pass appropriate tests