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 A0B6C139694 for ; Tue, 30 May 2017 07:35:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D84A1E0C58; Tue, 30 May 2017 07:34:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B3DCAE0C58 for ; Tue, 30 May 2017 07:34:49 +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 AC489341745 for ; Tue, 30 May 2017 07:34:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 19FA1746D for ; Tue, 30 May 2017 07:34:47 +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: <1496129678.c3648bb334f8b440fd557c59d8cec6111c5aaf2e.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pypy3-bin/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pypy3-bin/pypy3-bin-5.7.1-r1.ebuild X-VCS-Directories: dev-python/pypy3-bin/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c3648bb334f8b440fd557c59d8cec6111c5aaf2e X-VCS-Branch: master Date: Tue, 30 May 2017 07:34:47 +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: b6deb3f0-182b-4979-910e-4d9eb1e8233d X-Archives-Hash: 31e6c11e80d5539602313529c4ca06f5 commit: c3648bb334f8b440fd557c59d8cec6111c5aaf2e Author: Michał Górny gentoo org> AuthorDate: Tue May 30 07:32:41 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue May 30 07:34:38 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3648bb3 dev-python/pypy3-bin: Fix USE=-gdbm,-sqlite, #545140 dev-python/pypy3-bin/pypy3-bin-5.7.1-r1.ebuild | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dev-python/pypy3-bin/pypy3-bin-5.7.1-r1.ebuild b/dev-python/pypy3-bin/pypy3-bin-5.7.1-r1.ebuild index 1712d2a1dbd..9d7fd440897 100644 --- a/dev-python/pypy3-bin/pypy3-bin-5.7.1-r1.ebuild +++ b/dev-python/pypy3-bin/pypy3-bin-5.7.1-r1.ebuild @@ -114,12 +114,11 @@ src_install() { dodoc README.rst if ! use gdbm; then - rm -r "${ED%/}${dest}"/lib_pypy/gdbm.py \ - "${ED%/}${dest}"/lib-python/*3/test/test_gdbm.py || die + rm -r "${ED%/}${dest}"/lib_pypy/_gdbm* || die fi if ! use sqlite; then rm -r "${ED%/}${dest}"/lib-python/*3/sqlite3 \ - "${ED%/}${dest}"/lib_pypy/_sqlite3.py \ + "${ED%/}${dest}"/lib_pypy/_sqlite3* \ "${ED%/}${dest}"/lib-python/*3/test/test_sqlite.py || die fi if ! use tk; then