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 C9755158089 for ; Sun, 8 Oct 2023 06:44:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 89D272BC06E; Sun, 8 Oct 2023 06:44: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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6E1402BC06E for ; Sun, 8 Oct 2023 06:44:58 +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 8AEA9335CAF for ; Sun, 8 Oct 2023 06:44:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6D6D3BF0 for ; Sun, 8 Oct 2023 06:44:54 +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: <1696747435.d4d56b1e030d21e6c799d09ee1e1793169fc1319.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/jdupes/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/jdupes/jdupes-1.26.1.ebuild app-misc/jdupes/jdupes-9999.ebuild X-VCS-Directories: app-misc/jdupes/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d4d56b1e030d21e6c799d09ee1e1793169fc1319 X-VCS-Branch: master Date: Sun, 8 Oct 2023 06:44:54 +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: 2ab02f90-a938-40e9-9bd6-28e1a5e8be3f X-Archives-Hash: 0e8c3132e2406b44b65d7e6893e99ec1 commit: d4d56b1e030d21e6c799d09ee1e1793169fc1319 Author: Sam James gentoo org> AuthorDate: Sun Oct 8 06:43:07 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sun Oct 8 06:43:55 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4d56b1e app-misc/jdupes: fix libjodycode minimum version https://github.com/jbruchon/libjodycode/commit/213990a15fddaa35a11082b318a862fc26b8411c seems to have been the first commit to introduce LIBJODYCODE_API_FEATURE_LEVEL. Closes: https://bugs.gentoo.org/914453 Signed-off-by: Sam James gentoo.org> app-misc/jdupes/jdupes-1.26.1.ebuild | 4 +++- app-misc/jdupes/jdupes-9999.ebuild | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/app-misc/jdupes/jdupes-1.26.1.ebuild b/app-misc/jdupes/jdupes-1.26.1.ebuild index 875ea3581a45..11eb2fbd9836 100644 --- a/app-misc/jdupes/jdupes-1.26.1.ebuild +++ b/app-misc/jdupes/jdupes-1.26.1.ebuild @@ -17,7 +17,9 @@ fi LICENSE="MIT" SLOT="0" -DEPEND="dev-libs/libjodycode" +# Please keep a careful eye on the minimum libjoycode version! (Just pick +# latest released at the time if necessary.) +DEPEND=">=dev-libs/libjodycode-3.0" RDEPEND="${DEPEND}" IUSE="+dedupe hardened" diff --git a/app-misc/jdupes/jdupes-9999.ebuild b/app-misc/jdupes/jdupes-9999.ebuild index 86270d6d71e7..a6b9a6a6cfdc 100644 --- a/app-misc/jdupes/jdupes-9999.ebuild +++ b/app-misc/jdupes/jdupes-9999.ebuild @@ -17,7 +17,9 @@ fi LICENSE="MIT" SLOT="0" -DEPEND="dev-libs/libjodycode" +# Please keep a careful eye on the minimum libjoycode version! (Just pick +# latest released at the time if necessary.) +DEPEND=">=dev-libs/libjodycode-3.0" RDEPEND="${DEPEND}" IUSE="+dedupe lowmem hardened"