poljar / weechat-matrix

Weechat Matrix protocol script written in python
Other
954 stars 119 forks source link

Alpine Linux install package list required #319

Closed 0x766C70 closed 2 years ago

0x766C70 commented 2 years ago

just to share you the packages required in order to pass pip3 requirement for weechat-matrix on alpine:

apk add weechat weechat-python python3 python3-dev curl olm olm-dev musl-dev gcc py3-wheel py3-importlib-metadata libffi-dev make

2Belette commented 2 years ago

Thanks vlp very helpful

craftyguy commented 2 years ago

you could just package it in Alpine :D

craftyguy commented 2 years ago

https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/32400

dkasak commented 2 years ago

@craftyguy, thanks for packaging! I'd like to add Alpine installation instructions, but I'm not very familiar with Alpine. Now that there's an aport, how would one install it?

craftyguy commented 2 years ago

@dkasak basically just: sudo apk add weechat-matrix

then to enable it in weechat:

$ mkdir -p ~/.local/share/weechat/python/autoload
$ ln -s /usr/share/weechat/python/weechat-matrix.py -t ~/.local/share/weechat/python/autoload

Those instructions get printed after you apk add the package ^^

dkasak commented 2 years ago

Great, thanks! There's now https://github.com/poljar/weechat-matrix#alpine-linux.

craftyguy commented 2 years ago

@dkasak nice, thanks for documenting it :D

0x766C70 commented 2 years ago

ttps://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/32400

Big thanks !!