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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 893A8158089 for ; Mon, 23 Oct 2023 03:20:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4A7AC2BC033; Mon, 23 Oct 2023 03:20:29 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 36FBC2BC033 for ; Mon, 23 Oct 2023 03:20:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 82A63335CF4 for ; Mon, 23 Oct 2023 03:20:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5ED7C12BF for ; Mon, 23 Oct 2023 03:20:25 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1698030806.ca57c391b4f1ebdceb761c8d88cbf04d590e105b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-haskell/tasty-rerun/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-haskell/tasty-rerun/tasty-rerun-1.1.18.ebuild X-VCS-Directories: dev-haskell/tasty-rerun/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ca57c391b4f1ebdceb761c8d88cbf04d590e105b X-VCS-Branch: master Date: Mon, 23 Oct 2023 03:20: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 367ee9ea-067d-42f7-b7e9-1ba0ccf53a39 X-Archives-Hash: 70e60d081626f202ca29a2a5162558bf commit: ca57c391b4f1ebdceb761c8d88cbf04d590e105b Author: hololeap protonmail com> AuthorDate: Fri Oct 6 06:15:47 2023 +0000 Commit: Sam James gentoo org> CommitDate: Mon Oct 23 03:13:26 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca57c391 dev-haskell/tasty-rerun: Migrate to CABAL_CHDEPS Signed-off-by: hololeap protonmail.com> Signed-off-by: Sam James gentoo.org> dev-haskell/tasty-rerun/tasty-rerun-1.1.18.ebuild | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/dev-haskell/tasty-rerun/tasty-rerun-1.1.18.ebuild b/dev-haskell/tasty-rerun/tasty-rerun-1.1.18.ebuild index 1d083190604c..6396f90026b0 100644 --- a/dev-haskell/tasty-rerun/tasty-rerun-1.1.18.ebuild +++ b/dev-haskell/tasty-rerun/tasty-rerun-1.1.18.ebuild @@ -29,8 +29,6 @@ DEPEND="${RDEPEND} >=dev-haskell/cabal-1.18.1.3 " -src_prepare() { - default - cabal_chdeps \ - 'base >=4.6 && <4.15' 'base >=4.6' -} +CABAL_CHDEPS=( + 'base >=4.6 && <4.15' 'base >=4.6' +)