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 C20E4138334 for ; Wed, 1 Aug 2018 12:24:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8F929E086F; Wed, 1 Aug 2018 12:24: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 63D5FE086F for ; Wed, 1 Aug 2018 12:24:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 529CE335C42 for ; Wed, 1 Aug 2018 12:24:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4C84B2CC for ; Wed, 1 Aug 2018 12:24:25 +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: <1533126253.23adb45b7927b2760cb129453087346ee486ef5c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pypy-bin/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pypy-bin/pypy-bin-6.0.0.ebuild X-VCS-Directories: dev-python/pypy-bin/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 23adb45b7927b2760cb129453087346ee486ef5c X-VCS-Branch: master Date: Wed, 1 Aug 2018 12:24: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-Archives-Salt: c7c3818a-5d1d-4331-b57f-83e75cefe8b1 X-Archives-Hash: 3d9522ffb316b1004e77c08f9c499a32 commit: 23adb45b7927b2760cb129453087346ee486ef5c Author: Michał Górny gentoo org> AuthorDate: Wed Aug 1 12:18:34 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Aug 1 12:24:13 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23adb45b dev-python/pypy-bin: Fix reenabling byte-compilation for tests Bug: https://bugs.gentoo.org/637208 dev-python/pypy-bin/pypy-bin-6.0.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/pypy-bin/pypy-bin-6.0.0.ebuild b/dev-python/pypy-bin/pypy-bin-6.0.0.ebuild index ef34c44ba08..312b592c270 100644 --- a/dev-python/pypy-bin/pypy-bin-6.0.0.ebuild +++ b/dev-python/pypy-bin/pypy-bin-6.0.0.ebuild @@ -148,9 +148,9 @@ src_compile() { src_test() { # (unset) - local -x PYTHONDONTWRITEBYTECODE + local -x PYTHONDONTWRITEBYTECODE= - ./pypy-c ./pypy/test_all.py --pypy=./pypy-c lib-python || die + ./pypy-c ./pypy/test_all.py --pypy=./pypy-c -vv lib-python || die } src_install() {