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 3A46A1382C5 for ; Sat, 30 Jan 2021 23:00:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6CA3BE0AAE; Sat, 30 Jan 2021 23:00:38 +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 39B42E0AAE for ; Sat, 30 Jan 2021 23:00:38 +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 C96F7340E6A for ; Sat, 30 Jan 2021 23:00:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 221064A6 for ; Sat, 30 Jan 2021 23:00:35 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1612047623.1a1ac3ef80648d4b3d14a0e138aae66c5767aa4f.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/logs/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/logs/logs-0.7.0.ebuild X-VCS-Directories: dev-ml/logs/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 1a1ac3ef80648d4b3d14a0e138aae66c5767aa4f X-VCS-Branch: master Date: Sat, 30 Jan 2021 23:00:35 +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: 2d5c573b-0877-40d0-8d93-92441f66171f X-Archives-Hash: 73d8365a6a97955fa678c8cbbe4e941b commit: 1a1ac3ef80648d4b3d14a0e138aae66c5767aa4f Author: Alfredo Tupone gentoo org> AuthorDate: Sat Jan 30 23:00:23 2021 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Sat Jan 30 23:00:23 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a1ac3ef dev-ml/logs: remove failing test Closes: https://bugs.gentoo.org/767940 Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Alfredo Tupone gentoo.org> dev-ml/logs/logs-0.7.0.ebuild | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/dev-ml/logs/logs-0.7.0.ebuild b/dev-ml/logs/logs-0.7.0.ebuild index 7e256da93be..10704a0d8a0 100644 --- a/dev-ml/logs/logs-0.7.0.ebuild +++ b/dev-ml/logs/logs-0.7.0.ebuild @@ -31,6 +31,17 @@ DEPEND="${RDEPEND} test? ( dev-ml/mtime ) " +src_prepare() { + default + sed -i \ + -e "/test\/test_fmt/d" \ + -e "/test\/test_formatter/d" \ + -e "/test\/tool/d" \ + -e "/test\/test_lwt/d" \ + pkg/pkg.ml \ + || die +} + src_compile() { ocaml pkg/pkg.ml build \ --with-js_of_ocaml $(usex javascript true false) \ @@ -38,6 +49,7 @@ src_compile() { --with-cmdliner $(usex cli true false) \ --with-lwt $(usex fmt true false) \ --tests $(usex test true false) \ + --with-base-threads true \ || die }