From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1216896-garchives=archives.gentoo.org@lists.gentoo.org> 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 9E9EE138359 for <garchives@archives.gentoo.org>; Thu, 22 Oct 2020 13:32:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 78DEFE0839; Thu, 22 Oct 2020 13:32:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 634A7E0839 for <gentoo-commits@lists.gentoo.org>; Thu, 22 Oct 2020 13:32:35 +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 120C0340E8A for <gentoo-commits@lists.gentoo.org>; Thu, 22 Oct 2020 13:32:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 75EC033A for <gentoo-commits@lists.gentoo.org>; Thu, 22 Oct 2020 13:32:32 +0000 (UTC) From: "Sam James" <sam@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org> Message-ID: <1603373548.9b5152cc5afeb696ec55aac8b6c0ca1b4934f99d.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/extlib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/extlib/extlib-1.7.7.ebuild X-VCS-Directories: dev-ml/extlib/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9b5152cc5afeb696ec55aac8b6c0ca1b4934f99d X-VCS-Branch: master Date: Thu, 22 Oct 2020 13:32:32 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 91136bea-4d15-48bd-a1e4-4d6bb4f5191e X-Archives-Hash: df00db686071d084736a47712d1abef0 commit: 9b5152cc5afeb696ec55aac8b6c0ca1b4934f99d Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Thu Oct 22 13:32:23 2020 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu Oct 22 13:32:28 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b5152cc dev-ml/extlib: add lower bound on cppo Bug: https://bugs.gentoo.org/704146 Package-Manager: Portage-3.0.8, Repoman-3.0.2 Signed-off-by: Sam James <sam <AT> gentoo.org> dev-ml/extlib/extlib-1.7.7.ebuild | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/dev-ml/extlib/extlib-1.7.7.ebuild b/dev-ml/extlib/extlib-1.7.7.ebuild index ff4c64b8466..aa9752bf395 100644 --- a/dev-ml/extlib/extlib-1.7.7.ebuild +++ b/dev-ml/extlib/extlib-1.7.7.ebuild @@ -11,18 +11,17 @@ SRC_URI="https://github.com/ygrek/ocaml-extlib/archive/${PV}.tar.gz -> ${P}.tar. LICENSE="LGPL-2.1" SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos" IUSE="doc +ocamlopt" -RDEPEND=" - dev-lang/ocaml:=[ocamlopt?] -" -DEPEND="${RDEPEND} - dev-ml/cppo" +# See bug #704146 +BDEPEND=">=dev-ml/cppo-1.6.6" +RDEPEND="dev-lang/ocaml:=[ocamlopt?]" +DEPEND="${RDEPEND}" PATCHES=( "${FILESDIR}"/${PN}-1.7.7-no-git.patch - ) +) S="${WORKDIR}/ocaml-${P}"