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 38FE313835C for ; Sat, 13 Mar 2021 15:26:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C85BCE0887; Sat, 13 Mar 2021 15:26:23 +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 ADDE7E0887 for ; Sat, 13 Mar 2021 15:26:23 +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 C327A340C35 for ; Sat, 13 Mar 2021 15:26:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E056F5AE for ; Sat, 13 Mar 2021 15:26:18 +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: <1615649007.97d54218311df5ab6a2151b54c33329c95726c70.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-fileutils/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/ocaml-fileutils/ocaml-fileutils-0.6.2.ebuild X-VCS-Directories: dev-ml/ocaml-fileutils/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 97d54218311df5ab6a2151b54c33329c95726c70 X-VCS-Branch: master Date: Sat, 13 Mar 2021 15:26:18 +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: f98aaa8f-ccdb-43fd-9444-5eb831f10337 X-Archives-Hash: 93fa3ab18598cfa75f2bd1638df01d71 commit: 97d54218311df5ab6a2151b54c33329c95726c70 Author: Sam James gentoo org> AuthorDate: Sat Mar 13 11:15:35 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Mar 13 15:23:27 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97d54218 dev-ml/ocaml-fileutils: convert to dev-ml/ounit2 for tests Signed-off-by: Sam James gentoo.org> dev-ml/ocaml-fileutils/ocaml-fileutils-0.6.2.ebuild | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dev-ml/ocaml-fileutils/ocaml-fileutils-0.6.2.ebuild b/dev-ml/ocaml-fileutils/ocaml-fileutils-0.6.2.ebuild index dee951267de..1afeea13852 100644 --- a/dev-ml/ocaml-fileutils/ocaml-fileutils-0.6.2.ebuild +++ b/dev-ml/ocaml-fileutils/ocaml-fileutils-0.6.2.ebuild @@ -22,3 +22,10 @@ DEPEND=">=dev-ml/ounit-2.0.0 DOCS=( "README.md" "CHANGES.md" "LICENSE.txt" ) S="${WORKDIR}/${DUNE_PKG_NAME}-v${PV}" + +src_prepare() { + default + + # Port to dev-ml/ounit2 + sed -i -e 's/oUnit/ounit2/' test/dune || die +}