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 3D856158091 for ; Mon, 20 Jun 2022 03:02:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 81406E0A04; Mon, 20 Jun 2022 03:02:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 6D312E0A04 for ; Mon, 20 Jun 2022 03:02:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 94B553415FF for ; Mon, 20 Jun 2022 03:02:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2AF6C448 for ; Mon, 20 Jun 2022 03:02:56 +0000 (UTC) From: "Sam James" 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" Message-ID: <1655694140.d312126538f24aed777addc15e0a572f9e670f58.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/dbus/files/, sys-apps/dbus/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/dbus/dbus-1.14.0-r3.ebuild sys-apps/dbus/dbus-1.14.0-r4.ebuild sys-apps/dbus/files/80-dbus-r1 X-VCS-Directories: sys-apps/dbus/files/ sys-apps/dbus/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d312126538f24aed777addc15e0a572f9e670f58 X-VCS-Branch: master Date: Mon, 20 Jun 2022 03:02:56 +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: b6cfcdd3-347b-4558-8dd2-d2ac4999b38e X-Archives-Hash: e885dbb69b90271a311ea839f2dd6ccb commit: d312126538f24aed777addc15e0a572f9e670f58 Author: Andrew Udvare gmail com> AuthorDate: Mon Jun 20 02:59:41 2022 +0000 Commit: Sam James gentoo org> CommitDate: Mon Jun 20 03:02:20 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3121265 sys-apps/dbus: minor shellcheck fixes * [x] Run shellcheck * [x] Use `$(...)` syntax instead of backticks * [x] Quote eval arguments Bug: https://bugs.gentoo.org/845141 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Andrew Udvare gmail.com> Closes: https://github.com/gentoo/gentoo/pull/25988 Signed-off-by: Sam James gentoo.org> sys-apps/dbus/{dbus-1.14.0-r3.ebuild => dbus-1.14.0-r4.ebuild} | 0 sys-apps/dbus/files/80-dbus-r1 | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-apps/dbus/dbus-1.14.0-r3.ebuild b/sys-apps/dbus/dbus-1.14.0-r4.ebuild similarity index 100% rename from sys-apps/dbus/dbus-1.14.0-r3.ebuild rename to sys-apps/dbus/dbus-1.14.0-r4.ebuild diff --git a/sys-apps/dbus/files/80-dbus-r1 b/sys-apps/dbus/files/80-dbus-r1 index edef88a3c30c..3499a6a12eca 100644 --- a/sys-apps/dbus/files/80-dbus-r1 +++ b/sys-apps/dbus/files/80-dbus-r1 @@ -2,12 +2,12 @@ # launches a session dbus instance -dbuslaunch="`command -v dbus-launch 2>/dev/null`" +dbuslaunch=$(command -v dbus-launch 2>/dev/null) if [ -n "$dbuslaunch" ] && [ -x "$dbuslaunch" ] && [ -z "$DBUS_SESSION_BUS_ADDRESS" ]; then if [ -n "$command" ]; then command="$dbuslaunch --exit-with-session $command" else - eval `$dbuslaunch --sh-syntax --exit-with-session` + eval "$($dbuslaunch --sh-syntax --exit-with-session)" fi fi