SHA256
1
0
forked from pool/mpd

Accepting request 706649 from multimedia:apps

OBS-URL: https://build.opensuse.org/request/show/706649
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/mpd?expand=0&rev=10
This commit is contained in:
Dominique Leuenberger 2019-06-01 07:58:30 +00:00 committed by Git OBS Bridge
commit ab4513cfad
5 changed files with 76 additions and 9 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c6ff74ff521aa2b390bdeac299954da21b9d0a66216abdd500ae590d97ab514a
size 664408

3
mpd-0.21.9.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:39e25376ac2f4db26c3d074eba2ebeba10879a29c71abab33571019c1e520d3e
size 671092

View File

@ -1,5 +1,7 @@
--- a/doc/mpdconf.example 2017-02-01 21:58:30.000000000 +0100
+++ b/doc/mpdconf.example 2017-08-10 12:26:41.316129281 +0200
Index: mpd-0.21.9/doc/mpdconf.example
===================================================================
--- mpd-0.21.9.orig/doc/mpdconf.example
+++ mpd-0.21.9/doc/mpdconf.example
@@ -17,7 +17,7 @@
# playlist files not created by the server but only if they are in the MPD
# format. This setting defaults to playlist saving being disabled.
@ -20,7 +22,7 @@
# These logs are great for troubleshooting, depending on your log_level
@@ -34,25 +34,25 @@
# The special value "syslog" makes MPD use the local syslog daemon. This
# setting defaults to logging to syslog, otherwise logging is disabled.
# setting defaults to logging to syslog.
#
-#log_file "~/.mpd/log"
+#log_file "syslog"
@ -65,7 +67,7 @@
#
# This setting sets the address for the daemon to listen on. Careful attention
# should be paid if this is assigned to anything other then the default, any.
@@ -275,12 +275,12 @@
@@ -275,12 +275,12 @@ input {
#
# An example of a pulseaudio output (streaming to a remote pulseaudio server)
#
@ -82,7 +84,7 @@
#
# An example of a winmm output (Windows multimedia API).
#
@@ -389,6 +389,6 @@
@@ -385,6 +385,6 @@ input {
# If file or directory names do not display correctly for your locale then you
# may need to modify this setting.
#

View File

@ -1,3 +1,64 @@
-------------------------------------------------------------------
Fri May 31 10:49:14 UTC 2019 - Tomas Cech <sleep_walker@opensuse.org>
- Update to version 0.21.9
* input
- buffer: fix deadlock bug
- smbclient: download to buffer instead of throttling transfer
- qobuz/tidal: scan tags when loading a playlist
- cdio_paranoia: fix build failure due to missing #include
- buffer: fix crash bug when playing remote WAV file
* output
- httpd: add missing mutex lock
- httpd: fix use-after-free bug
- pulse: work around error with unusual channel count
- osx: fix build failure
- shout: add support for TLS
- httpd: declare protocol "HTTP/1.1" instead of "ICY"
- alsa: fix crash bug
- alsa: fix stuttering at start of playback
- alsa: fix discarded samples at end of song
- alsa: clear error after reopening device
* playlist
- soundcloud: fix "Unsupported URI scheme" (0.21.6 regression)
- flac: fix use-after-free bug
* protocol
- allow loading playlists specified as absolute filesystem paths
- fix negated filter expressions with multiple tag values
- fix "list" with filter expression
- omit empty playlist names in "listplaylists"
- fix deadlock in "albumart" command
- fix "tagtypes disable" command
* decoder
- opus: fix replay gain when there are no other tags
- opus: fix seeking to beginning of song
- vorbis: fix Tremor conflict resulting in crash
* database
- simple: fix assertion failure
- fix assertion failures with mount points
- inotify: fix crash bug "terminate called after throwing ..."
- upnp: implement "list ... group"
* storage
- udisks: fix "AlreadyMounted" error
- udisks: use relative path from mount URI
- fix memory leak
* tags
- ape: map "Album Artist"
* mixer
- pulse: add "scale_volume" setting
* fix spurious "single" mode bug
* fix Bonjour bug
* fix build failure with GCC 9
* fix build failure with -Ddatabase=false
* systemd: add user socket unit
* doc: "list file" is deprecated
* require Meson 0.49.0 for native libgcrypt-config support
* fix build failure with -Dlocal_socket=false
* support abstract sockets on Linux
* remove libwrap support
* log: default to journal if MPD was started as systemd service
- drop GCC9-buildfix.patch
-------------------------------------------------------------------
Tue May 28 12:09:16 UTC 2019 - Christophe Giboudeaux <christophe@krop.fr>

View File

@ -25,7 +25,7 @@
%endif
%define mver 0.21
Name: mpd
Version: 0.21.2
Version: 0.21.9
Release: 0
Summary: Music Player Daemon
License: GPL-3.0-or-later
@ -225,6 +225,7 @@ test -x "$(type -p g++-7)" && export CXX=g++-7
-Djack=enabled \
-Dao=enabled \
-Dpulse=enabled \
-Dtremor=disabled \
-Dsystemd_system_unit_dir=%{_unitdir} \
-Dsystemd_user_unit_dir=%{_userunitdir}
%meson_build
@ -239,6 +240,8 @@ install -d \
install -m 0644 %{SOURCE2} README.mpd
cp -a "%{SOURCE3}" "%{buildroot}%{_docdir}/%{name}/"
ln -s service %{buildroot}%{_sbindir}/rcmpd
rm %{buildroot}%{_libexecdir}/systemd/user/mpd.socket
ln -s ../system/mpd.socket %{buildroot}%{_libexecdir}/systemd/user/mpd.socket
%pre
# add mpd user only when installing first time
@ -268,6 +271,7 @@ getent passwd mpd >/dev/null || useradd -r -g audio -d %{_localstatedir}/lib/mpd
%{_datadir}/icons/hicolor/scalable/apps/%{name}.svg
%{_unitdir}/mpd.service
%{_unitdir}/mpd.socket
%{_libexecdir}/systemd/user/mpd.socket
%{_userunitdir}/mpd.service
%changelog