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 CEFEB58973 for ; Fri, 5 Feb 2016 08:07:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 62D5321C023; Fri, 5 Feb 2016 08:07:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DBA3821C023 for ; Fri, 5 Feb 2016 08:07:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 00719340ADB for ; Fri, 5 Feb 2016 08:07:56 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EFEBA8F4 for ; Fri, 5 Feb 2016 08:07:52 +0000 (UTC) From: "Jason Zaman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jason Zaman" Message-ID: <1454659208.3e6cbd9ed5346e908c387ba647578ea11c8ce003.perfinion@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/consolekit/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-auth/consolekit/consolekit-1.0.1.ebuild sys-auth/consolekit/consolekit-9999.ebuild X-VCS-Directories: sys-auth/consolekit/ X-VCS-Committer: perfinion X-VCS-Committer-Name: Jason Zaman X-VCS-Revision: 3e6cbd9ed5346e908c387ba647578ea11c8ce003 X-VCS-Branch: master Date: Fri, 5 Feb 2016 08:07:52 +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: 2e9a0ebb-2971-4644-a7c7-5c8189c5622b X-Archives-Hash: fe70a4eb573ebc15a7e9797275e85053 commit: 3e6cbd9ed5346e908c387ba647578ea11c8ce003 Author: Jason Zaman gentoo org> AuthorDate: Fri Feb 5 07:59:15 2016 +0000 Commit: Jason Zaman gentoo org> CommitDate: Fri Feb 5 08:00:08 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e6cbd9e sys-auth/consolekit: Update live ebuild Package-Manager: portage-2.2.26 sys-auth/consolekit/consolekit-1.0.1.ebuild | 1 + sys-auth/consolekit/consolekit-9999.ebuild | 17 ++++++++++------- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/sys-auth/consolekit/consolekit-1.0.1.ebuild b/sys-auth/consolekit/consolekit-1.0.1.ebuild index 24e779f..f948b7a 100644 --- a/sys-auth/consolekit/consolekit-1.0.1.ebuild +++ b/sys-auth/consolekit/consolekit-1.0.1.ebuild @@ -107,6 +107,7 @@ src_install() { newexe "${FILESDIR}"/90-consolekit-3 90-consolekit if use kernel_linux; then + # bug 571524 exeinto /usr/lib/ConsoleKit/run-session.d doexe "${FILESDIR}"/pam-foreground-compat.ck fi diff --git a/sys-auth/consolekit/consolekit-9999.ebuild b/sys-auth/consolekit/consolekit-9999.ebuild index aefb2bf..c222c2f 100644 --- a/sys-auth/consolekit/consolekit-9999.ebuild +++ b/sys-auth/consolekit/consolekit-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -16,7 +16,7 @@ EGIT_REPO_URI="https://github.com/${MY_PN}/${MY_PN}.git" LICENSE="GPL-2" SLOT="0" KEYWORDS="" -IUSE="acl cgroups debug doc kernel_linux pam policykit selinux test" +IUSE="acl cgroups debug doc kernel_linux pam pm-utils policykit selinux test" COMMON_DEPEND=">=dev-libs/glib-2.40:2=[dbus] >=sys-devel/gettext-0.19 @@ -33,8 +33,10 @@ COMMON_DEPEND=">=dev-libs/glib-2.40:2=[dbus] ) pam? ( virtual/pam ) policykit? ( >=sys-auth/polkit-0.110 )" +# pm-utils: bug 557432 RDEPEND="${COMMON_DEPEND} kernel_linux? ( sys-apps/coreutils[acl?] ) + pm-utils? ( sys-power/pm-utils ) selinux? ( sec-policy/selinux-consolekit )" DEPEND="${COMMON_DEPEND} dev-libs/libxslt @@ -108,6 +110,12 @@ src_install() { exeinto /etc/X11/xinit/xinitrc.d newexe "${FILESDIR}"/90-consolekit-3 90-consolekit + if use kernel_linux; then + # bug 571524 + exeinto /usr/lib/ConsoleKit/run-session.d + doexe "${FILESDIR}"/pam-foreground-compat.ck + fi + prune_libtool_files --all # --all for pam_ck_connector.la rm -rf "${ED}"/var/run || die # let the init script create the directory @@ -115,8 +123,3 @@ src_install() { insinto /etc/logrotate.d newins "${WORKDIR}"/debian/${PN}.logrotate ${PN} #374513 } - -pkg_postinst() { - elog "For suspend/hibernate support, please emerge" - elog " sys-power/pm-utils" -}