From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 9285A59CA3 for ; Mon, 7 Mar 2016 21:04:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 51C0021C015; Mon, 7 Mar 2016 21:04:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 DC03921C015 for ; Mon, 7 Mar 2016 21:04:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8A4CE340961 for ; Mon, 7 Mar 2016 21:04:34 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A2FF81B8A for ; Mon, 7 Mar 2016 21:04:32 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1454256322.e1d2870055be9941cde0c153e4467bf68063351d.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/mpd/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/mpd/mpd-0.19.12.ebuild X-VCS-Directories: media-sound/mpd/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: e1d2870055be9941cde0c153e4467bf68063351d X-VCS-Branch: master Date: Mon, 7 Mar 2016 21:04:32 +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: 20953cf2-e595-44cf-ae93-c7587bd963ac X-Archives-Hash: d21d3ecd0726540f13cedac0dc9828bc commit: e1d2870055be9941cde0c153e4467bf68063351d Author: Lukáš Hrázký email cz> AuthorDate: Sun Jan 31 16:00:13 2016 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sun Jan 31 16:05:22 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1d28700 media-sound/mpd: fix the systemd user service Under the user instance of systemd multi-user.target does not exist. Replace it with default.target. media-sound/mpd/mpd-0.19.12.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/media-sound/mpd/mpd-0.19.12.ebuild b/media-sound/mpd/mpd-0.19.12.ebuild index 777cd2d..bd945c1 100644 --- a/media-sound/mpd/mpd-0.19.12.ebuild +++ b/media-sound/mpd/mpd-0.19.12.ebuild @@ -224,6 +224,8 @@ src_install() { newinitd "${FILESDIR}"/${PN}2.init ${PN} systemd_newuserunit systemd/${PN}.service ${PN}.service + sed -i '/WantedBy=/c WantedBy=default.target' \ + "${ED}"/usr/lib/systemd/user/mpd.service || die "sed failed" if use unicode; then sed -i -e 's:^#filesystem_charset.*$:filesystem_charset "UTF-8":' \