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 A6249138334 for ; Sun, 20 Oct 2019 11:41:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E9A1CE0A7E; Sun, 20 Oct 2019 11:41:44 +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 C1704E0A7E for ; Sun, 20 Oct 2019 11:41:44 +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 7B14D34C09F for ; Sun, 20 Oct 2019 11:41:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F33677FE for ; Sun, 20 Oct 2019 11:41:40 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1571571600.4baeef9480ed2b767b8dfe2e1292a5542534ef2f.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlp5/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/camlp5/camlp5-6.17.ebuild dev-ml/camlp5/camlp5-7.00.ebuild dev-ml/camlp5/camlp5-7.01.ebuild dev-ml/camlp5/camlp5-7.03.ebuild X-VCS-Directories: dev-ml/camlp5/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 4baeef9480ed2b767b8dfe2e1292a5542534ef2f X-VCS-Branch: master Date: Sun, 20 Oct 2019 11:41:40 +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: 1dbd4e41-7edb-439f-93dc-f88510038538 X-Archives-Hash: 5b298f6d4e07ff70aa9b217ad7c40ad7 commit: 4baeef9480ed2b767b8dfe2e1292a5542534ef2f Author: Alessandro Barbieri gmail com> AuthorDate: Sun Oct 13 16:45:43 2019 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Oct 20 11:40:00 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4baeef94 dev-ml/camlp5: ocaml version upper bound Closes: https://github.com/gentoo/gentoo/pull/13275 Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Alessandro Barbieri gmail.com> Signed-off-by: David Seifert gentoo.org> dev-ml/camlp5/camlp5-6.17.ebuild | 9 ++++++--- dev-ml/camlp5/camlp5-7.00.ebuild | 9 ++++++--- dev-ml/camlp5/camlp5-7.01.ebuild | 9 ++++++--- dev-ml/camlp5/camlp5-7.03.ebuild | 9 ++++++--- 4 files changed, 24 insertions(+), 12 deletions(-) diff --git a/dev-ml/camlp5/camlp5-6.17.ebuild b/dev-ml/camlp5/camlp5-6.17.ebuild index 9f3df08d5fb..96b44eda917 100644 --- a/dev-ml/camlp5/camlp5-6.17.ebuild +++ b/dev-ml/camlp5/camlp5-6.17.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -16,7 +16,10 @@ SLOT="0/${PV}" KEYWORDS="alpha amd64 ppc x86" IUSE="doc +ocamlopt" -DEPEND=">=dev-lang/ocaml-3.10:=[ocamlopt?]" +DEPEND=" + >=dev-lang/ocaml-3.10:=[ocamlopt?] + <=dev-lang/ocaml-4.4.2 +" RDEPEND="${DEPEND}" PATCHLEVEL=${PV#*_p} @@ -44,7 +47,7 @@ src_configure() { ./configure \ --strict \ -prefix /usr \ - -bindir /usr/bin \ + -bindir /usr/bin \ -libdir /usr/$(get_libdir)/ocaml \ -mandir /usr/share/man || die "configure failed" } diff --git a/dev-ml/camlp5/camlp5-7.00.ebuild b/dev-ml/camlp5/camlp5-7.00.ebuild index 547a32353af..2ead52bac71 100644 --- a/dev-ml/camlp5/camlp5-7.00.ebuild +++ b/dev-ml/camlp5/camlp5-7.00.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -16,7 +16,10 @@ SLOT="0/${PV}" KEYWORDS="~alpha ~amd64 ~ppc ~x86" IUSE="doc +ocamlopt" -DEPEND=">=dev-lang/ocaml-3.10:=[ocamlopt?]" +DEPEND=" + >=dev-lang/ocaml-3.10:=[ocamlopt?] + <=dev-lang/ocaml-4.6.0 +" RDEPEND="${DEPEND}" PATCHLEVEL=${PV#*_p} @@ -40,7 +43,7 @@ src_configure() { ./configure \ --strict \ -prefix /usr \ - -bindir /usr/bin \ + -bindir /usr/bin \ -libdir /usr/$(get_libdir)/ocaml \ -mandir /usr/share/man || die "configure failed" } diff --git a/dev-ml/camlp5/camlp5-7.01.ebuild b/dev-ml/camlp5/camlp5-7.01.ebuild index 547a32353af..2ead52bac71 100644 --- a/dev-ml/camlp5/camlp5-7.01.ebuild +++ b/dev-ml/camlp5/camlp5-7.01.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -16,7 +16,10 @@ SLOT="0/${PV}" KEYWORDS="~alpha ~amd64 ~ppc ~x86" IUSE="doc +ocamlopt" -DEPEND=">=dev-lang/ocaml-3.10:=[ocamlopt?]" +DEPEND=" + >=dev-lang/ocaml-3.10:=[ocamlopt?] + <=dev-lang/ocaml-4.6.0 +" RDEPEND="${DEPEND}" PATCHLEVEL=${PV#*_p} @@ -40,7 +43,7 @@ src_configure() { ./configure \ --strict \ -prefix /usr \ - -bindir /usr/bin \ + -bindir /usr/bin \ -libdir /usr/$(get_libdir)/ocaml \ -mandir /usr/share/man || die "configure failed" } diff --git a/dev-ml/camlp5/camlp5-7.03.ebuild b/dev-ml/camlp5/camlp5-7.03.ebuild index 547a32353af..2ead52bac71 100644 --- a/dev-ml/camlp5/camlp5-7.03.ebuild +++ b/dev-ml/camlp5/camlp5-7.03.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -16,7 +16,10 @@ SLOT="0/${PV}" KEYWORDS="~alpha ~amd64 ~ppc ~x86" IUSE="doc +ocamlopt" -DEPEND=">=dev-lang/ocaml-3.10:=[ocamlopt?]" +DEPEND=" + >=dev-lang/ocaml-3.10:=[ocamlopt?] + <=dev-lang/ocaml-4.6.0 +" RDEPEND="${DEPEND}" PATCHLEVEL=${PV#*_p} @@ -40,7 +43,7 @@ src_configure() { ./configure \ --strict \ -prefix /usr \ - -bindir /usr/bin \ + -bindir /usr/bin \ -libdir /usr/$(get_libdir)/ocaml \ -mandir /usr/share/man || die "configure failed" }