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 2628515808B for ; Sun, 29 Sep 2024 16:23:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 52CF5E2A25; Sun, 29 Sep 2024 16:23:57 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 392DCE2A25 for ; Sun, 29 Sep 2024 16:23:57 +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 6A10D343220 for ; Sun, 29 Sep 2024 16:23:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C04AC1F30 for ; Sun, 29 Sep 2024 16:23:54 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1727627017.946608f9642649930a98cb25593ab460a8b3c8a6.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/fdupes/fdupes-9999.ebuild X-VCS-Directories: app-misc/fdupes/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 946608f9642649930a98cb25593ab460a8b3c8a6 X-VCS-Branch: master Date: Sun, 29 Sep 2024 16:23: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: 96ef3e83-40b2-4f62-889f-a95e06336dc7 X-Archives-Hash: 98c07d936867c80f8fbc936d50daf947 commit: 946608f9642649930a98cb25593ab460a8b3c8a6 Author: Arthur Zamarin gentoo org> AuthorDate: Sun Sep 29 16:08:19 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sun Sep 29 16:23:37 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=946608f9 app-misc/fdupes: sync live Signed-off-by: Arthur Zamarin gentoo.org> app-misc/fdupes/fdupes-9999.ebuild | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/app-misc/fdupes/fdupes-9999.ebuild b/app-misc/fdupes/fdupes-9999.ebuild index 2e3d8e6c3b57..c735e2285b46 100644 --- a/app-misc/fdupes/fdupes-9999.ebuild +++ b/app-misc/fdupes/fdupes-9999.ebuild @@ -1,10 +1,8 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit toolchain-funcs - DESCRIPTION="Identify/delete duplicate files residing within specified directories" HOMEPAGE="https://github.com/adrianlopezroche/fdupes" if [[ ${PV} == *9999 ]] ; then @@ -17,11 +15,12 @@ fi LICENSE="MIT" SLOT="0" -IUSE="+ncurses" +IUSE="+ncurses sqlite" RDEPEND=" - dev-libs/libpcre2[pcre32] + dev-libs/libpcre2:=[pcre32] ncurses? ( sys-libs/ncurses:= ) + sqlite? ( dev-db/sqlite:3 ) " DEPEND="${RDEPEND}" BDEPEND="virtual/pkgconfig" @@ -35,9 +34,5 @@ src_prepare() { } src_configure() { - econf $(use_with ncurses) -} - -src_compile() { - emake CC="$(tc-getCC)" + econf $(use_with ncurses) $(use_with sqlite) }