- Update to ver 0.20.21 (2018/08/17)
* database - proxy: add "password" setting - proxy: support tags "ArtistSort", "AlbumArtistSort", "AlbumSort" - simple: allow .mpdignore comments only at start of line - proxy: fix "search already in progress" errors - proxy: implement "list ... group" * decoder - dsdiff, dsf: support more MIME types - dsdiff, dsf: allow 4 MB ID3 tags - opus: support R128_ALBUM_GAIN tag - ffmpeg: fix av_register_all() deprecation warning (FFmpeg 4.0) * input - mms: fix lockup bug and a crash bug * output - httpd: remove broken DLNA support code - pulse: cork stream when paused due to "single" mode * playlist - cue: support file type declaration "FLAC" (non-standard) * player - fix spurious "Not seekable" error when switching radio streams * protocol - fix "modified-since" filter regression - validate absolute seek time, reject negative values * URI schemes are case insensitive - deal with API change in fluidsynth with mpd-fluidsynth.patch - use autosetup OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/mpd?expand=0&rev=14
This commit is contained in:
parent
5f27dbe25d
commit
09896b0a81
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:6a582dc2ae90b94ff3853f9ffd7d80b2c2b5fe2e2c35cb1da0b36f3f3dfad434
|
|
||||||
size 792416
|
|
3
mpd-0.20.21.tar.xz
Normal file
3
mpd-0.20.21.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:8322764dc265c20f05c8c8fdfdd578b0722e74626bef56fcd8eebfb01acc58dc
|
||||||
|
size 800476
|
14
mpd-fluidsynth.patch
Normal file
14
mpd-fluidsynth.patch
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
--- a/src/decoder/plugins/FluidsynthDecoderPlugin.cxx
|
||||||
|
+++ b/src/decoder/plugins/FluidsynthDecoderPlugin.cxx
|
||||||
|
@@ -64,7 +64,11 @@ fluidsynth_level_to_mpd(enum fluid_log_l
|
||||||
|
* logging library.
|
||||||
|
*/
|
||||||
|
static void
|
||||||
|
+#if FLUIDSYNTH_VERSION_MAJOR == 1
|
||||||
|
fluidsynth_mpd_log_function(int level, char *message, gcc_unused void *data)
|
||||||
|
+#else
|
||||||
|
+fluidsynth_mpd_log_function(int level, const char *message, gcc_unused void *data)
|
||||||
|
+#endif
|
||||||
|
{
|
||||||
|
Log(fluidsynth_domain,
|
||||||
|
fluidsynth_level_to_mpd(fluid_log_level(level)),
|
31
mpd.changes
31
mpd.changes
@ -1,3 +1,34 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 17 12:37:51 UTC 2018 - olaf@aepfle.de
|
||||||
|
|
||||||
|
- Update to ver 0.20.21 (2018/08/17)
|
||||||
|
* database
|
||||||
|
- proxy: add "password" setting
|
||||||
|
- proxy: support tags "ArtistSort", "AlbumArtistSort", "AlbumSort"
|
||||||
|
- simple: allow .mpdignore comments only at start of line
|
||||||
|
- proxy: fix "search already in progress" errors
|
||||||
|
- proxy: implement "list ... group"
|
||||||
|
* decoder
|
||||||
|
- dsdiff, dsf: support more MIME types
|
||||||
|
- dsdiff, dsf: allow 4 MB ID3 tags
|
||||||
|
- opus: support R128_ALBUM_GAIN tag
|
||||||
|
- ffmpeg: fix av_register_all() deprecation warning (FFmpeg 4.0)
|
||||||
|
* input
|
||||||
|
- mms: fix lockup bug and a crash bug
|
||||||
|
* output
|
||||||
|
- httpd: remove broken DLNA support code
|
||||||
|
- pulse: cork stream when paused due to "single" mode
|
||||||
|
* playlist
|
||||||
|
- cue: support file type declaration "FLAC" (non-standard)
|
||||||
|
* player
|
||||||
|
- fix spurious "Not seekable" error when switching radio streams
|
||||||
|
* protocol
|
||||||
|
- fix "modified-since" filter regression
|
||||||
|
- validate absolute seek time, reject negative values
|
||||||
|
* URI schemes are case insensitive
|
||||||
|
- deal with API change in fluidsynth with mpd-fluidsynth.patch
|
||||||
|
- use autosetup
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Feb 25 09:45:09 UTC 2018 - mardnh@gmx.de
|
Sun Feb 25 09:45:09 UTC 2018 - mardnh@gmx.de
|
||||||
|
|
||||||
|
7
mpd.spec
7
mpd.spec
@ -23,7 +23,7 @@
|
|||||||
%define _userunitdir %{_prefix}/lib/systemd/user
|
%define _userunitdir %{_prefix}/lib/systemd/user
|
||||||
%endif
|
%endif
|
||||||
Name: mpd
|
Name: mpd
|
||||||
Version: 0.20.18
|
Version: 0.20.21
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Music Player Daemon
|
Summary: Music Player Daemon
|
||||||
License: GPL-3.0-or-later
|
License: GPL-3.0-or-later
|
||||||
@ -35,6 +35,7 @@ Source3: mpd-user.conf
|
|||||||
# PATCH-FEATURE-OPENSUSE mpd-mpdconf_suse.patch --
|
# PATCH-FEATURE-OPENSUSE mpd-mpdconf_suse.patch --
|
||||||
Patch0: %{name}-mpdconf_suse.patch
|
Patch0: %{name}-mpdconf_suse.patch
|
||||||
Patch1: mpd-configh.patch
|
Patch1: mpd-configh.patch
|
||||||
|
Patch2: mpd-fluidsynth.patch
|
||||||
BuildRequires: autoconf
|
BuildRequires: autoconf
|
||||||
BuildRequires: automake
|
BuildRequires: automake
|
||||||
%if 0%{?suse_version} > 1315
|
%if 0%{?suse_version} > 1315
|
||||||
@ -133,9 +134,7 @@ for Gnome, KDE, console and Apache (PHP).
|
|||||||
Please read README.mpd how to configure it.
|
Please read README.mpd how to configure it.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%autosetup -p1
|
||||||
%patch0 -p1
|
|
||||||
%patch1 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export CC=gcc
|
export CC=gcc
|
||||||
|
Loading…
Reference in New Issue
Block a user