From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1555481-garchives=archives.gentoo.org@lists.gentoo.org>
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 6709B158089
	for <garchives@archives.gentoo.org>; Mon, 18 Sep 2023 09:20:20 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 8C9722BC06A;
	Mon, 18 Sep 2023 09:20:19 +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 728802BC06A
	for <gentoo-commits@lists.gentoo.org>; Mon, 18 Sep 2023 09:20:19 +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 64FAE335CE9
	for <gentoo-commits@lists.gentoo.org>; Mon, 18 Sep 2023 09:20:18 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id A7F3611DB
	for <gentoo-commits@lists.gentoo.org>; Mon, 18 Sep 2023 09:20:15 +0000 (UTC)
From: "Sam James" <sam@gentoo.org>
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" <sam@gentoo.org>
Message-ID: <1695028657.408d150e17d829310fd96a73b34e9674a9a09e99.sam@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/mmv/
X-VCS-Repository: repo/gentoo
X-VCS-Files: app-misc/mmv/mmv-2.5.1.ebuild
X-VCS-Directories: app-misc/mmv/
X-VCS-Committer: sam
X-VCS-Committer-Name: Sam James
X-VCS-Revision: 408d150e17d829310fd96a73b34e9674a9a09e99
X-VCS-Branch: master
Date: Mon, 18 Sep 2023 09:20:15 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: bed3a1a5-be02-4186-83c4-0b19ee46c31e
X-Archives-Hash: d29140593154f3ea7d1b734fe8331200

commit:     408d150e17d829310fd96a73b34e9674a9a09e99
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 18 09:17:37 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Sep 18 09:17:37 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=408d150e

app-misc/mmv: fix RDEPEND, style

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-misc/mmv/mmv-2.5.1.ebuild | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/app-misc/mmv/mmv-2.5.1.ebuild b/app-misc/mmv/mmv-2.5.1.ebuild
index 5682b67a4f93..62a8e4b6409c 100644
--- a/app-misc/mmv/mmv-2.5.1.ebuild
+++ b/app-misc/mmv/mmv-2.5.1.ebuild
@@ -5,11 +5,13 @@ EAPI=8
 
 DESCRIPTION="Move/copy/append/link multiple files according to a set of wildcard patterns"
 HOMEPAGE="https://github.com/rrthomas/mmv"
-SRC_URI="https://github.com/rrthomas/${PN}/releases/download/v${PV}/mmv-${PV}.tar.gz"
+SRC_URI="https://github.com/rrthomas/${PN}/releases/download/v${PV}/${P}.tar.gz"
+
 LICENSE="LGPL-2"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm64 ~ppc ~riscv ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
 
-DEPENDS="dev-libs/boehm-gc"
+DEPEND="dev-libs/boehm-gc"
+RDEPEND="${DEPEND}"
 
 QA_CONFIG_IMPL_DECL_SKIP=( MIN )