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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CD2A6158086 for ; Sun, 12 Dec 2021 12:14:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B3DD9E07D4; Sun, 12 Dec 2021 12:14:58 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9940BE07D4 for ; Sun, 12 Dec 2021 12:14:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 534DF343258 for ; Sun, 12 Dec 2021 12:14:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C2753177 for ; Sun, 12 Dec 2021 12:14:53 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1639311290.61686012dfc33cda5b87f4726ffce518c68897dc.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/why3/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/why3/why3-1.4.0-r1.ebuild sci-mathematics/why3/why3-1.4.0.ebuild X-VCS-Directories: sci-mathematics/why3/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 61686012dfc33cda5b87f4726ffce518c68897dc X-VCS-Branch: master Date: Sun, 12 Dec 2021 12:14:53 +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: eac30d14-0886-45c7-94f8-00fcf7d7112f X-Archives-Hash: 974a880011c31e703072250cfed2f754 commit: 61686012dfc33cda5b87f4726ffce518c68897dc Author: Maciej Barć gentoo org> AuthorDate: Sun Dec 12 12:13:18 2021 +0000 Commit: Maciej Barć gentoo org> CommitDate: Sun Dec 12 12:14:50 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61686012 sci-mathematics/why3: fix *DEPEND Closes: https://bugs.gentoo.org/828974 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Maciej Barć gentoo.org> .../{why3-1.4.0.ebuild => why3-1.4.0-r1.ebuild} | 31 ++++++++++++---------- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/sci-mathematics/why3/why3-1.4.0.ebuild b/sci-mathematics/why3/why3-1.4.0-r1.ebuild similarity index 83% rename from sci-mathematics/why3/why3-1.4.0.ebuild rename to sci-mathematics/why3/why3-1.4.0-r1.ebuild index 42012b020215..badf49628e94 100644 --- a/sci-mathematics/why3/why3-1.4.0.ebuild +++ b/sci-mathematics/why3/why3-1.4.0-r1.ebuild @@ -16,27 +16,30 @@ IUSE="coq doc emacs gtk +ocamlopt re sexp +zarith zip" RDEPEND=" !sci-mathematics/why3-for-spark - >=dev-lang/ocaml-4.05.0[ocamlopt?] - >=dev-ml/menhir-20151112 - dev-ml/num + >=dev-lang/ocaml-4.05.0:=[ocamlopt?] + >=dev-ml/menhir-20151112:= + dev-ml/num:= coq? ( >=sci-mathematics/coq-8.6 ) + emacs? ( app-editors/emacs:* ) + gtk? ( dev-ml/lablgtk:=[sourceview,ocamlopt?] ) + re? ( dev-ml/re:= dev-ml/seq:= ) + sexp? ( + dev-ml/ppx_deriving:=[ocamlopt?] + dev-ml/ppx_sexp_conv:=[ocamlopt?] + dev-ml/sexplib:=[ocamlopt?] + ) + zarith? ( dev-ml/zarith:= ) + zip? ( dev-ml/camlzip:= ) +" +DEPEND="${RDEPEND}" +BDEPEND=" doc? ( dev-python/sphinx dev-python/sphinxcontrib-bibtex + media-gfx/graphviz || ( dev-texlive/texlive-latex dev-tex/latexmk dev-tex/rubber ) ) - emacs? ( app-editors/emacs:* ) - gtk? ( dev-ml/lablgtk:*[sourceview,ocamlopt?] ) - re? ( dev-ml/re dev-ml/seq ) - sexp? ( - dev-ml/ppx_deriving[ocamlopt?] - dev-ml/ppx_sexp_conv[ocamlopt?] - dev-ml/sexplib[ocamlopt?] - ) - zarith? ( dev-ml/zarith ) - zip? ( dev-ml/camlzip ) " -DEPEND="${RDEPEND}" DOCS=( CHANGES.md README.md )