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 1FE9E13835B for ; Fri, 22 Jan 2021 03:34:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CB913E08BB; Fri, 22 Jan 2021 03:34:07 +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 4CC5BE08A8 for ; Fri, 22 Jan 2021 03:34:07 +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 976193410EE for ; Fri, 22 Jan 2021 03:34:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0A2DA4A5 for ; Fri, 22 Jan 2021 03:34:04 +0000 (UTC) From: "Sam James" 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" Message-ID: <1611286439.fe2f7ddd4bad481d50641d6818be7301a3ec456a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-gettext-stub/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2.ebuild X-VCS-Directories: dev-ml/ocaml-gettext-stub/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: fe2f7ddd4bad481d50641d6818be7301a3ec456a X-VCS-Branch: master Date: Fri, 22 Jan 2021 03:34:04 +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: 28d70a7a-f90d-46d6-a384-41286f98c8ca X-Archives-Hash: 1740bc9b10d887565fe16edde43ac4e7 commit: fe2f7ddd4bad481d50641d6818be7301a3ec456a Author: Sam James gentoo org> AuthorDate: Fri Jan 22 02:45:19 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jan 22 03:33:59 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe2f7ddd dev-ml/ocaml-gettext-stub: fixup deps Add extra dependencies: * dev-ml/base:=[ocamlopt] * dev-ml/camomile:=[ocamlopt=] * dev-ml/ocaml-fileutils[ocamlopt=] (test dep) Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2.ebuild | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2.ebuild b/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2.ebuild index 5bed46a16b7..b44afdf6932 100644 --- a/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2.ebuild +++ b/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2.ebuild @@ -11,6 +11,7 @@ inherit dune DESCRIPTION="Support for internationalization of OCaml programs using native gettext library" HOMEPAGE="https://github.com/gildor478/ocaml-gettext" SRC_URI="https://github.com/gildor478/ocaml-gettext/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz" +S="${WORKDIR}/${MY_PN}-${PV}" LICENSE="LGPL-2.1-with-linking-exception" SLOT="0/${PV}" @@ -23,11 +24,14 @@ BDEPEND=" dev-ml/dune-configurator " RDEPEND=" - dev-ml/ocaml-gettext:= + dev-ml/base:=[ocamlopt=] + dev-ml/camomile:=[ocamlopt=] + dev-ml/ocaml-gettext:=[ocamlopt=] " DEPEND=" ${RDEPEND} - test? ( dev-ml/ounit ) + test? ( + dev-ml/ocaml-fileutils[ocamlopt=] + dev-ml/ounit[ocamlopt=] + ) " - -S="${WORKDIR}/${MY_PN}-${PV}"