diff options
author | Sam James <sam@gentoo.org> | 2020-10-22 13:32:23 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2020-10-22 13:32:28 +0000 |
commit | 9b5152cc5afeb696ec55aac8b6c0ca1b4934f99d (patch) | |
tree | 66c390394b64376ee0a2819df704ac9cbe12a9f8 /dev-ml/extlib | |
parent | dev-util/cbindgen: drop old (diff) | |
download | gentoo-9b5152cc5afeb696ec55aac8b6c0ca1b4934f99d.tar.gz gentoo-9b5152cc5afeb696ec55aac8b6c0ca1b4934f99d.tar.bz2 gentoo-9b5152cc5afeb696ec55aac8b6c0ca1b4934f99d.zip |
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@gentoo.org>
Diffstat (limited to 'dev-ml/extlib')
-rw-r--r-- | dev-ml/extlib/extlib-1.7.7.ebuild | 13 |
1 files 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 ff4c64b84664..aa9752bf395f 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}" |