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 F32FB138334 for ; Thu, 18 Apr 2019 05:12:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AF341E09C8; Thu, 18 Apr 2019 05:12:02 +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 8E2B7E09C8 for ; Thu, 18 Apr 2019 05:12:02 +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 9894A3417E5 for ; Thu, 18 Apr 2019 05:12:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C11F45B1 for ; Thu, 18 Apr 2019 05:11:58 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1555564233.49f18ba9825592e2425b6e793a706c73d41599c7.robbat2@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/redis/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/redis/redis-4.0.14.ebuild dev-db/redis/redis-5.0.4.ebuild X-VCS-Directories: dev-db/redis/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 49f18ba9825592e2425b6e793a706c73d41599c7 X-VCS-Branch: master Date: Thu, 18 Apr 2019 05:11:58 +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: 924c1148-c241-4d8a-83be-4a70ae09e11a X-Archives-Hash: 9f10fbd45a3f3b941e88cbcb9f45ede8 commit: 49f18ba9825592e2425b6e793a706c73d41599c7 Author: Robin H. Johnson gentoo org> AuthorDate: Thu Apr 18 04:16:28 2019 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Thu Apr 18 05:10:33 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49f18ba9 dev-db/redis: fix Tcl BDEPEND req Package-Manager: Portage-2.3.62, Repoman-2.3.12 Fixes: http://github.com/gentoo/gentoo/pull/11456#discussion_r268048208 Signed-off-by: Robin H. Johnson gentoo.org> dev-db/redis/redis-4.0.14.ebuild | 9 +++++---- dev-db/redis/redis-5.0.4.ebuild | 9 +++++---- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/dev-db/redis/redis-4.0.14.ebuild b/dev-db/redis/redis-4.0.14.ebuild index 1f0ac4ef03d..5f2c18f61cb 100644 --- a/dev-db/redis/redis-4.0.14.ebuild +++ b/dev-db/redis/redis-4.0.14.ebuild @@ -23,13 +23,14 @@ RDEPEND=" tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-3.2 )" -DEPEND=" - ${RDEPEND} - test? ( dev-lang/tcl:0= )" - BDEPEND=" + ${RDEPEND} virtual/pkgconfig" +# Tcl is only needed in the CHOST test env +DEPEND="${RDEPEND} + test? ( dev-lang/tcl:0= )" + REQUIRED_USE="?? ( tcmalloc jemalloc )" pkg_setup() { diff --git a/dev-db/redis/redis-5.0.4.ebuild b/dev-db/redis/redis-5.0.4.ebuild index ec8944b4940..519fc3837ca 100644 --- a/dev-db/redis/redis-5.0.4.ebuild +++ b/dev-db/redis/redis-5.0.4.ebuild @@ -23,13 +23,14 @@ RDEPEND=" tcmalloc? ( dev-util/google-perftools ) jemalloc? ( >=dev-libs/jemalloc-5.1:= )" -DEPEND=" - ${RDEPEND} - test? ( dev-lang/tcl:0= )" - BDEPEND=" + ${RDEPEND} virtual/pkgconfig" +# Tcl is only needed in the CHOST test env +DEPEND="${RDEPEND} + test? ( dev-lang/tcl:0= )" + REQUIRED_USE="?? ( tcmalloc jemalloc )" pkg_setup() {