summaryrefslogtreecommitdiffstats
path: root/extra/source/wicd/wicd-1421918.patch
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2020-08-01 19:08:49 +0000
committer Eric Hameleers <alien@slackware.com>2020-08-02 08:59:52 +0200
commit7146524f273ad7add0d5b533156d35d07896ed8c (patch)
tree367bba6cd7d1ed2bd012e2f622b4cf5e13046959 /extra/source/wicd/wicd-1421918.patch
parent85535b49c47cc8cec1dd802c716155e08a75aeb4 (diff)
downloadcurrent-7146524f273ad7add0d5b533156d35d07896ed8c.tar.gz
current-7146524f273ad7add0d5b533156d35d07896ed8c.tar.xz
Sat Aug 1 19:08:49 UTC 202020200801190849
a/cryptsetup-2.3.3-x86_64-2.txz: Rebuilt. Recompiled against json-c-0.15_20200726. l/imagemagick-7.0.10_25-x86_64-1.txz: Upgraded. l/json-c-0.15_20200726-x86_64-1.txz: Upgraded. Shared library .so-version bump. l/urwid-1.0.3-x86_64-5.txz: Removed. This is an ancient version that was only used by wicd. n/bind-9.16.5-x86_64-2.txz: Rebuilt. Recompiled against json-c-0.15_20200726. x/libmypaint-1.6.1-x86_64-2.txz: Rebuilt. Recompiled against json-c-0.15_20200726. xap/gimp-2.10.20-x86_64-2.txz: Rebuilt. Recompiled against json-c-0.15_20200726. extra/wicd/wicd-1.7.4-x86_64-3.txz: Removed. This is unmaintained, possibly insecure, and doesn't work with Python versions newer than 2.7.18. NetworkManager is a better choice these days.
Diffstat (limited to 'extra/source/wicd/wicd-1421918.patch')
-rw-r--r--extra/source/wicd/wicd-1421918.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/extra/source/wicd/wicd-1421918.patch b/extra/source/wicd/wicd-1421918.patch
deleted file mode 100644
index 2428f011b..000000000
--- a/extra/source/wicd/wicd-1421918.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-=== modified file 'curses/wicd-curses.py'
---- curses/wicd-curses.py 2014-12-21 16:57:33 +0000
-+++ curses/wicd-curses.py 2015-02-24 23:41:01 +0000
-@@ -532,7 +532,10 @@
- def get_selected_profile(self):
- """Get the selected wired profile"""
- loc = self.get_focus()[1]
-- return self.theList[loc]
-+ if len(self.theList) > loc:
-+ return self.theList[loc]
-+ else:
-+ return self.theList[-1]
-
-
- class AdHocDialog(Dialog2):