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 5C618139696 for ; Fri, 30 Jun 2017 12:47:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A5BFBE0BE6; Fri, 30 Jun 2017 12:47:30 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 81D27E0BE6 for ; Fri, 30 Jun 2017 12:47:30 +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 01D90341914 for ; Fri, 30 Jun 2017 12:47:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 68B51749E for ; Fri, 30 Jun 2017 12:47:27 +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: <1498826833.7d8d3aac004f94526b26cbaf6162308a79df0f68.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/jbuilder/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/jbuilder/jbuilder-1.0_beta10.ebuild X-VCS-Directories: dev-ml/jbuilder/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: 7d8d3aac004f94526b26cbaf6162308a79df0f68 X-VCS-Branch: master Date: Fri, 30 Jun 2017 12:47:27 +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: b0949615-c5e9-473a-88e2-d6ca42a37fc8 X-Archives-Hash: c5c4263168516e9ca8ccee5fcadf8f9f commit: 7d8d3aac004f94526b26cbaf6162308a79df0f68 Author: Alexis Ballier gentoo org> AuthorDate: Fri Jun 30 11:46:57 2017 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Fri Jun 30 12:47:13 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d8d3aac dev-ml/jbuilder: Disable -Werror like behavior; ocaml 4.05 generates some new warnings. Package-Manager: Portage-2.3.6, Repoman-2.3.2 dev-ml/jbuilder/jbuilder-1.0_beta10.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-ml/jbuilder/jbuilder-1.0_beta10.ebuild b/dev-ml/jbuilder/jbuilder-1.0_beta10.ebuild index e085a50586f..7207b149918 100644 --- a/dev-ml/jbuilder/jbuilder-1.0_beta10.ebuild +++ b/dev-ml/jbuilder/jbuilder-1.0_beta10.ebuild @@ -25,6 +25,11 @@ OPAMSWITCH="system" S="${WORKDIR}/${MY_P}" OPAMROOT="${D}" +src_prepare() { + # Disable Werror like behavior, doesnt build with ocaml 4.05 otherwise + sed -i -e 's/--dev//' Makefile || die +} + src_install() { opam-installer -i \ --prefix="${ED}/usr" \