From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 105F71388C2 for ; Wed, 2 Mar 2016 19:29:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2A8E421C01A; Wed, 2 Mar 2016 19:29:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 7623B21C015 for ; Wed, 2 Mar 2016 19:29:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A3DAB340C23 for ; Wed, 2 Mar 2016 19:29:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A5D75CEB for ; Wed, 2 Mar 2016 19:29:13 +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: <1456946946.a5d5fe389f81e22c28fdc87811d1f0bcfaa30be0.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlidl/files/, dev-ml/camlidl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/camlidl/camlidl-1.05-r1.ebuild dev-ml/camlidl/files/nowarn.patch X-VCS-Directories: dev-ml/camlidl/ dev-ml/camlidl/files/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: a5d5fe389f81e22c28fdc87811d1f0bcfaa30be0 X-VCS-Branch: master Date: Wed, 2 Mar 2016 19:29:13 +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: 62202bcf-f708-4304-acb2-6ea0ad4d5d4e X-Archives-Hash: 3c41423c667723659ed987236b336e0d commit: a5d5fe389f81e22c28fdc87811d1f0bcfaa30be0 Author: Alexis Ballier gentoo org> AuthorDate: Tue Mar 1 19:37:21 2016 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Wed Mar 2 19:29:06 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5d5fe38 dev-ml/camlidl: disable warnings so that it build with ocaml 4.03 Package-Manager: portage-2.2.27 Signed-off-by: Alexis Ballier gentoo.org> dev-ml/camlidl/camlidl-1.05-r1.ebuild | 1 + dev-ml/camlidl/files/nowarn.patch | 13 +++++++++++++ 2 files changed, 14 insertions(+) diff --git a/dev-ml/camlidl/camlidl-1.05-r1.ebuild b/dev-ml/camlidl/camlidl-1.05-r1.ebuild index ea4debe..496779c 100644 --- a/dev-ml/camlidl/camlidl-1.05-r1.ebuild +++ b/dev-ml/camlidl/camlidl-1.05-r1.ebuild @@ -19,6 +19,7 @@ RDEPEND="${DEPEND}" src_prepare() { epatch "${FILESDIR}/tests.patch" epatch "${FILESDIR}/includes.patch" + epatch "${FILESDIR}/nowarn.patch" } src_compile() { diff --git a/dev-ml/camlidl/files/nowarn.patch b/dev-ml/camlidl/files/nowarn.patch new file mode 100644 index 0000000..8b457cf --- /dev/null +++ b/dev-ml/camlidl/files/nowarn.patch @@ -0,0 +1,13 @@ +Index: camlidl-1.05/compiler/Makefile +=================================================================== +--- camlidl-1.05.orig/compiler/Makefile ++++ camlidl-1.05/compiler/Makefile +@@ -29,7 +29,7 @@ PROG=camlidl$(EXE) + all: $(PROG) + + $(PROG): $(OBJS) +- $(OCAMLC) -o $(PROG) $(OBJS) ++ $(OCAMLC) -w -a -o $(PROG) $(OBJS) + + clean:: + rm -f $(PROG)