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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3098E15817D for ; Fri, 21 Jun 2024 23:16:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 592E8E2A29; Fri, 21 Jun 2024 23:16:03 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 375F2E2A29 for ; Fri, 21 Jun 2024 23:16:03 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 629A1335C11 for ; Fri, 21 Jun 2024 23:16:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C176A1682 for ; Fri, 21 Jun 2024 23:16:00 +0000 (UTC) From: "Sergey Torokhov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergey Torokhov" Message-ID: <1719011650.d6caaa5b2b32e8ffab78d961631c01c7a8232007.SergeyTorokhov@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/jonquil/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-libs/jonquil/jonquil-0.2.0.ebuild X-VCS-Directories: dev-libs/jonquil/ X-VCS-Committer: SergeyTorokhov X-VCS-Committer-Name: Sergey Torokhov X-VCS-Revision: d6caaa5b2b32e8ffab78d961631c01c7a8232007 X-VCS-Branch: dev Date: Fri, 21 Jun 2024 23:16:00 +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: 6bfc6aed-b8de-4739-84aa-78d8d0ec4239 X-Archives-Hash: 63cfaf879176d5b2d7ce9184fc14b01c commit: d6caaa5b2b32e8ffab78d961631c01c7a8232007 Author: Sergey Torokhov yandex ru> AuthorDate: Fri Jun 21 23:07:16 2024 +0000 Commit: Sergey Torokhov yandex ru> CommitDate: Fri Jun 21 23:14:10 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d6caaa5b dev-libs/jonquil: fix RDEPEND Closes: https://bugs.gentoo.org/932368 Signed-off-by: Sergey Torokhov yandex.ru> dev-libs/jonquil/jonquil-0.2.0.ebuild | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/dev-libs/jonquil/jonquil-0.2.0.ebuild b/dev-libs/jonquil/jonquil-0.2.0.ebuild index b917eb0ac..1824ec26b 100644 --- a/dev-libs/jonquil/jonquil-0.2.0.ebuild +++ b/dev-libs/jonquil/jonquil-0.2.0.ebuild @@ -8,7 +8,7 @@ FORTRAN_STANDARD="2003" inherit cmake fortran-2 DESCRIPTION="Jonquil: Bringing TOML blooms to JSON land" -HOMEPAGE="https://toml-f.readthedocs.io/en/latest/how-to/jonquil/" +HOMEPAGE="https://toml-f.readthedocs.io/en/latest/how-to/jonquil.html" SRC_URI="https://github.com/toml-f/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="Apache-2.0 MIT" @@ -18,8 +18,12 @@ IUSE="test" RESTRICT="!test? ( test )" -DEPEND=" +RDEPEND=" dev-libs/toml-f:0/4 +" + +DEPEND=" + ${RDEPEND} test? ( dev-util/fortran-test-drive ) "