~wicd-devel/wicd:master

Last commit made on 2019-09-11
Get this branch:
git clone -b master https://git.launchpad.net/~wicd-devel/wicd
Members of Wicd-devel can upload to this branch. Log in for directions.

Branch merges

Branch information

Name:
master
Repository:
lp:~wicd-devel/wicd

Recent commits

5860ad8... by Guido Maria Serra

updated shebangs & other p3 references

317576b... by Guido Maria Serra

Merge pull request #1 from xtaran/master

More fixes for using wicd under Python 3, mostly in the daemon

c1c26d8... by Axel Beckert

Remaining needed changes to get the daemon running with Python 3

c238d26... by Axel Beckert

Fix "NameError: name 'cmp' is not defined"

Source: https://codegolf.stackexchange.com/questions/49778/how-can-i-use-cmpa-b-with-python3

Now the wicd daemon starts as "/usr/sbin/wicd -c -f -e -o" wihout
errors, only warnings are left.

wicd-curses also runs but spews warnings into the status line, too.

9587c52... by Axel Beckert

Fix "TypeError: cmp is an invalid keyword argument for sort()"

c2789eb... by Axel Beckert

Fix "TypeError: sorted expected 1 arguments, got 2"

fef2a43... by Axel Beckert

Fix LogFile class by using io.FileIO instead of file

Thanks to Frank Hofmann for the right pointer to
https://stackoverflow.com/questions/47838405/porting-a-sub-class-of-python2-file-class-to-python3

Now at least "/usr/sbin/wicd -c -f -e -o" keeps running.

Still throws errors and warnings, though:

/usr/share/wicd/daemon/wicd-daemon.py:1925: PyGIDeprecationWarning: GObject.MainLoop is deprecated; use GLib.MainLoop instead
  mainloop = gobject.MainLoop()
/usr/share/wicd/daemon/monitor.py:392: PyGIDeprecationWarning: GObject.MainLoop is deprecated; use GLib.MainLoop instead
  mainloop = gobject.MainLoop()
Exception in thread Thread-1:
Traceback (most recent call last):
  File "/usr/lib/python3.7/threading.py", line 926, in _bootstrap_inner
    self.run()
  File "/usr/lib/python3.7/threading.py", line 870, in run
    self._target(*self._args, **self._kwargs)
  File "/usr/share/wicd/daemon/wicd-daemon.py", line 1020, in _async_scan
    self._sync_scan()
  File "/usr/share/wicd/daemon/wicd-daemon.py", line 1024, in _sync_scan
    scan = self.wifi.Scan(str(self.hidden_essid))
  File "/usr/lib/python3/dist-packages/wicd/networking.py", line 673, in Scan
    aps = wiface.GetNetworks(essid)
  File "/usr/lib/python3/dist-packages/wicd/wnettools.py", line 227, in newfunc
    return func(self, *args, **kwargs)
  File "/usr/lib/python3/dist-packages/wicd/wnettools.py", line 1392, in GetNetworks
    entry = self._ParseAccessPoint(cell, ralink_info)
  File "/usr/lib/python3/dist-packages/wicd/wnettools.py", line 1447, in _ParseAccessPoint
    ap['bitrates'] = sorted(m, lambda x, y: int(float(x) - float(y)))
TypeError: sorted expected 1 arguments, got 2

187f85f... by Axel Beckert

More Python 3 fixes needed to also install the packages

Daemon still does not start. It fails as follows:

Traceback (most recent call last):
  File "/usr/share/wicd/daemon/wicd-daemon.py", line 62, in <module>
    from wicd.logfile import ManagedStdio
  File "/usr/lib/python3/dist-packages/wicd/logfile.py", line 32, in <module>
    class LogFile(file):
NameError: name 'file' is not defined

c4ba09c... by Axel Beckert

Fix some execution paths in setup.py for Python 3

Mostly adds additionally thrown Exceptions and str vs bytes
conversions.

15ca072... by Guido Maria Serra

another step fwd