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 184C0138334 for ; Tue, 22 Oct 2019 20:06:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 13194E0A96; Tue, 22 Oct 2019 20:06:48 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 DD89EE0A96 for ; Tue, 22 Oct 2019 20:06:47 +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 9C38D34C21B for ; Tue, 22 Oct 2019 20:06:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DEC11882 for ; Tue, 22 Oct 2019 20:06:43 +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: <1571774699.1ba24fece412632e75365787b0206c30b663f3a3.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-plasma/plasma-workspace/ X-VCS-Repository: proj/kde X-VCS-Files: kde-plasma/plasma-workspace/plasma-workspace-5.17.49.9999.ebuild kde-plasma/plasma-workspace/plasma-workspace-9999.ebuild X-VCS-Directories: kde-plasma/plasma-workspace/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 1ba24fece412632e75365787b0206c30b663f3a3 X-VCS-Branch: master Date: Tue, 22 Oct 2019 20:06:43 +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: d33cfd0f-965a-448e-96a9-0413285706ee X-Archives-Hash: e7a7dad64ca68d26a67793c6b21af286 commit: 1ba24fece412632e75365787b0206c30b663f3a3 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Oct 21 22:09:26 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Oct 22 20:04:59 2019 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=1ba24fec kde-plasma/plasma-workspace: Update pkg_postinst Keep old locations for now, but instruct users to copy to home directory. Bug: https://bugs.gentoo.org/688366 Package-Manager: Portage-2.3.78, Repoman-2.3.17 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-plasma/plasma-workspace/plasma-workspace-5.17.49.9999.ebuild | 9 +++++++-- kde-plasma/plasma-workspace/plasma-workspace-9999.ebuild | 9 +++++++-- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/kde-plasma/plasma-workspace/plasma-workspace-5.17.49.9999.ebuild b/kde-plasma/plasma-workspace/plasma-workspace-5.17.49.9999.ebuild index be2b0fd5b6..9b09701f3a 100644 --- a/kde-plasma/plasma-workspace/plasma-workspace-5.17.49.9999.ebuild +++ b/kde-plasma/plasma-workspace/plasma-workspace-5.17.49.9999.ebuild @@ -163,6 +163,11 @@ src_install() { pkg_postinst () { kde5_pkg_postinst - elog "TODO: /etc/plasma/{startup,shutdown} locations for gpg-agent/ssh-agent" - elog "do not currently work, see bug #688366." + elog "To enable gpg-agent and/or ssh-agent in Plasma sessions, do the following:" + elog " * Copy the necessary files to your home directory:" + elog " - cp /etc/plasma/startup/10-agent-startup.sh ~/.config/plasma-workspace/env/" + elog " - cp /etc/plasma/startup/10-agent-startup.sh ~/.config/plasma-workspace/shutdown/" + elog " * Edit 10-agent-startup.sh and uncomment the lines enabling ssh-agent." + elog " * In 10-agent-shutdown.sh uncomment the respective lines to properly kill" + elog " the agent when the session ends." } diff --git a/kde-plasma/plasma-workspace/plasma-workspace-9999.ebuild b/kde-plasma/plasma-workspace/plasma-workspace-9999.ebuild index d975b23a77..4b7748e6ca 100644 --- a/kde-plasma/plasma-workspace/plasma-workspace-9999.ebuild +++ b/kde-plasma/plasma-workspace/plasma-workspace-9999.ebuild @@ -164,6 +164,11 @@ src_install() { pkg_postinst () { kde5_pkg_postinst - elog "TODO: /etc/plasma/{startup,shutdown} locations for gpg-agent/ssh-agent" - elog "do not currently work, see bug #688366." + elog "To enable gpg-agent and/or ssh-agent in Plasma sessions, do the following:" + elog " * Copy the necessary files to your home directory:" + elog " - cp /etc/plasma/startup/10-agent-startup.sh ~/.config/plasma-workspace/env/" + elog " - cp /etc/plasma/startup/10-agent-startup.sh ~/.config/plasma-workspace/shutdown/" + elog " * Edit 10-agent-startup.sh and uncomment the lines enabling ssh-agent." + elog " * In 10-agent-shutdown.sh uncomment the respective lines to properly kill" + elog " the agent when the session ends." }