Age | Commit message (Collapse) | Author |
|
```python
python: loading script "/usr/share/weechat/python/weechat-matrix.py"
python: stdout/stderr (?): Traceback (most recent call last):
python: stdout/stderr (?): File "/usr/share/weechat/python/weechat-matrix.py", line 44, in <module>
python: stdout/stderr (?): from future.utils import bytes_to_native_str as n
python: stdout/stderr (?): ModuleNotFoundError: No module named 'future'
python: unable to parse file "/usr/share/weechat/python/weechat-matrix.py"
```
|
|
|
|
|
|
WeeChat supports the XDG Base Directory Specification since version 3.2.
|
|
weechat 2.8-2 recognises scripts in /usr/share/weechat/, so there is no need to
create a symlink to weechat-matrix.py in ~/.weechat/python/ any more.
|
|
Improve the packaging thanks to dvzrv and eschwartz: the Python module is now
properly installed to site-pages, which has the advantage of tracked dependency
versions as well as pregenerated bytecode. The only thing left in
/usr/share/weechat/python/ is the WeeChat script that needs to be symlinked to
WEECHAT_HOME by the user. It was renamed to weechat-matrix.py because using the
name matrix.py leads to a circular import error.
As a result users will have to update their symbolic links after the upgrade,
this is documented by a post_upgrade message.
|
|
|