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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6280D1382C5 for ; Thu, 18 Feb 2021 14:47:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A2FE2E0863; Thu, 18 Feb 2021 14:47:26 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8956CE0863 for ; Thu, 18 Feb 2021 14:47:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A50AD34096C for ; Thu, 18 Feb 2021 14:47:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 418324E8 for ; Thu, 18 Feb 2021 14:47:24 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1613659637.ea3e79374f2026392bf69bdd1e23ddca7022ed7b.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/signal-desktop-bin/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-im/signal-desktop-bin/signal-desktop-bin-1.40.0.ebuild X-VCS-Directories: net-im/signal-desktop-bin/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: ea3e79374f2026392bf69bdd1e23ddca7022ed7b X-VCS-Branch: master Date: Thu, 18 Feb 2021 14:47:24 +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: 4ba13007-c828-469e-a7c1-4f384018522c X-Archives-Hash: f9a9eec65dc74adc57642aed8a575135 commit: ea3e79374f2026392bf69bdd1e23ddca7022ed7b Author: Joonas Niilola gentoo org> AuthorDate: Thu Feb 18 14:46:54 2021 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Thu Feb 18 14:47:17 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea3e7937 net-im/signal-desktop-bin: remove useless BDEPEND, add missing die, - and multi-line the elog message. Signed-off-by: Joonas Niilola gentoo.org> net-im/signal-desktop-bin/signal-desktop-bin-1.40.0.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/net-im/signal-desktop-bin/signal-desktop-bin-1.40.0.ebuild b/net-im/signal-desktop-bin/signal-desktop-bin-1.40.0.ebuild index 1041e646022..f40151228ba 100644 --- a/net-im/signal-desktop-bin/signal-desktop-bin-1.40.0.ebuild +++ b/net-im/signal-desktop-bin/signal-desktop-bin-1.40.0.ebuild @@ -17,7 +17,6 @@ SLOT="0" KEYWORDS="-* ~amd64" IUSE="+sound" -BDEPEND="app-admin/chrpath" RDEPEND=" app-accessibility/at-spi2-atk app-accessibility/at-spi2-core @@ -94,7 +93,7 @@ src_install() { insinto /usr/share if has_version media-sound/apulse[-sdk] && ! has_version media-sound/pulseaudio; then - sed -i 's/Exec=/Exec=apulse /g' usr/share/applications/signal-desktop.desktop + sed -i 's/Exec=/Exec=apulse /g' usr/share/applications/signal-desktop.desktop || die fi doins -r usr/share/applications @@ -110,5 +109,6 @@ src_install() { pkg_postinst() { xdg_pkg_postinst - elog "For using the tray icon on compatible desktop environments, start Signal with '--start-in-tray' or '--use-tray-icon'." + elog "For using the tray icon on compatible desktop environments," + elog "start Signal with '--start-in-tray' or '--use-tray-icon'." }