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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8CC3315821F for ; Tue, 26 Nov 2024 13:10:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6162CE0841; Tue, 26 Nov 2024 13:10:43 +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 45DACE0841 for ; Tue, 26 Nov 2024 13:10:43 +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 65DB9335D6A for ; Tue, 26 Nov 2024 13:10:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4A66A1F28 for ; Tue, 26 Nov 2024 13:10:39 +0000 (UTC) From: "Takuya Wakazono" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Takuya Wakazono" Message-ID: <1732626625.d4aa236eea415972c6aa44ebb21e5e63a19530b6.pastalian46@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/grimshot/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-apps/grimshot/grimshot-9999.ebuild X-VCS-Directories: gui-apps/grimshot/ X-VCS-Committer: pastalian46 X-VCS-Committer-Name: Takuya Wakazono X-VCS-Revision: d4aa236eea415972c6aa44ebb21e5e63a19530b6 X-VCS-Branch: dev Date: Tue, 26 Nov 2024 13:10:39 +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: 632ab1b1-7a45-4615-93db-e72bec7f7dd2 X-Archives-Hash: ed8701422520345696e76709450c17b7 commit: d4aa236eea415972c6aa44ebb21e5e63a19530b6 Author: Takuya Wakazono gmail com> AuthorDate: Tue Nov 26 13:08:57 2024 +0000 Commit: Takuya Wakazono gmail com> CommitDate: Tue Nov 26 13:10:25 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d4aa236e gui-apps/grimshot: update live - update scripts path - add bash completion Closes: https://bugs.gentoo.org/945030 Signed-off-by: Takuya Wakazono gmail.com> gui-apps/grimshot/grimshot-9999.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gui-apps/grimshot/grimshot-9999.ebuild b/gui-apps/grimshot/grimshot-9999.ebuild index fa31c8d3f..3260837bd 100644 --- a/gui-apps/grimshot/grimshot-9999.ebuild +++ b/gui-apps/grimshot/grimshot-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 2023 Gentoo Authors +# Copyright 2023-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit git-r3 +inherit bash-completion-r1 git-r3 DESCRIPTION="A helper for screenshots within sway" HOMEPAGE="https://github.com/OctopusET/sway-contrib" @@ -21,11 +21,11 @@ RDEPEND=" gui-apps/slurp gui-apps/wl-clipboard || ( gui-wm/sway gui-wm/swayfx ) - !!<=gui-wm/sway-1.8.1[grimshot] libnotify? ( x11-libs/libnotify ) " src_install() { - dobin grimshot - doman grimshot.1 + dobin grimshot/grimshot + doman grimshot/grimshot.1 + newbashcomp grimshot/grimshot-completion.bash grimshot }