Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/wicd/files/
Date: Sun, 29 Jan 2017 17:45:44
Message-Id: 1485711927.042f1e89e8c699be868720ab79bb208ea9521142.kensington@gentoo
1 commit: 042f1e89e8c699be868720ab79bb208ea9521142
2 Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Fri Jan 27 15:26:12 2017 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 29 17:45:27 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=042f1e89
7
8 net-misc/wicd: remove unused patch/file
9
10 net-misc/wicd/files/add-wpa-psk-hex-template.patch | 29 ----------------------
11 net-misc/wicd/files/wicd-init.d | 24 ------------------
12 2 files changed, 53 deletions(-)
13
14 diff --git a/net-misc/wicd/files/add-wpa-psk-hex-template.patch b/net-misc/wicd/files/add-wpa-psk-hex-template.patch
15 deleted file mode 100644
16 index 21daaf3..00000000
17 --- a/net-misc/wicd/files/add-wpa-psk-hex-template.patch
18 +++ /dev/null
19 @@ -1,29 +0,0 @@
20 -diff -U 3 -dHrN wicd-1.7.1b2/encryption/templates/active wicd-1.7.1b2.new/encryption/templates/active
21 ---- wicd-1.7.1b2/encryption/templates/active 2010-10-29 16:36:55.000000000 +0100
22 -+++ wicd-1.7.1b2.new/encryption/templates/active 2011-09-13 19:58:54.000000000 +0100
23 -@@ -1,5 +1,6 @@
24 - wpa
25 - wpa-psk
26 -+wpa-psk-hex
27 - wep-hex
28 - wep-passphrase
29 - wep-shared
30 -diff -U 3 -dHrN wicd-1.7.1b2/encryption/templates/wpa-psk-hex wicd-1.7.1b2.new/encryption/templates/wpa-psk-hex
31 ---- wicd-1.7.1b2/encryption/templates/wpa-psk-hex 1970-01-01 01:00:00.000000000 +0100
32 -+++ wicd-1.7.1b2.new/encryption/templates/wpa-psk-hex 2011-09-13 19:59:11.000000000 +0100
33 -@@ -0,0 +1,15 @@
34 -+name = WPA 1/2 (Preshared Hex Key)
35 -+author = Thomas Kahle
36 -+version = 1
37 -+require apsk *Preshared_Key
38 -+-----
39 -+ctrl_interface=/var/run/wpa_supplicant
40 -+network={
41 -+ ssid="$_ESSID"
42 -+ scan_ssid=$_SCAN
43 -+ proto=WPA RSN
44 -+ key_mgmt=WPA-PSK
45 -+ pairwise=CCMP TKIP
46 -+ group=CCMP TKIP
47 -+ psk=$_APSK
48 -+}
49
50 diff --git a/net-misc/wicd/files/wicd-init.d b/net-misc/wicd/files/wicd-init.d
51 deleted file mode 100644
52 index b61bf66..00000000
53 --- a/net-misc/wicd/files/wicd-init.d
54 +++ /dev/null
55 @@ -1,24 +0,0 @@
56 -#!/sbin/openrc-run
57 -# Copyright 1999-2006 Gentoo Foundation
58 -# Distributed under the terms of the GNU General Public License v2
59 -
60 -opts="start stop restart"
61 -
62 -WICD_DAEMON=/usr/sbin/wicd
63 -WICD_PIDFILE=/var/run/wicd/wicd.pid
64 -
65 -depend() {
66 - need dbus
67 -}
68 -
69 -start() {
70 - ebegin "Starting wicd daemon"
71 - "${WICD_DAEMON}" >/dev/null 2>&1
72 - eend $?
73 -}
74 -
75 -stop() {
76 - ebegin "Stopping wicd daemon"
77 - start-stop-daemon --stop --pidfile "${WICD_PIDFILE}"
78 - eend $?
79 -}