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 CA1801382C5 for ; Mon, 26 Feb 2018 22:04:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0FB34E0923; Mon, 26 Feb 2018 22:04:06 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 E5A94E0923 for ; Mon, 26 Feb 2018 22:04:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 63B8D335C0A for ; Mon, 26 Feb 2018 22:04:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0D17B1E8 for ; Mon, 26 Feb 2018 22:04:03 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1519682638.126d7108fb0ba692a4d56abc884fa00f7ace5bf2.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/lightdm/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/lightdm/lightdm-1.18.3-r1.ebuild x11-misc/lightdm/lightdm-1.24.0-r1.ebuild X-VCS-Directories: x11-misc/lightdm/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 126d7108fb0ba692a4d56abc884fa00f7ace5bf2 X-VCS-Branch: master Date: Mon, 26 Feb 2018 22:04:03 +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: 3b7f3f86-5c32-4774-8312-fe050dc285b9 X-Archives-Hash: ba8a44270805a89b00e1a7a0e3379f0d commit: 126d7108fb0ba692a4d56abc884fa00f7ace5bf2 Author: Mike Gilbert gentoo org> AuthorDate: Mon Feb 26 22:03:38 2018 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Mon Feb 26 22:03:58 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=126d7108 x11-misc/lightdm: call systemd_reenable Closes: https://bugs.gentoo.org/645648 Package-Manager: Portage-2.3.24_p18, Repoman-2.3.6_p99 x11-misc/lightdm/lightdm-1.18.3-r1.ebuild | 4 ++++ x11-misc/lightdm/lightdm-1.24.0-r1.ebuild | 6 +++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/x11-misc/lightdm/lightdm-1.18.3-r1.ebuild b/x11-misc/lightdm/lightdm-1.18.3-r1.ebuild index cd5bfce7b43..0592df3577e 100644 --- a/x11-misc/lightdm/lightdm-1.18.3-r1.ebuild +++ b/x11-misc/lightdm/lightdm-1.18.3-r1.ebuild @@ -127,3 +127,7 @@ src_install() { systemd_dounit "${FILESDIR}/${PN}.service" } + +pkg_postinst() { + systemd_reenable "${PN}.service" +} diff --git a/x11-misc/lightdm/lightdm-1.24.0-r1.ebuild b/x11-misc/lightdm/lightdm-1.24.0-r1.ebuild index 3a690710606..ae3715bded4 100644 --- a/x11-misc/lightdm/lightdm-1.24.0-r1.ebuild +++ b/x11-misc/lightdm/lightdm-1.24.0-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 @@ -128,3 +128,7 @@ src_install() { systemd_dounit "${FILESDIR}/${PN}.service" } + +pkg_postinst() { + systemd_reenable "${PN}.service" +}