1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mopidy_ynh.git synced 2024-09-03 19:46:21 +02:00

Merge branch 'master' into testing

This commit is contained in:
Éric Gaspar 2023-11-02 12:58:06 +01:00
commit d13e5c20fb
5 changed files with 23 additions and 26 deletions

View file

@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
Play music, podcasts and radio programs from local disk and various streaming services Play music, podcasts and radio programs from local disk and various streaming services
**Shipped version:** 3.2.0~ynh2 **Shipped version:** 3.4.2~ynh2
## Screenshots ## Screenshots

View file

@ -18,7 +18,7 @@ Si vous navez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po
Écouter de la musique, des podcasts et des programmes radio depuis le disque local et divers services de streaming Écouter de la musique, des podcasts et des programmes radio depuis le disque local et divers services de streaming
**Version incluse :** 3.2.0~ynh2 **Version incluse :** 3.4.2~ynh2
## Captures décran ## Captures décran

View file

@ -6,7 +6,7 @@
"en": "Play music, podcasts and radio programs from local disk and various streaming services", "en": "Play music, podcasts and radio programs from local disk and various streaming services",
"fr": "Écouter de la musique, des podcasts et des programmes radio depuis le disque local et divers services de streaming" "fr": "Écouter de la musique, des podcasts et des programmes radio depuis le disque local et divers services de streaming"
}, },
"version": "3.2.0~ynh2", "version": "3.4.2~ynh2",
"url": "https://www.mopidy.com", "url": "https://www.mopidy.com",
"upstream": { "upstream": {
"license": "Apache-2.0", "license": "Apache-2.0",

View file

@ -8,7 +8,7 @@
pkg_dependencies="acl build-essential python3-dev python3-pip python3-venv git postgresql postgresql-contrib \ pkg_dependencies="acl build-essential python3-dev python3-pip python3-venv git postgresql postgresql-contrib \
gir1.2-gst-plugins-base-1.0 gir1.2-gstreamer-1.0 gstreamer1.0-plugins-good gstreamer1.0-plugins-ugly lsb-base \ gir1.2-gst-plugins-base-1.0 gir1.2-gstreamer-1.0 gstreamer1.0-plugins-good gstreamer1.0-plugins-ugly lsb-base \
python3-gst-1.0 python3-tornado debconf python3-pkg-resources python3-pykka python3-requests \ python3-gst-1.0 python3-tornado debconf python3-pkg-resources python3-pykka python3-requests \
gstreamer1.0-alsa gstreamer1.0-pulseaudio gstreamer1.0-tools" gstreamer1.0-alsa gstreamer1.0-pulseaudio gstreamer1.0-tools libgirepository1.0-dev libcairo2-dev"
#================================================= #=================================================
# PERSONAL HELPERS # PERSONAL HELPERS
@ -28,20 +28,21 @@ myynh_install() {
ynh_exec_as $app $final_path/env/bin/pip install --upgrade --no-cache-dir pip ynh_exec_as $app $final_path/env/bin/pip install --upgrade --no-cache-dir pip
# to make Gstreamer visible in Python environment # to make Gstreamer visible in Python environment
$final_path/env/bin/python3 -m pip install vext # $final_path/env/bin/python3 -m pip install vext
$final_path/env/bin/python3 -m pip install --no-binary=:all: vext.gi # $final_path/env/bin/python3 -m pip install --no-binary=:all: vext.gi
$final_path/env/bin/python3 -m pip install PyGObject
# install essential packages # install essential packages
ynh_exec_as $app $final_path/env/bin/python3 -m pip install --no-cache-dir Mopidy==$(ynh_app_upstream_version) ynh_exec_as $app $final_path/env/bin/python3 -m pip install --no-cache-dir Mopidy==$(ynh_app_upstream_version)
ynh_exec_as $app $final_path/env/bin/python3 -m pip install --no-cache-dir Mopidy-local==3.2.1 ynh_exec_as $app $final_path/env/bin/python3 -m pip install --no-cache-dir Mopidy-local==3.2.1
ynh_exec_as $app $final_path/env/bin/python3 -m pip install --no-cache-dir Mopidy-MusicBox-Webclient==3.1.0 ynh_exec_as $app $final_path/env/bin/python3 -m pip install --no-cache-dir Mopidy-MusicBox-Webclient==3.1.0
ynh_exec_as $app $final_path/env/bin/python3 -m pip install --no-cache-dir Mopidy-YouTube==3.3 ynh_exec_as $app $final_path/env/bin/python3 -m pip install --no-cache-dir Mopidy-YouTube==3.7
ynh_exec_as $app $final_path/env/bin/python3 -m pip install --no-cache-dir mopidy-ytmusic==0.3.0 ynh_exec_as $app $final_path/env/bin/python3 -m pip install --no-cache-dir mopidy-ytmusic==0.3.8
ynh_exec_as $app $final_path/env/bin/python3 -m pip install --no-cache-dir Mopidy-RadioNet==0.2.2 ynh_exec_as $app $final_path/env/bin/python3 -m pip install --no-cache-dir Mopidy-RadioNet==0.2.2
ynh_exec_as $app $final_path/env/bin/python3 -m pip install --no-cache-dir Mopidy-Podcast==3.0.0 ynh_exec_as $app $final_path/env/bin/python3 -m pip install --no-cache-dir Mopidy-Podcast==3.0.1
ynh_exec_as $app $final_path/env/bin/python3 -m pip install --no-cache-dir Mopidy-Podcast-iTunes==3.0.0 ynh_exec_as $app $final_path/env/bin/python3 -m pip install --no-cache-dir Mopidy-Podcast-iTunes==3.0.1
ynh_exec_as $app $final_path/env/bin/python3 -m pip install --no-cache-dir Mopidy-SoundCloud==3.0.1 ynh_exec_as $app $final_path/env/bin/python3 -m pip install --no-cache-dir Mopidy-SoundCloud==3.0.2
ynh_exec_as $app $final_path/env/bin/python3 -m pip install --no-cache-dir Mopidy-MPD==3.1.0 ynh_exec_as $app $final_path/env/bin/python3 -m pip install --no-cache-dir Mopidy-MPD==3.3.0
) )
} }

View file

@ -1,16 +1,12 @@
#EXTM3U #EXTM3U
#RADIOBROWSERUUID:b10a6f62-9fb8-11e8-a767-52543be04c81 #EXTINF:-1,Radio Swiss Pop
#EXTINF:1,bbc world service http://stream.srg-ssr.ch/rsp/mp3_128.m3u
http://bbcwssc.ic.llnwd.net/stream/bbcwssc_mp1_ws-einws #EXTINF:-1,France Blue
http://direct.francebleu.fr/live/fb1071-midfi.mp3
#EXTINF:-1,Deutschlandfunk
https://st01.sslstream.dlf.de/dlf/01/128/mp3/stream.mp3
#EXTINF:-1,BBC World Service
http://stream.live.vc.bbcmedia.co.uk/bbc_world_service
#EXTINF:-1,Cadena SER
http://playerservices.streamtheworld.com/api/livestream-redirect/CADENASER.mp3
#RADIOBROWSERUUID:242a99da-f2af-11e9-a96c-52543be04c81
#EXTINF:1,A23 FRANCE. INTER
http://direct.franceinter.fr/live/franceinter-midfi.mp3
#RADIOBROWSERUUID:2367e7e2-d3f2-11e9-a861-52543be04c81
#EXTINF:1,Radio Nacional de España RNE 1
http://rne.rtveradio.cires21.com/rne_hc.mp3
#RADIOBROWSERUUID:bb91a2bb-8df9-11e9-a6c6-52543be04c81
#EXTINF:1,Deutschlandfunk
http://st01.dlf.de/dlf/01/64/mp3/stream.mp3