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 6DD32138334 for ; Wed, 1 Aug 2018 12:24:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7855CE0874; Wed, 1 Aug 2018 12:24:30 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 45DE1E0874 for ; Wed, 1 Aug 2018 12:24:30 +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 5953F335C99 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 61A91385 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.f10fe39888c3da22680e76269572b044fe3f02f5.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pypy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pypy/pypy-6.0.0.ebuild dev-python/pypy/pypy-9999.ebuild X-VCS-Directories: dev-python/pypy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: f10fe39888c3da22680e76269572b044fe3f02f5 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: 38727869-baf2-4037-aaf2-c64c0a486d2a X-Archives-Hash: fac36664067deffeca57dfae271db5bf commit: f10fe39888c3da22680e76269572b044fe3f02f5 Author: Michał Górny gentoo org> AuthorDate: Wed Aug 1 12:19:26 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=f10fe398 dev-python/pypy: Fix reenabling byte-compilation for tests Bug: https://bugs.gentoo.org/654242 dev-python/pypy/pypy-6.0.0.ebuild | 4 ++-- dev-python/pypy/pypy-9999.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-python/pypy/pypy-6.0.0.ebuild b/dev-python/pypy/pypy-6.0.0.ebuild index 286b7be69e1..63c1511a472 100644 --- a/dev-python/pypy/pypy-6.0.0.ebuild +++ b/dev-python/pypy/pypy-6.0.0.ebuild @@ -226,9 +226,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() { diff --git a/dev-python/pypy/pypy-9999.ebuild b/dev-python/pypy/pypy-9999.ebuild index c0bc0a26454..d3d73e720f2 100644 --- a/dev-python/pypy/pypy-9999.ebuild +++ b/dev-python/pypy/pypy-9999.ebuild @@ -232,9 +232,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() {