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 1C6CB138335 for ; Sat, 20 Jul 2019 22:34:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 542F2E0784; Sat, 20 Jul 2019 22:34:58 +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 3A0B3E0784 for ; Sat, 20 Jul 2019 22:34:58 +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 C6E1A34827E for ; Sat, 20 Jul 2019 22:34:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AEE1270D for ; Sat, 20 Jul 2019 22:34:54 +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: <1563662076.2b098bc830ca4bb37d75fd0295984157b07a71e8.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/lit/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/lit/lit-9999.ebuild X-VCS-Directories: dev-python/lit/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 2b098bc830ca4bb37d75fd0295984157b07a71e8 X-VCS-Branch: master Date: Sat, 20 Jul 2019 22:34:54 +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: ff19dd91-429c-4292-a5e2-350dc70502b2 X-Archives-Hash: c85ddf5b39a8365fd2d9af71a0ae9d4d commit: 2b098bc830ca4bb37d75fd0295984157b07a71e8 Author: Michał Górny gentoo org> AuthorDate: Sat Jul 20 20:55:08 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jul 20 22:34:36 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b098bc8 dev-python/lit: Bump -9999 to EAPI 7 Signed-off-by: Michał Górny gentoo.org> dev-python/lit/lit-9999.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-python/lit/lit-9999.ebuild b/dev-python/lit/lit-9999.ebuild index 0f71b5bb84c..48607eb9c90 100644 --- a/dev-python/lit/lit-9999.ebuild +++ b/dev-python/lit/lit-9999.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 PYTHON_COMPAT=( python2_7 python3_{5,6,7} ) inherit distutils-r1 git-r3 multiprocessing @@ -35,6 +35,7 @@ src_unpack() { } python_test() { + local -x LIT_PRESERVES_TMP=1 ./lit.py -j "${LIT_JOBS:-$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")}" \ -vv tests || die }