- Change Python version to 3.2+ because Python 2 is no longer supported - Add a patch to setup.py to install .desktop file (required for MPRIS support) - Add a wrapper script to pass the environment variable SSL_CERT_FILE, otherwise any video search fails with <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:600)> Relnotes: https://github.com/mps-youtube/mps-youtube/releases/tag/v0.2.5
4 lines
86 B
Bash
4 lines
86 B
Bash
#!/bin/sh
|
|
SSL_CERT_FILE='/etc/ssl/cert.pem'
|
|
export SSL_CERT_FILE
|
|
exec mpsyt ${1+"$@"}
|