1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-15 03:43:53 +02:00
Commit Graph

30 Commits

Author SHA1 Message Date
Tianling Shen
f43e7a5067 mpd: Update to 0.23.13
ver 0.23.13 (2023/05/22)
* input
  - curl: fix busy loop after connection failed
  - curl: hide "404" log messages for non-existent ".mpdignore" files
* archive
  - zzip: fix crash bug
* database
  - simple: reveal hidden songs after deleting containing CUE
* decoder
  - ffmpeg: reorder to a lower priority than "gme"
  - gme: require GME 0.6 or later
* output
  - pipewire: fix corruption bug due to missing lock
* Linux
  - shut down if parent process dies in --no-daemon mode
  - determine systemd unit directories via pkg-config
* support libfmt 10

ver 0.23.12 (2023/01/17)
* input
  - curl: require CURL 7.55.0 or later
* decoder
  - mad: fix integer underflow with very small files
* tags
  - fix crash bug due to race condition
* output
  - pipewire: adjust to PipeWire 0.3.64 API change
* fix build failures with GCC 13

Removed upstreamed patch.

Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
2023-08-31 09:14:14 -07:00
Rosen Penev
166be4078f mpd: update to 0.23.11
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2023-01-13 20:45:39 -08:00
Rosen Penev
b1999ec133 mpd: update to 0.23.9
Fixes compilation with newer ffmpeg.

Remove upstreamed patch.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2022-08-19 16:13:53 -07:00
Rosen Penev
63ba2ccbda mpd: update to 0.23.8
Simplify iconv patch.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2022-07-14 23:31:50 -07:00
Rosen Penev
9fcd8a4d4f mpd: update to 0.22.8
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-01 23:03:27 -07:00
Rosen Penev
326c97328e mpd: remove libavfilter support
The ffmpeg package in OpenWrt is customizable and that can cause issues
with a dirty InstallDev. Just remove libavfilter support.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-03-26 02:22:29 -07:00
Rosen Penev
09ec2fcdd1 mpd: update to 0.22.6
Add patch fixing compilation with Debian 9.

Remove npupnp patch. While it doesn't seem to have any negative effects
there's no real benefit to it.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-03-05 22:08:59 -08:00
Ilya Lipnitskiy
5d8d4fbbcb
treewide: Run refresh on all packages
The crude loop I wrote to come up with this changeset:

  find -L package/feeds/packages/ -name patches | \
  sed 's/patches$/refresh/' | sort | xargs make

Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
2021-02-20 16:02:15 -08:00
Rosen Penev
1640ff1a1e
Revert "mpd: update to 0.22"
This reverts commit 9eb20588cc.

For some unexplained reason, this uses host tools to compile target
builds.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-10-04 14:09:27 -07:00
Rosen Penev
9eb20588cc
mpd: update to 0.22
Refreshes patches and updated MESON_ARGS.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-09-25 18:16:09 -07:00
Rosen Penev
65f4f80d10
mpd: update to 0.21.26
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-09-22 15:09:17 -07:00
Rosen Penev
cd498507e2
mpd: switch to using libnpupnp
Removed iconv const patch. After discussing with upstream. it turns out
that libiconv-full in OpenWrt is broken.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-09-16 18:13:32 -07:00
Rosen Penev
aad1458876 mpd: fixup iconv support
Removes liconv LDFLAG and fixes ICONV_FULL.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-07-30 23:21:09 -07:00
Rosen Penev
dfdc430a4a
mpd: update to 0.21.25
pulseaudio-daemon depends on alsa-lib, which depends on @AUDIO_SUPPORT.
Enables -full on platforms lacking AUDIO_SUPPORT.

Simplified LDFLAGS slighly.

Removed pointless ICU dependency. I managed to patch meson.build to fix
iconv compilation. The original error was that without the header, it
was prefixing the iconv check with __buildin_ , which does not work
with uClibc-ng.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-07-20 19:56:51 -07:00
Rosen Penev
5e0264be7d
mpd: update to 0.21.22
Removed upstreamed patches. Only the first was really needed.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-04-03 20:58:18 -07:00
Rosen Penev
3be4778840
mpd: update to 0.21.20
Updated patches to latest patchset and removed upstreamed ones.

Ran init script through shellcheck. Restart using SIGHUP.

Added logging from stderr as any kind of logging is missing in --no-daemon
mode.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-02-17 21:16:26 -08:00
Rosen Penev
96521b6a8d
mpd: fix ffmpeg AIFF and AMR support
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-02-03 21:40:16 -08:00
Rosen Penev
c00f83241b
mpd: fix compilation with uClibc-ng
With mpd's build system, it requires either an iconv built into the libc
or icu. Since uClibc-ng as configured by OpenWrt currently has no iconv,
use icu for it to work around the problem. This is the simplest solution.

Added a patch to use boost's rounding functions. They are more appropriate
and work with uClibc-ng.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-02-03 20:28:03 -08:00
Andre Heider
5aaa1e7da4 mpd: update to v0.21.16 and build with meson
One patch was dropped (probably not required anymore).

Old options have been dropped and new ones added. The order is as found
in meson_options.txt. mpd-mini and mpd-full retained their feature sets.

Signed-off-by: Andre Heider <a.heider@gmail.com>
2019-11-05 10:28:30 +01:00
Ted Hess
91171954ea mpd: Update to 0.20.20. Re-enable flac encoder for mpd-full
Signed-off-by: Ted Hess <thess@kitschensync.net>
2018-07-25 11:47:21 -04:00
Ted Hess
2cedae0aa9 sound/mpd: Update to 0.20.9, work-around libiconv-stub link problem
Rearrange dependencies
General cleanup of Makefile
Fix compilation and linking problems

Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
Signed-off-by: Ted Hess <thess@kitschensync.net>
2017-08-08 13:36:48 -04:00
Ted Hess
50d84f13a2 mpd: Upgrade Music Player Daemon to 0.20.8
Signed-off-by: Ted Hess <thess@kitschensync.net>
2017-05-20 11:40:28 -04:00
Ted Hess
2a19c21422 mpd: Update to 0.19.17, refresh patches
Signed-off-by: Ted Hess <thess@kitschensync.net>
2016-07-20 10:54:46 -04:00
Ted Hess
99a49889a1 mpd: Update to 0.19.14, disable soxr
Signed-off-by: Ted Hess <thess@kitschensync.net>
2016-03-25 17:22:43 -04:00
Ted Hess
e8bd00dd39 mpd: Update to 0.19.11, fix gcc5 builds
Add a patch from the Alpine Linux project to fix a musl build issue with gcc 5:

Signed-off-by: Ted Hess <thess@kitschensync.net>
2015-11-23 08:57:18 -05:00
Ted Hess
8b09195b2b mpd: Upgrade to 0.19.10, refresh patches
Signed-off-by: Ted Hess <thess@kitschensync.net>
2015-06-26 16:46:05 -04:00
Ted Hess
934b9a60ca mpd: Update to 0.18.23, fix ALSA support in mpd-mini, refresh patches
Signed-off-by: Ted Hess <thess@kitschensync.net>
2015-05-12 15:16:07 -04:00
Ted Hess
a3255798d7 MPD: Upgrade to 0.18.11, convert to procd, refresh patches
Signed-off-by: Ted Hess <thess@kitschensync.net>
2014-07-30 11:40:21 -04:00
thess
13aa784f69 Update MPD to 0.17.6, refresh patches, add myself as pkg maintainer, pkg update copyright
Add some new options and fix BUILD_NLS (full language support) failures

Signed-off-by: Ted Hess <thess@kitschensync.net>
2014-07-16 15:30:13 -04:00
Ted Hess
b495ccc053 Import mpd from oldpackages 2014-07-16 12:31:58 -04:00