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 BA302139694 for ; Thu, 20 Apr 2017 20:48:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ECF5BE0E14; Thu, 20 Apr 2017 20:48:36 +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 CAB3BE0E14 for ; Thu, 20 Apr 2017 20:48:36 +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 596653416CA for ; Thu, 20 Apr 2017 20:48:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BEF487449 for ; Thu, 20 Apr 2017 20:48:27 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1492721255.1e702d05eff935b4e4cf11b805d5f06c746b0b96.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/rr/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/rr/rr-4.5.0.ebuild X-VCS-Directories: dev-util/rr/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 1e702d05eff935b4e4cf11b805d5f06c746b0b96 X-VCS-Branch: master Date: Thu, 20 Apr 2017 20:48:27 +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: 540e54f0-5050-4206-b985-3734dacb7d0b X-Archives-Hash: 49c6f9b0fc6a939ed6308b92f9a37c9e commit: 1e702d05eff935b4e4cf11b805d5f06c746b0b96 Author: David Seifert gentoo org> AuthorDate: Thu Apr 20 20:24:22 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Thu Apr 20 20:47:35 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e702d05 dev-util/rr: [QA] Add missing python metadata variables Package-Manager: Portage-2.3.5, Repoman-2.3.2 dev-util/rr/rr-4.5.0.ebuild | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/dev-util/rr/rr-4.5.0.ebuild b/dev-util/rr/rr-4.5.0.ebuild index 4c58f36c34f..fd1d69c293d 100644 --- a/dev-util/rr/rr-4.5.0.ebuild +++ b/dev-util/rr/rr-4.5.0.ebuild @@ -16,8 +16,11 @@ LICENSE="MIT BSD-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="test" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" -DEPEND="sys-libs/zlib" +DEPEND=" + sys-libs/zlib + ${PYTHON_DEPS}" RDEPEND="${DEPEND} sys-devel/gdb[xml]" # Add all the deps needed only at build/test time. @@ -25,8 +28,7 @@ DEPEND+=" test? ( dev-python/pexpect[${PYTHON_USEDEP}] sys-devel/gdb[xml] - ) - ${PYTHON_DEPS}" + )" PATCHES=( "${FILESDIR}"/${P}-sysmacros.patch @@ -41,7 +43,7 @@ pkg_setup() { } src_prepare() { - default + cmake-utils_src_prepare sed -i 's:-Werror::' CMakeLists.txt || die #609192 }