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 82441139695 for ; Sat, 25 Mar 2017 18:56:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DCE1021C054; Sat, 25 Mar 2017 18:56:49 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BB69621C054 for ; Sat, 25 Mar 2017 18:56:49 +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 BC928341675 for ; Sat, 25 Mar 2017 18:56:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0D0D071B2 for ; Sat, 25 Mar 2017 18:56:47 +0000 (UTC) From: "Mart Raudsepp" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mart Raudsepp" Message-ID: <1490466817.4391957e194db7b57a16db30763fca7ba9577804.leio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/gnome-music/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/gnome-music/gnome-music-3.22.2-r1.ebuild X-VCS-Directories: media-sound/gnome-music/ X-VCS-Committer: leio X-VCS-Committer-Name: Mart Raudsepp X-VCS-Revision: 4391957e194db7b57a16db30763fca7ba9577804 X-VCS-Branch: master Date: Sat, 25 Mar 2017 18:56:47 +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-Archives-Salt: 98600a3f-c968-4dd2-a243-2694b2bec741 X-Archives-Hash: 09e0770f5753c53d61b8f938f15c2fd3 commit: 4391957e194db7b57a16db30763fca7ba9577804 Author: Mart Raudsepp gentoo org> AuthorDate: Sat Mar 25 18:33:37 2017 +0000 Commit: Mart Raudsepp gentoo org> CommitDate: Sat Mar 25 18:33:37 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4391957e media-sound/gnome-music: fix missed quoting around $S and $D Package-Manager: Portage-2.3.4, Repoman-2.3.1 media-sound/gnome-music/gnome-music-3.22.2-r1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/media-sound/gnome-music/gnome-music-3.22.2-r1.ebuild b/media-sound/gnome-music/gnome-music-3.22.2-r1.ebuild index e45e036e334..042672ec6ad 100644 --- a/media-sound/gnome-music/gnome-music-3.22.2-r1.ebuild +++ b/media-sound/gnome-music/gnome-music-3.22.2-r1.ebuild @@ -53,11 +53,11 @@ pkg_setup() { } src_prepare() { - sed -e '/sys.path.insert/d' -i ${S}/gnome-music.in || die "python fixup sed failed" + sed -e '/sys.path.insert/d' -i "${S}"/gnome-music.in || die "python fixup sed failed" gnome2_src_prepare } src_install() { gnome2_src_install - python_fix_shebang ${D}usr/bin/gnome-music + python_fix_shebang "${D}"usr/bin/gnome-music }