Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-workspace/files/
Date: Wed, 02 Aug 2017 23:22:35
Message-Id: 1501715833.8b30fb314ba58fb51a9ab0991002a1dfdf813fe9.asturm@gentoo
1 commit: 8b30fb314ba58fb51a9ab0991002a1dfdf813fe9
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 2 21:51:31 2017 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 2 23:17:13 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b30fb31
7
8 kde-plasma/plasma-workspace: Remove obsolete files
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.1
11
12 .../plasma-workspace/files/agent-shutdown.sh | 13 ----------
13 kde-plasma/plasma-workspace/files/agent-startup.sh | 29 ----------------------
14 2 files changed, 42 deletions(-)
15
16 diff --git a/kde-plasma/plasma-workspace/files/agent-shutdown.sh b/kde-plasma/plasma-workspace/files/agent-shutdown.sh
17 deleted file mode 100644
18 index fff8056df2c..00000000000
19 --- a/kde-plasma/plasma-workspace/files/agent-shutdown.sh
20 +++ /dev/null
21 @@ -1,13 +0,0 @@
22 -#!/bin/sh
23 -#
24 -# This file is executed at plasma shutdown.
25 -# Uncomment the following lines to kill the agents
26 -# that were started at session startup.
27 -
28 -#if [ -n "${GPG_AGENT_INFO}" ]; then
29 -# kill $(echo ${GPG_AGENT_INFO} | cut -d':' -f 2) >/dev/null 2>&1
30 -#fi
31 -
32 -#if [ -n "${SSH_AGENT_PID}" ]; then
33 -# eval "$(ssh-agent -s -k)"
34 -#fi
35
36 diff --git a/kde-plasma/plasma-workspace/files/agent-startup.sh b/kde-plasma/plasma-workspace/files/agent-startup.sh
37 deleted file mode 100644
38 index 03e017ac4e9..00000000000
39 --- a/kde-plasma/plasma-workspace/files/agent-startup.sh
40 +++ /dev/null
41 @@ -1,29 +0,0 @@
42 -# Agents startup file
43 -#
44 -# This file is sourced at plasma startup, so that
45 -# the environment variables set here are available
46 -# throughout the session.
47 -
48 -# Uncomment the following lines to start gpg-agent
49 -# and/or ssh-agent at plasma startup.
50 -# If you do so, do not forget to uncomment the respective
51 -# lines in PLASMADIR/shutdown/agent-shutdown.sh to
52 -# properly kill the agents when the session ends.
53 -
54 -#if [ -x /usr/bin/gpg-agent ]; then
55 -# eval "$(/usr/bin/gpg-agent --daemon)"
56 -#fi
57 -
58 -#if [ -x /usr/bin/ssh-agent ]; then
59 -# eval "$(/usr/bin/ssh-agent -s)"
60 -#fi
61 -
62 -# Uncomment the following lines to start rxvt-unicode which has the ability to
63 -# run multiple terminals in one single process, thus starting up faster and
64 -# saving resources.
65 -# The --opendisplay ensures that the daemon quits when the X server terminates,
66 -# therefore we don't need matching lines in agent-shutdown.sh.
67 -
68 -#if [ -x /usr/bin/urxvtd ]; then
69 -# /usr/bin/urxvtd --opendisplay --fork --quiet
70 -#fi