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 DA79E158089 for ; Wed, 11 Oct 2023 21:07:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BA8492BC015; Wed, 11 Oct 2023 21:07:10 +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 A1FCC2BC015 for ; Wed, 11 Oct 2023 21:07:10 +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 A5F1D335CB9 for ; Wed, 11 Oct 2023 21:07:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F179B1142 for ; Wed, 11 Oct 2023 21:07:07 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1697058411.7d479fb6556fbc5b7b9ada3393fa8653a7a35d33.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/jdupes/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/jdupes/jdupes-9999.ebuild X-VCS-Directories: app-misc/jdupes/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: 7d479fb6556fbc5b7b9ada3393fa8653a7a35d33 X-VCS-Branch: master Date: Wed, 11 Oct 2023 21:07:07 +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: 3552b6da-6334-4e2c-897f-696c577a71bd X-Archives-Hash: acf5012dc7b8112f18be386c83fce902 commit: 7d479fb6556fbc5b7b9ada3393fa8653a7a35d33 Author: Jakov Smolić gentoo org> AuthorDate: Wed Oct 11 20:38:42 2023 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Wed Oct 11 21:06:51 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d479fb6 app-misc/jdupes: Update live ebuild Signed-off-by: Jakov Smolić gentoo.org> app-misc/jdupes/jdupes-9999.ebuild | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/app-misc/jdupes/jdupes-9999.ebuild b/app-misc/jdupes/jdupes-9999.ebuild index a6b9a6a6cfdc..9472f0fd28ae 100644 --- a/app-misc/jdupes/jdupes-9999.ebuild +++ b/app-misc/jdupes/jdupes-9999.ebuild @@ -6,13 +6,13 @@ EAPI=8 inherit toolchain-funcs DESCRIPTION="Identify duplicate files on the filesystem" -HOMEPAGE="https://github.com/jbruchon/jdupes" +HOMEPAGE="https://codeberg.org/jbruchon/jdupes" if [[ "${PV}" == *9999 ]] ; then - EGIT_REPO_URI="https://github.com/jbruchon/jdupes.git" + EGIT_REPO_URI="https://codeberg.org/jbruchon/jdupes.git" inherit git-r3 else - SRC_URI="https://github.com/jbruchon/jdupes/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64" + SRC_URI="https://codeberg.org/jbruchon/jdupes/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="amd64" fi LICENSE="MIT" SLOT="0" @@ -22,7 +22,7 @@ SLOT="0" DEPEND=">=dev-libs/libjodycode-3.0" RDEPEND="${DEPEND}" -IUSE="+dedupe lowmem hardened" +IUSE="+dedupe hardened" # missing test.sh script # https://github.com/jbruchon/jdupes/issues/191 @@ -37,7 +37,6 @@ src_compile() { tc-export CC local myconf=( $(usex dedupe 'ENABLE_DEDUPE=1' '') - $(usex lowmem 'LOW_MEMORY=1' '') $(usex hardened 'HARDEN=1' '') ) emake ${myconf[@]}