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 5E7FD15802E for ; Sun, 30 Jun 2024 20:18:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 82C0AE2A48; Sun, 30 Jun 2024 20:18:42 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6622EE2A50 for ; Sun, 30 Jun 2024 20:18:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7131E340BDE for ; Sun, 30 Jun 2024 20:18:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0223A1D9F for ; Sun, 30 Jun 2024 20:18:40 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1719778682.9710dca8c320423fe6e4e2e873c12fbc9fd3b3f7.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/mercury/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/mercury/mercury-22.01.1-r1.ebuild dev-lang/mercury/mercury-22.01.1.ebuild X-VCS-Directories: dev-lang/mercury/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 9710dca8c320423fe6e4e2e873c12fbc9fd3b3f7 X-VCS-Branch: master Date: Sun, 30 Jun 2024 20:18: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: 83f7f5b5-bac8-4d37-b12c-88698c464548 X-Archives-Hash: a53fdc9b5639261c6255fb3372f9328f commit: 9710dca8c320423fe6e4e2e873c12fbc9fd3b3f7 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Sat Jun 1 09:10:21 2024 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Sun Jun 30 20:18:02 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9710dca8 dev-lang/mercury: avoid jdk in RDEPEND according to Java_Developer_Guide Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Signed-off-by: Florian Schmaus gentoo.org> .../{mercury-22.01.1.ebuild => mercury-22.01.1-r1.ebuild} | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/dev-lang/mercury/mercury-22.01.1.ebuild b/dev-lang/mercury/mercury-22.01.1-r1.ebuild similarity index 96% rename from dev-lang/mercury/mercury-22.01.1.ebuild rename to dev-lang/mercury/mercury-22.01.1-r1.ebuild index 37e98fc591fe..1e265cff12ff 100644 --- a/dev-lang/mercury/mercury-22.01.1.ebuild +++ b/dev-lang/mercury/mercury-22.01.1-r1.ebuild @@ -12,6 +12,7 @@ DESCRIPTION="Mercury is a modern general-purpose logic/functional programming la HOMEPAGE="https://mercurylang.org" SRC_URI="https://dl.mercurylang.org/release/${MY_P}.tar.gz https://dev.gentoo.org/~keri/distfiles/mercury/${P}-gentoo-patchset-${PATCHSET_VER}.tar.gz" +S="${WORKDIR}"/${MY_P} LICENSE="GPL-2 LGPL-2" SLOT="0" @@ -20,18 +21,19 @@ KEYWORDS="amd64 x86" IUSE="debug doc emacs examples java mono profile readline test threads trail" RESTRICT="!test? ( test )" -DEPEND="net-libs/libnsl:0= +COMMON_DEP="net-libs/libnsl:0= readline? ( sys-libs/readline:= ) - java? ( >=virtual/jdk-1.8:* ) mono? ( dev-lang/mono ) doc? ( sys-apps/texinfo )" -RDEPEND="${DEPEND} - emacs? ( >=app-editors/emacs-23.1:* )" +DEPEND="${COMMON_DEP} + java? ( >=virtual/jdk-1.8:* )" -BDEPEND="test? ( sys-libs/timezone-data )" +RDEPEND="${COMMON_DEP} + emacs? ( >=app-editors/emacs-23.1:* ) + java? ( >=virtual/jre-1.8:* )" -S="${WORKDIR}"/${MY_P} +BDEPEND="test? ( sys-libs/timezone-data )" SITEFILE=50${PN}-gentoo.el