Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] wicd: add patch to prevent IndexError in curses interface
@ 2019-06-16 18:47 voidlinux-github
  2019-06-16 20:30 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: voidlinux-github @ 2019-06-16 18:47 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 372 bytes --]

There is a new pull request by hereforthebugs against master on the void-packages repository

https://github.com/hereforthebugs/void-packages wicd-patch
https://github.com/void-linux/void-packages/pull/12496

wicd: add patch to prevent IndexError in curses interface
Fixes #12485 

A patch file from https://github.com/void-linux/void-packages/pull/12496.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-wicd-patch-12496.patch --]
[-- Type: application/text/x-diff, Size: 1113 bytes --]

From 9517756946e41aaaa7af5d47031b57211e421859 Mon Sep 17 00:00:00 2001
From: Spencer Burris <whiteph@protonmail.com>
Date: Sun, 16 Jun 2019 11:36:36 -0700
Subject: [PATCH] wicd: add patch to prevent IndexError in curses interface

---
 srcpkgs/wicd/patches/wicd-1421918.patch | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100644 srcpkgs/wicd/patches/wicd-1421918.patch

diff --git a/srcpkgs/wicd/patches/wicd-1421918.patch b/srcpkgs/wicd/patches/wicd-1421918.patch
new file mode 100644
index 00000000000..f855ec5b1cc
--- /dev/null
+++ b/srcpkgs/wicd/patches/wicd-1421918.patch
@@ -0,0 +1,16 @@
+=== 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):
+

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PR PATCH] [Updated] wicd: add patch to prevent IndexError in curses interface
  2019-06-16 18:47 [PR PATCH] wicd: add patch to prevent IndexError in curses interface voidlinux-github
@ 2019-06-16 20:30 ` voidlinux-github
  2019-06-16 20:30 ` voidlinux-github
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: voidlinux-github @ 2019-06-16 20:30 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 377 bytes --]

There is an updated pull request by hereforthebugs against master on the void-packages repository

https://github.com/hereforthebugs/void-packages wicd-patch
https://github.com/void-linux/void-packages/pull/12496

wicd: add patch to prevent IndexError in curses interface
Fixes #12485 

A patch file from https://github.com/void-linux/void-packages/pull/12496.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-wicd-patch-12496.patch --]
[-- Type: application/text/x-diff, Size: 1811 bytes --]

From 9517756946e41aaaa7af5d47031b57211e421859 Mon Sep 17 00:00:00 2001
From: Spencer Burris <whiteph@protonmail.com>
Date: Sun, 16 Jun 2019 11:36:36 -0700
Subject: [PATCH 1/2] wicd: add patch to prevent IndexError in curses interface

---
 srcpkgs/wicd/patches/wicd-1421918.patch | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100644 srcpkgs/wicd/patches/wicd-1421918.patch

diff --git a/srcpkgs/wicd/patches/wicd-1421918.patch b/srcpkgs/wicd/patches/wicd-1421918.patch
new file mode 100644
index 00000000000..f855ec5b1cc
--- /dev/null
+++ b/srcpkgs/wicd/patches/wicd-1421918.patch
@@ -0,0 +1,16 @@
+=== 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):
+

From 2c6983b527c6765b7d12f0d6cfc336f75c41db57 Mon Sep 17 00:00:00 2001
From: Spencer Burris <whiteph@protonmail.com>
Date: Sun, 16 Jun 2019 13:29:55 -0700
Subject: [PATCH 2/2] wicd: bump revision number

---
 srcpkgs/wicd/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wicd/template b/srcpkgs/wicd/template
index be807585983..c8d7b924b91 100644
--- a/srcpkgs/wicd/template
+++ b/srcpkgs/wicd/template
@@ -1,7 +1,7 @@
 # Template file for 'wicd'
 pkgname=wicd
 version=1.7.4
-revision=3
+revision=4
 archs=noarch
 hostmakedepends="python python-setuptools python-Babel"
 depends="dbus-glib dhcpcd ethtool net-tools python-dbus python-gobject2 python-urwid

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PR PATCH] [Updated] wicd: add patch to prevent IndexError in curses interface
  2019-06-16 18:47 [PR PATCH] wicd: add patch to prevent IndexError in curses interface voidlinux-github
  2019-06-16 20:30 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-06-16 20:30 ` voidlinux-github
  2019-06-16 20:37 ` voidlinux-github
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: voidlinux-github @ 2019-06-16 20:30 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 377 bytes --]

There is an updated pull request by hereforthebugs against master on the void-packages repository

https://github.com/hereforthebugs/void-packages wicd-patch
https://github.com/void-linux/void-packages/pull/12496

wicd: add patch to prevent IndexError in curses interface
Fixes #12485 

A patch file from https://github.com/void-linux/void-packages/pull/12496.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-wicd-patch-12496.patch --]
[-- Type: application/text/x-diff, Size: 1811 bytes --]

From 9517756946e41aaaa7af5d47031b57211e421859 Mon Sep 17 00:00:00 2001
From: Spencer Burris <whiteph@protonmail.com>
Date: Sun, 16 Jun 2019 11:36:36 -0700
Subject: [PATCH 1/2] wicd: add patch to prevent IndexError in curses interface

---
 srcpkgs/wicd/patches/wicd-1421918.patch | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100644 srcpkgs/wicd/patches/wicd-1421918.patch

diff --git a/srcpkgs/wicd/patches/wicd-1421918.patch b/srcpkgs/wicd/patches/wicd-1421918.patch
new file mode 100644
index 00000000000..f855ec5b1cc
--- /dev/null
+++ b/srcpkgs/wicd/patches/wicd-1421918.patch
@@ -0,0 +1,16 @@
+=== 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):
+

From 2c6983b527c6765b7d12f0d6cfc336f75c41db57 Mon Sep 17 00:00:00 2001
From: Spencer Burris <whiteph@protonmail.com>
Date: Sun, 16 Jun 2019 13:29:55 -0700
Subject: [PATCH 2/2] wicd: bump revision number

---
 srcpkgs/wicd/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wicd/template b/srcpkgs/wicd/template
index be807585983..c8d7b924b91 100644
--- a/srcpkgs/wicd/template
+++ b/srcpkgs/wicd/template
@@ -1,7 +1,7 @@
 # Template file for 'wicd'
 pkgname=wicd
 version=1.7.4
-revision=3
+revision=4
 archs=noarch
 hostmakedepends="python python-setuptools python-Babel"
 depends="dbus-glib dhcpcd ethtool net-tools python-dbus python-gobject2 python-urwid

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PR PATCH] [Updated] wicd: add patch to prevent IndexError in curses interface
  2019-06-16 18:47 [PR PATCH] wicd: add patch to prevent IndexError in curses interface voidlinux-github
                   ` (2 preceding siblings ...)
  2019-06-16 20:37 ` voidlinux-github
@ 2019-06-16 20:37 ` voidlinux-github
  2019-06-16 21:20 ` voidlinux-github
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: voidlinux-github @ 2019-06-16 20:37 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 377 bytes --]

There is an updated pull request by hereforthebugs against master on the void-packages repository

https://github.com/hereforthebugs/void-packages wicd-patch
https://github.com/void-linux/void-packages/pull/12496

wicd: add patch to prevent IndexError in curses interface
Fixes #12485 

A patch file from https://github.com/void-linux/void-packages/pull/12496.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-wicd-patch-12496.patch --]
[-- Type: application/text/x-diff, Size: 1585 bytes --]

From 8b6fc91453102f7f8eb64809492f039ea995af18 Mon Sep 17 00:00:00 2001
From: Spencer Burris <whiteph@protonmail.com>
Date: Sun, 16 Jun 2019 13:36:36 -0700
Subject: [PATCH] wicd: add patch to prevent IndexError in curses interface

---
 srcpkgs/wicd/patches/wicd-1421918.patch | 16 ++++++++++++++++
 srcpkgs/wicd/template                   |  2 +-
 2 files changed, 17 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/wicd/patches/wicd-1421918.patch

diff --git a/srcpkgs/wicd/patches/wicd-1421918.patch b/srcpkgs/wicd/patches/wicd-1421918.patch
new file mode 100644
index 00000000000..f855ec5b1cc
--- /dev/null
+++ b/srcpkgs/wicd/patches/wicd-1421918.patch
@@ -0,0 +1,16 @@
+=== 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):
+
diff --git a/srcpkgs/wicd/template b/srcpkgs/wicd/template
index be807585983..c8d7b924b91 100644
--- a/srcpkgs/wicd/template
+++ b/srcpkgs/wicd/template
@@ -1,7 +1,7 @@
 # Template file for 'wicd'
 pkgname=wicd
 version=1.7.4
-revision=3
+revision=4
 archs=noarch
 hostmakedepends="python python-setuptools python-Babel"
 depends="dbus-glib dhcpcd ethtool net-tools python-dbus python-gobject2 python-urwid

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PR PATCH] [Updated] wicd: add patch to prevent IndexError in curses interface
  2019-06-16 18:47 [PR PATCH] wicd: add patch to prevent IndexError in curses interface voidlinux-github
  2019-06-16 20:30 ` [PR PATCH] [Updated] " voidlinux-github
  2019-06-16 20:30 ` voidlinux-github
@ 2019-06-16 20:37 ` voidlinux-github
  2019-06-16 20:37 ` voidlinux-github
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: voidlinux-github @ 2019-06-16 20:37 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 377 bytes --]

There is an updated pull request by hereforthebugs against master on the void-packages repository

https://github.com/hereforthebugs/void-packages wicd-patch
https://github.com/void-linux/void-packages/pull/12496

wicd: add patch to prevent IndexError in curses interface
Fixes #12485 

A patch file from https://github.com/void-linux/void-packages/pull/12496.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-wicd-patch-12496.patch --]
[-- Type: application/text/x-diff, Size: 1585 bytes --]

From 8b6fc91453102f7f8eb64809492f039ea995af18 Mon Sep 17 00:00:00 2001
From: Spencer Burris <whiteph@protonmail.com>
Date: Sun, 16 Jun 2019 13:36:36 -0700
Subject: [PATCH] wicd: add patch to prevent IndexError in curses interface

---
 srcpkgs/wicd/patches/wicd-1421918.patch | 16 ++++++++++++++++
 srcpkgs/wicd/template                   |  2 +-
 2 files changed, 17 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/wicd/patches/wicd-1421918.patch

diff --git a/srcpkgs/wicd/patches/wicd-1421918.patch b/srcpkgs/wicd/patches/wicd-1421918.patch
new file mode 100644
index 00000000000..f855ec5b1cc
--- /dev/null
+++ b/srcpkgs/wicd/patches/wicd-1421918.patch
@@ -0,0 +1,16 @@
+=== 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):
+
diff --git a/srcpkgs/wicd/template b/srcpkgs/wicd/template
index be807585983..c8d7b924b91 100644
--- a/srcpkgs/wicd/template
+++ b/srcpkgs/wicd/template
@@ -1,7 +1,7 @@
 # Template file for 'wicd'
 pkgname=wicd
 version=1.7.4
-revision=3
+revision=4
 archs=noarch
 hostmakedepends="python python-setuptools python-Babel"
 depends="dbus-glib dhcpcd ethtool net-tools python-dbus python-gobject2 python-urwid

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PR PATCH] [Updated] wicd: add patch to prevent IndexError in curses interface
  2019-06-16 18:47 [PR PATCH] wicd: add patch to prevent IndexError in curses interface voidlinux-github
                   ` (3 preceding siblings ...)
  2019-06-16 20:37 ` voidlinux-github
@ 2019-06-16 21:20 ` voidlinux-github
  2019-06-16 21:20 ` voidlinux-github
  2019-06-17 15:21 ` [PR PATCH] [Merged]: " voidlinux-github
  6 siblings, 0 replies; 8+ messages in thread
From: voidlinux-github @ 2019-06-16 21:20 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 377 bytes --]

There is an updated pull request by hereforthebugs against master on the void-packages repository

https://github.com/hereforthebugs/void-packages wicd-patch
https://github.com/void-linux/void-packages/pull/12496

wicd: add patch to prevent IndexError in curses interface
Fixes #12485 

A patch file from https://github.com/void-linux/void-packages/pull/12496.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-wicd-patch-12496.patch --]
[-- Type: application/text/x-diff, Size: 2236 bytes --]

From c44c53b90dbe66800edd56dd66c5ef4f7b9c80d0 Mon Sep 17 00:00:00 2001
From: Spencer Burris <whiteph@protonmail.com>
Date: Sun, 16 Jun 2019 14:03:27 -0700
Subject: [PATCH] wicd: add patch to prevent IndexError in curses interface

---
 srcpkgs/wicd/patches/wicd-1421918.patch | 16 ++++++++++++++++
 srcpkgs/wicd/template                   |  8 ++++----
 2 files changed, 20 insertions(+), 4 deletions(-)
 create mode 100644 srcpkgs/wicd/patches/wicd-1421918.patch

diff --git a/srcpkgs/wicd/patches/wicd-1421918.patch b/srcpkgs/wicd/patches/wicd-1421918.patch
new file mode 100644
index 00000000000..f855ec5b1cc
--- /dev/null
+++ b/srcpkgs/wicd/patches/wicd-1421918.patch
@@ -0,0 +1,16 @@
+=== 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):
+
diff --git a/srcpkgs/wicd/template b/srcpkgs/wicd/template
index be807585983..447483a00c6 100644
--- a/srcpkgs/wicd/template
+++ b/srcpkgs/wicd/template
@@ -1,20 +1,20 @@
 # Template file for 'wicd'
 pkgname=wicd
 version=1.7.4
-revision=3
+revision=4
 archs=noarch
+pycompile_module="wicd"
+pycompile_dirs="usr/lib/wicd usr/share/wicd"
 hostmakedepends="python python-setuptools python-Babel"
 depends="dbus-glib dhcpcd ethtool net-tools python-dbus python-gobject2 python-urwid
  util-linux wireless_tools wpa_supplicant"
-pycompile_module="wicd"
-pycompile_dirs="usr/lib/wicd usr/share/wicd"
 conf_files="
 	/etc/dbus-1/system.d/wicd.conf
 	/etc/wicd/encryption/templates/active"
 short_desc="Open source wired and wireless network manager"
 maintainer="Juan RP <xtraeme@voidlinux.org>"
-homepage="http://wicd.sourceforge.net"
 license="GPL-2"
+homepage="http://wicd.sourceforge.net"
 distfiles="http://launchpad.net/wicd/1.7/${version}/+download/wicd-${version}.tar.gz"
 checksum=67989614004773db349791c37675efb914d084bdb221356a05e4369c35e7eb62
 

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PR PATCH] [Updated] wicd: add patch to prevent IndexError in curses interface
  2019-06-16 18:47 [PR PATCH] wicd: add patch to prevent IndexError in curses interface voidlinux-github
                   ` (4 preceding siblings ...)
  2019-06-16 21:20 ` voidlinux-github
@ 2019-06-16 21:20 ` voidlinux-github
  2019-06-17 15:21 ` [PR PATCH] [Merged]: " voidlinux-github
  6 siblings, 0 replies; 8+ messages in thread
From: voidlinux-github @ 2019-06-16 21:20 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 377 bytes --]

There is an updated pull request by hereforthebugs against master on the void-packages repository

https://github.com/hereforthebugs/void-packages wicd-patch
https://github.com/void-linux/void-packages/pull/12496

wicd: add patch to prevent IndexError in curses interface
Fixes #12485 

A patch file from https://github.com/void-linux/void-packages/pull/12496.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-wicd-patch-12496.patch --]
[-- Type: application/text/x-diff, Size: 2236 bytes --]

From c44c53b90dbe66800edd56dd66c5ef4f7b9c80d0 Mon Sep 17 00:00:00 2001
From: Spencer Burris <whiteph@protonmail.com>
Date: Sun, 16 Jun 2019 14:03:27 -0700
Subject: [PATCH] wicd: add patch to prevent IndexError in curses interface

---
 srcpkgs/wicd/patches/wicd-1421918.patch | 16 ++++++++++++++++
 srcpkgs/wicd/template                   |  8 ++++----
 2 files changed, 20 insertions(+), 4 deletions(-)
 create mode 100644 srcpkgs/wicd/patches/wicd-1421918.patch

diff --git a/srcpkgs/wicd/patches/wicd-1421918.patch b/srcpkgs/wicd/patches/wicd-1421918.patch
new file mode 100644
index 00000000000..f855ec5b1cc
--- /dev/null
+++ b/srcpkgs/wicd/patches/wicd-1421918.patch
@@ -0,0 +1,16 @@
+=== 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):
+
diff --git a/srcpkgs/wicd/template b/srcpkgs/wicd/template
index be807585983..447483a00c6 100644
--- a/srcpkgs/wicd/template
+++ b/srcpkgs/wicd/template
@@ -1,20 +1,20 @@
 # Template file for 'wicd'
 pkgname=wicd
 version=1.7.4
-revision=3
+revision=4
 archs=noarch
+pycompile_module="wicd"
+pycompile_dirs="usr/lib/wicd usr/share/wicd"
 hostmakedepends="python python-setuptools python-Babel"
 depends="dbus-glib dhcpcd ethtool net-tools python-dbus python-gobject2 python-urwid
  util-linux wireless_tools wpa_supplicant"
-pycompile_module="wicd"
-pycompile_dirs="usr/lib/wicd usr/share/wicd"
 conf_files="
 	/etc/dbus-1/system.d/wicd.conf
 	/etc/wicd/encryption/templates/active"
 short_desc="Open source wired and wireless network manager"
 maintainer="Juan RP <xtraeme@voidlinux.org>"
-homepage="http://wicd.sourceforge.net"
 license="GPL-2"
+homepage="http://wicd.sourceforge.net"
 distfiles="http://launchpad.net/wicd/1.7/${version}/+download/wicd-${version}.tar.gz"
 checksum=67989614004773db349791c37675efb914d084bdb221356a05e4369c35e7eb62
 

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PR PATCH] [Merged]: wicd: add patch to prevent IndexError in curses interface
  2019-06-16 18:47 [PR PATCH] wicd: add patch to prevent IndexError in curses interface voidlinux-github
                   ` (5 preceding siblings ...)
  2019-06-16 21:20 ` voidlinux-github
@ 2019-06-17 15:21 ` voidlinux-github
  6 siblings, 0 replies; 8+ messages in thread
From: voidlinux-github @ 2019-06-17 15:21 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 203 bytes --]

There's a merged pull request on the void-packages repository

wicd: add patch to prevent IndexError in curses interface
https://github.com/void-linux/void-packages/pull/12496
Description: Fixes #12485 

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2019-06-17 15:21 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-16 18:47 [PR PATCH] wicd: add patch to prevent IndexError in curses interface voidlinux-github
2019-06-16 20:30 ` [PR PATCH] [Updated] " voidlinux-github
2019-06-16 20:30 ` voidlinux-github
2019-06-16 20:37 ` voidlinux-github
2019-06-16 20:37 ` voidlinux-github
2019-06-16 21:20 ` voidlinux-github
2019-06-16 21:20 ` voidlinux-github
2019-06-17 15:21 ` [PR PATCH] [Merged]: " voidlinux-github

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).