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 C51B5139694 for ; Fri, 7 Jul 2017 17:58:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E6E05234086; Fri, 7 Jul 2017 17:58:27 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 C0639234086 for ; Fri, 7 Jul 2017 17:58:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 C905C3419FF for ; Fri, 7 Jul 2017 17:58:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A6C747488 for ; Fri, 7 Jul 2017 17:58:24 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1499450297.b9841a83a00a94339e1ff30f6fdd312705b3b972.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/uchar/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/uchar/uchar-0.0.1.ebuild X-VCS-Directories: dev-ml/uchar/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: b9841a83a00a94339e1ff30f6fdd312705b3b972 X-VCS-Branch: master Date: Fri, 7 Jul 2017 17:58:24 +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: c3babe77-fa34-4503-a7d2-b00adb17bbb2 X-Archives-Hash: b0ab531566bd093807560b4c0f536346 commit: b9841a83a00a94339e1ff30f6fdd312705b3b972 Author: Alexis Ballier gentoo org> AuthorDate: Fri Jul 7 17:58:17 2017 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Fri Jul 7 17:58:17 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9841a83 dev-ml/uchar: Restrict tests are they are just checking the lib is installed... bug #624144 Package-Manager: Portage-2.3.6, Repoman-2.3.2 dev-ml/uchar/uchar-0.0.1.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-ml/uchar/uchar-0.0.1.ebuild b/dev-ml/uchar/uchar-0.0.1.ebuild index 55523e016ac..74e9bd312cb 100644 --- a/dev-ml/uchar/uchar-0.0.1.ebuild +++ b/dev-ml/uchar/uchar-0.0.1.ebuild @@ -17,6 +17,11 @@ IUSE="+ocamlopt" RDEPEND=">=dev-lang/ocaml-4.03:=" DEPEND="${RDEPEND} dev-ml/ocamlbuild" +# This is mostly a compat wrapper for older ocaml versions we don't support. No +# need to test it, plus it fails when installing for the first time: +# https://bugs.gentoo.org/show_bug.cgi?id=624144 +RESTRICT="test" + src_compile() { ocaml pkg/build.ml \ "native=$(usex ocamlopt true false)" \