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 A4CE2138335 for ; Sat, 2 Jun 2018 13:25:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 95E10E083D; Sat, 2 Jun 2018 13:25:21 +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 68F91E083D for ; Sat, 2 Jun 2018 13:25:21 +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 7F4D5335C75 for ; Sat, 2 Jun 2018 13:25:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 84AED2AF for ; Sat, 2 Jun 2018 13:25:16 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1527945901.d758a9ffb4fe70453085783d63e67a8f5814c1f0.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/mpd/files/, media-sound/mpd/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/mpd/files/mpd-0.20.4.init media-sound/mpd/mpd-0.20.12-r1.ebuild media-sound/mpd/mpd-0.20.12.ebuild X-VCS-Directories: media-sound/mpd/files/ media-sound/mpd/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: d758a9ffb4fe70453085783d63e67a8f5814c1f0 X-VCS-Branch: master Date: Sat, 2 Jun 2018 13:25:16 +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: 69647a91-1ff5-43a1-a513-b14cd17be147 X-Archives-Hash: d236cdaaf480a448d720b1bb13ee8b75 commit: d758a9ffb4fe70453085783d63e67a8f5814c1f0 Author: Louis Sautier gmail com> AuthorDate: Sun May 27 13:44:50 2018 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Jun 2 13:25:01 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d758a9ff media-sound/mpd: remove opts variable from init script This variable should never have been used in the first place because it is reserved to OpenRC. It is unlikely that this variable was ever used because mpd exposes no interesting command-line options and Gentoo never provided an associated conf.d file either. Closes: https://bugs.gentoo.org/645664 Package-Manager: Portage-2.3.38, Repoman-2.3.9 Closes: https://github.com/gentoo/gentoo/pull/8621 media-sound/mpd/files/mpd-0.20.4.init | 4 ++-- media-sound/mpd/{mpd-0.20.12.ebuild => mpd-0.20.12-r1.ebuild} | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/media-sound/mpd/files/mpd-0.20.4.init b/media-sound/mpd/files/mpd-0.20.4.init index 3eb0bc2bcb8..0a4c61677bc 100644 --- a/media-sound/mpd/files/mpd-0.20.4.init +++ b/media-sound/mpd/files/mpd-0.20.4.init @@ -1,5 +1,5 @@ #!/sbin/openrc-run -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 : CFGFILE=${CFGFILE:=/etc/mpd.conf} @@ -20,7 +20,7 @@ get_config() { extra_started_commands='reload' command=/usr/bin/mpd -command_args=${opts:=${CFGFILE}} +command_args=${CFGFILE} required_files=${CFGFILE} pidfile=$(get_config pid_file) description="Music Player Daemon" diff --git a/media-sound/mpd/mpd-0.20.12.ebuild b/media-sound/mpd/mpd-0.20.12-r1.ebuild similarity index 99% rename from media-sound/mpd/mpd-0.20.12.ebuild rename to media-sound/mpd/mpd-0.20.12-r1.ebuild index 856bef04608..413a9c53b12 100644 --- a/media-sound/mpd/mpd-0.20.12.ebuild +++ b/media-sound/mpd/mpd-0.20.12-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6