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 D29B51382C5 for ; Fri, 5 Feb 2021 20:58:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1C182E0876; Fri, 5 Feb 2021 20:58:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 0397BE0876 for ; Fri, 5 Feb 2021 20:58:07 +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 A430A343006 for ; Fri, 5 Feb 2021 20:58:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C17D04A8 for ; Fri, 5 Feb 2021 20:58:04 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1612558674.ce5a69792792040a0f7261560ccf5bd9c37c155c.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gui-libs/display-manager-init/ X-VCS-Repository: repo/gentoo X-VCS-Files: gui-libs/display-manager-init/display-manager-init-1.0.ebuild X-VCS-Directories: gui-libs/display-manager-init/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: ce5a69792792040a0f7261560ccf5bd9c37c155c X-VCS-Branch: master Date: Fri, 5 Feb 2021 20:58:04 +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: 67de1954-6f86-409e-90d4-d21be2ba8a28 X-Archives-Hash: cddd6a2cf8c691dab007b2e16b191a4c commit: ce5a69792792040a0f7261560ccf5bd9c37c155c Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Feb 5 20:45:43 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Feb 5 20:57:54 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce5a6979 gui-libs/display-manager-init: Improve instructions Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner gentoo.org> .../display-manager-init/display-manager-init-1.0.ebuild | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/gui-libs/display-manager-init/display-manager-init-1.0.ebuild b/gui-libs/display-manager-init/display-manager-init-1.0.ebuild index 8b5a2670683..ec9d323f4c0 100644 --- a/gui-libs/display-manager-init/display-manager-init-1.0.ebuild +++ b/gui-libs/display-manager-init/display-manager-init-1.0.ebuild @@ -7,10 +7,10 @@ DESCRIPTION="RC init files for starting display and login managers" HOMEPAGE="https://wiki.gentoo.org/wiki/Project:X11" LICENSE="GPL-2" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux" SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux" -S="${FILESDIR}" +S="${WORKDIR}" RDEPEND=" sys-apps/gentoo-functions @@ -42,10 +42,13 @@ pkg_preinst() { fi done if [[ "${using_xdm}" = "yes" ]]; then - ewarn "The 'xdm' service has been removed as it is" - ewarn "being replaced by the 'display-manager' service." - ewarn "Please migrate to using 'display-manager' and" - ewarn "remember to use dispatch-conf to update the" + ewarn "The 'xdm' service has been replaced by new 'display-manager'" + ewarn "service, please switch now:" + ewarn + ewarn " # rc-update del xdm default" + ewarn " # rc-update add display-manager default" + ewarn + ewarn "Remember to run etc-update or dispatch-conf to update the" ewarn "config protected service files." fi }