From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1490132-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) server-digest SHA256)
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id CB54E15802F
	for <garchives@archives.gentoo.org>; Sat, 25 Feb 2023 05:43:09 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id B725EE08A8;
	Sat, 25 Feb 2023 05:43:08 +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) server-digest SHA256)
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 8BD38E08A8
	for <gentoo-commits@lists.gentoo.org>; Sat, 25 Feb 2023 05:43:08 +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 035AF340F8A
	for <gentoo-commits@lists.gentoo.org>; Sat, 25 Feb 2023 05:43:07 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 278E78BA
	for <gentoo-commits@lists.gentoo.org>; Sat, 25 Feb 2023 05:43:05 +0000 (UTC)
From: "Arthur Zamarin" <arthurzam@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, "Arthur Zamarin" <arthurzam@gentoo.org>
Message-ID: <1677303762.a78433c46ebd3497a12096ae4a54d0121c7ac143.arthurzam@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: gui-apps/grim/
X-VCS-Repository: repo/gentoo
X-VCS-Files: gui-apps/grim/grim-1.4.0-r2.ebuild gui-apps/grim/grim-9999.ebuild
X-VCS-Directories: gui-apps/grim/
X-VCS-Committer: arthurzam
X-VCS-Committer-Name: Arthur Zamarin
X-VCS-Revision: a78433c46ebd3497a12096ae4a54d0121c7ac143
X-VCS-Branch: master
Date: Sat, 25 Feb 2023 05:43:05 +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: 98d14438-ae23-41fd-8d45-78b7f92c4f12
X-Archives-Hash: 4572af8cbc25a538a563ae5fdbfb650f

commit:     a78433c46ebd3497a12096ae4a54d0121c7ac143
Author:     Aisha Tammy <aisha <AT> bsd <DOT> ac>
AuthorDate: Sat Feb 25 02:05:46 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Feb 25 05:42:42 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a78433c4

gui-apps/grim: move wayland-protocols to DEPEND

Signed-off-by: Aisha Tammy <aisha <AT> bsd.ac>
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 gui-apps/grim/{grim-9999.ebuild => grim-1.4.0-r2.ebuild} | 9 +++++----
 gui-apps/grim/grim-9999.ebuild                           | 9 +++++----
 2 files changed, 10 insertions(+), 8 deletions(-)

diff --git a/gui-apps/grim/grim-9999.ebuild b/gui-apps/grim/grim-1.4.0-r2.ebuild
similarity index 93%
copy from gui-apps/grim/grim-9999.ebuild
copy to gui-apps/grim/grim-1.4.0-r2.ebuild
index d4e0f640652a..055ea22ded2b 100644
--- a/gui-apps/grim/grim-9999.ebuild
+++ b/gui-apps/grim/grim-1.4.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -20,14 +20,15 @@ LICENSE="MIT"
 SLOT="0"
 IUSE="+man jpeg"
 
-DEPEND="
+RDEPEND="
 	dev-libs/wayland
-	>=dev-libs/wayland-protocols-1.14
 	media-libs/libpng
 	x11-libs/pixman
 	jpeg? ( media-libs/libjpeg-turbo )
 "
-RDEPEND="${DEPEND}"
+DEPEND="${RDEPEND}
+	>=dev-libs/wayland-protocols-1.14
+"
 BDEPEND="man? ( app-text/scdoc )"
 
 src_configure() {

diff --git a/gui-apps/grim/grim-9999.ebuild b/gui-apps/grim/grim-9999.ebuild
index d4e0f640652a..055ea22ded2b 100644
--- a/gui-apps/grim/grim-9999.ebuild
+++ b/gui-apps/grim/grim-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -20,14 +20,15 @@ LICENSE="MIT"
 SLOT="0"
 IUSE="+man jpeg"
 
-DEPEND="
+RDEPEND="
 	dev-libs/wayland
-	>=dev-libs/wayland-protocols-1.14
 	media-libs/libpng
 	x11-libs/pixman
 	jpeg? ( media-libs/libjpeg-turbo )
 "
-RDEPEND="${DEPEND}"
+DEPEND="${RDEPEND}
+	>=dev-libs/wayland-protocols-1.14
+"
 BDEPEND="man? ( app-text/scdoc )"
 
 src_configure() {