- Oct 20, 2023
-
-
Liangbin Lian authored
'name' may contains '%h' or '%v', printf will fail on that Signed-off-by:
Liangbin Lian <jjm2473@gmail.com> (cherry picked from commit 97ec5d2a6855180295c024782aad50da8081504f)
-
- Sep 03, 2023
-
-
Tianling Shen authored
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> (cherry picked from commit f43e7a5067f5d594ffee9ad66fe50256b423c524)
-
- May 17, 2023
-
-
Tianling Shen authored
* updated source url (prefer https rather than http/ftp) * fixed build with musl 1.2.4 Signed-off-by:
Tianling Shen <cnsztl@immortalwrt.org>
-
- Apr 21, 2023
-
-
Paul Fertser authored
Automatically compute and substitute current values for all $(AUTORELEASE) instances as this feature is deprecated and shouldn't be used. The following temporary change was made to the core: diff --git a/rules.mk b/rules.mk index 57d7995d4fa8..f16367de87a8 100644 --- a/rules.mk +++ b/rules.mk @@ -429,7 +429,7 @@ endef abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1)))) COMMITCOUNT = $(if $(DUMP),0,$(call commitcount)) -AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1)) +AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile)) all: FORCE: ; And this command used to fix affected packages: for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \ sed 's^.*/\([^/]*\)/Makefile^\1^';); do make package/$i/download done Signed-off-by:
Paul Fertser <fercerpav@gmail.com>
-
- Apr 08, 2023
-
-
Andre Heider authored
These fail to build or packages depending on them do when enabling CONFIG_USE_LTO. Signed-off-by:
Andre Heider <a.heider@gmail.com>
-
Andre Heider authored
See commit 07730ff3 "treewide: add support for "lto" in PKG_BUILD_FLAGS" on the main repository. Note: Some packages only added `-flto` to CFLAGS and not LDFLAGS. This fixes it and properly enables LTO. Signed-off-by:
Andre Heider <a.heider@gmail.com>
-
Andre Heider authored
See commit da370098 "treewide: add support for "gc-sections" in PKG_BUILD_FLAGS" on the main repository. Note: This only touches packages which use all three parts (-ffunction-sections, -fdata-sections and -Wl,--gc-sections) enabled by this build flag. Some packages only use a subset, and these are left unchanged for now. Signed-off-by:
Andre Heider <a.heider@gmail.com>
-
Andre Heider authored
See commit 5c545bdb "treewide: replace PKG_USE_MIPS16:=0 with PKG_BUILD_FLAGS:=no-mips16" on the main repository. Signed-off-by:
Andre Heider <a.heider@gmail.com>
-
- Jan 14, 2023
-
-
Rosen Penev authored
Signed-off-by:
Rosen Penev <rosenp@gmail.com>
-
- Jan 10, 2023
-
-
Robert Högberg authored
Signed-off-by:
Robert Högberg <robert.hogberg@gmail.com>
-
- Jan 02, 2023
-
-
Espen Jürgensen authored
Signed-off-by:
Espen Jürgensen <espenjurgensen+openwrt@gmail.com> (cherry picked from commit 983006f1)
-
Espen Jürgensen authored
Included changes: * Install web UI * Remove libantlr3c dependency * Add Spotify support to description * Updated conf file Signed-off-by:
Espen Jürgensen <espenjurgensen+openwrt@gmail.com> (cherry picked from commit feda8e03)
-
- Nov 21, 2022
-
-
Fabien Pozzobon authored
Signed-off-by:
Fabien Pozzobon <12074690+fpozzobon@users.noreply.github.com>
-
- Nov 11, 2022
-
-
Rosen Penev authored
Signed-off-by:
Rosen Penev <rosenp@gmail.com>
-
- Nov 05, 2022
-
-
Josef Schlehofer authored
Fixes: 60ac7dd7 ("pulseaudio: simplify and rework Makefile") Reported-by:
Hannu Nyman <hannu.nyman@iki.fi> Signed-off-by:
Josef Schlehofer <pepe.schlehofer@gmail.com> (cherry picked from commit 7ae66ec7)
-
Josef Schlehofer authored
The previous used domain http(s)://pulseaudio.org redirects to https://www.freedesktop.org/wiki/Software/PulseAudio/ This change enforces to use HTTPS everywhere for homepage URLs Signed-off-by:
Josef Schlehofer <pepe.schlehofer@gmail.com> (cherry picked from commit 00e39180)
-
Josef Schlehofer authored
Signed-off-by:
Josef Schlehofer <pepe.schlehofer@gmail.com> (cherry picked from commit 364054fb)
-
Josef Schlehofer authored
It should not be possible to install pulseaudio-daemon and pulseadio-daemon-avahi at the same time as they have the same files. Let's avoid that situation by adding conflict. Signed-off-by:
Josef Schlehofer <pepe.schlehofer@gmail.com> (cherry picked from commit 5a5bb159)
-
Josef Schlehofer authored
There were two conffiles sections and both of them were same, but for different variants. We can have just one conffile section and use it also for the other variant. The same applies for the install section for different variants. - We have two install sections, but we call the first one with the same files and then add something more for the second variant. - While at it to make it easier, let's change those three rows for copying packages into the single one to make sure that I did not miss anything. Also, we create a directory first and then move files. Signed-off-by:
Josef Schlehofer <pepe.schlehofer@gmail.com> (cherry picked from commit 60ac7dd7)
-
Szabolcs Hubai authored
The full variant of mpd depends on pulseaudio-daemon, so it was not possible to use the other pulseaudio variant with avahi. Both pulseaudio daemons provides package pulseaudio, so users can choose which variant suits them best. Let's change the dependency to pulseaudio. Fixes: #19187 Fixes: 2ed62adc ("mpd: enable pulseaudio in full package") Signed-off-by:
Szabolcs Hubai <szab.hu@gmail.com> (cherry picked from commit abe35e89)
-
- Nov 04, 2022
-
-
Espen Jürgensen authored
Signed-off-by:
Espen Jürgensen <espenjurgensen+openwrt@gmail.com>
-
- Nov 03, 2022
-
-
Szabolcs Hubai authored
The full variant of mpd depends on pulseaudio-daemon, so it was not possible to use the other pulseaudio variant with avahi. Both pulseaudio daemons provides package pulseaudio, so users can choose which variant suits them best. Let's change the dependency to pulseaudio. Fixes: #19187 Fixes: 2ed62adc ("mpd: enable pulseaudio in full package") Signed-off-by:
Szabolcs Hubai <szab.hu@gmail.com>
-
Josef Schlehofer authored
Fixes: 60ac7dd7 ("pulseaudio: simplify and rework Makefile") Reported-by:
Hannu Nyman <hannu.nyman@iki.fi> Signed-off-by:
Josef Schlehofer <pepe.schlehofer@gmail.com>
-
- Nov 01, 2022
-
-
Josef Schlehofer authored
The previous used domain http(s)://pulseaudio.org redirects to https://www.freedesktop.org/wiki/Software/PulseAudio/ This change enforces to use HTTPS everywhere for homepage URLs Signed-off-by:
Josef Schlehofer <pepe.schlehofer@gmail.com>
-
Josef Schlehofer authored
Signed-off-by:
Josef Schlehofer <pepe.schlehofer@gmail.com>
-
Josef Schlehofer authored
It should not be possible to install pulseaudio-daemon and pulseadio-daemon-avahi at the same time as they have the same files. Let's avoid that situation by adding conflict. Signed-off-by:
Josef Schlehofer <pepe.schlehofer@gmail.com>
-
Josef Schlehofer authored
There were two conffiles sections and both of them were same, but for different variants. We can have just one conffile section and use it also for the other variant. The same applies for the install section for different variants. - We have two install sections, but we call the first one with the same files and then add something more for the second variant. - While at it to make it easier, let's change those three rows for copying packages into the single one to make sure that I did not miss anything. Also, we create a directory first and then move files. Signed-off-by:
Josef Schlehofer <pepe.schlehofer@gmail.com>
-
- Oct 26, 2022
-
-
Robert Högberg authored
Signed-off-by:
Robert Högberg <robert.hogberg@gmail.com>
-
- Oct 21, 2022
-
-
Robert Högberg authored
Signed-off-by:
Robert Högberg <robert.hogberg@gmail.com>
-
- Aug 20, 2022
-
-
Rosen Penev authored
Fixes compilation with newer ffmpeg. Remove upstreamed patch. Signed-off-by:
Rosen Penev <rosenp@gmail.com> (cherry picked from commit b1999ec1)
-
Rosen Penev authored
Simplify iconv patch. Signed-off-by:
Rosen Penev <rosenp@gmail.com> (cherry picked from commit 63ba2ccb)
-
- Aug 19, 2022
-
-
Rosen Penev authored
Fixes compilation with newer ffmpeg. Remove upstreamed patch. Signed-off-by:
Rosen Penev <rosenp@gmail.com>
-
- Aug 16, 2022
-
-
Rosen Penev authored
Signed-off-by:
Rosen Penev <rosenp@gmail.com> (cherry picked from commit 6ffab7728e3b53aef91c438924d2a2457fca4c13)
-
- Aug 04, 2022
-
-
Rosen Penev authored
Signed-off-by:
Rosen Penev <rosenp@gmail.com>
-
- Jul 17, 2022
-
-
Pacien TRAN-GIRARD authored
Signed-off-by:
Pacien TRAN-GIRARD <pacien.trangirard@pacien.net> (cherry picked from commit 0bfe037f)
-
Pacien TRAN-GIRARD authored
This removes the guard "CONFIG_BUILD_PATENTED" for the ffmpeg build feature for mpd-full. ffmpeg was already unconditionally registered as a dependency (at line 51). The ffmpeg package already handles whether or not to include patented codecs internally using the same config flag, so guarding its use as a dependency here does not appear necessary anymore. (For reference: guard "BUILD_PATENTED" was introduced in 44eb12f3 for ffmpeg, then partially removed by 326c9732). Signed-off-by:
Pacien TRAN-GIRARD <pacien.trangirard@pacien.net> (cherry picked from commit f3fe7de8)
-
Pacien TRAN-GIRARD authored
Signed-off-by:
Pacien TRAN-GIRARD <pacien.trangirard@pacien.net>
-
Pacien TRAN-GIRARD authored
This removes the guard "CONFIG_BUILD_PATENTED" for the ffmpeg build feature for mpd-full. ffmpeg was already unconditionally registered as a dependency (at line 51). The ffmpeg package already handles whether or not to include patented codecs internally using the same config flag, so guarding its use as a dependency here does not appear necessary anymore. (For reference: guard "BUILD_PATENTED" was introduced in 44eb12f3 for ffmpeg, then partially removed by 326c9732). Signed-off-by:
Pacien TRAN-GIRARD <pacien.trangirard@pacien.net>
-
- Jul 15, 2022
-
-
Rosen Penev authored
Simplify iconv patch. Signed-off-by:
Rosen Penev <rosenp@gmail.com>
-
- Jun 19, 2022
-
-
Espen Jürgensen authored
Included changes: * Install web UI * Remove libantlr3c dependency * Add Spotify support to description * Updated conf file Signed-off-by:
Espen Jürgensen <espenjurgensen+openwrt@gmail.com>
-