public inbox for ipfire-scm@lists.ipfire.org
 help / color / mirror / Atom feed
* [git.ipfire.org] IPFire 2.x development tree branch, next, updated. d9f9f6db9afc8f282e54dfa7153e1bb37f122068
@ 2025-10-13 10:17 Michael Tremer
  0 siblings, 0 replies; only message in thread
From: Michael Tremer @ 2025-10-13 10:17 UTC (permalink / raw)
  To: ipfire-scm

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "IPFire 2.x development tree".

The branch, next has been updated
       via  d9f9f6db9afc8f282e54dfa7153e1bb37f122068 (commit)
       via  fb2d57a8ff3d1638f032b741b7f02d57839c338f (commit)
       via  998a8382ff0de6f9c830fe694c13dcb160cb4485 (commit)
       via  8e88814df7c9d647cf0d7e5636979016ef43d1f9 (commit)
      from  717a29e28759062866285b451d8233959e5935f6 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit d9f9f6db9afc8f282e54dfa7153e1bb37f122068
Author: Adolf Belka <adolf.belka@ipfire.org>
Date:   Sun Oct 12 13:51:42 2025 +0200

    mympd: Update to version 22.1.1
    
    - Update from version 22.0.4 to 22.1.1
    - Addition of cmake option to not create the systemd startup files
    - Removal of patch to make mympd work with coreutils-9.8 as this latest update already
       includes the change in it.
    - Changelog
        22.1.1
    	- Upd: Logging improvements
    	- Fix: Now playing indicator in Queue View
    	- Fix: Detection of ca cert store #1469
    	- Fix: Ending newline detection in build script #1470
        22.1.0
    	This is the first release that supports a system-wide installed libmpdclient
    	 library. If the library was not found or is too old, the build process falls
    	 back to the embedded libmpdclient.
    	- Feat: Support string normalization option (MPD 0.25)
    	- Feat: Support shared libmpdclient (v2.24.0) #874
    	- Upd: Rework album implementation to work with upstream libmpdclient
    	- Upd: Mongoose 7.19
    	- Upd: Bootstrap 5.3.8
    
    Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
    Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>

commit fb2d57a8ff3d1638f032b741b7f02d57839c338f
Merge: 717a29e28 998a8382f
Author: Michael Tremer <michael.tremer@ipfire.org>
Date:   Mon Oct 13 10:16:15 2025 +0000

    Merge branch 'master' into next

-----------------------------------------------------------------------

Summary of changes:
 config/rootfiles/oldcore/198/filelists/files       |  1 +
 config/rootfiles/packages/mympd                    |  3 --
 html/cgi-bin/dns.cgi                               |  2 +-
 lfs/mympd                                          |  8 +++---
 ...-22.0.4_Simplify_ending_newline_detection.patch | 32 ----------------------
 5 files changed, 6 insertions(+), 40 deletions(-)
 delete mode 100644 src/patches/mympd-22.0.4_Simplify_ending_newline_detection.patch

Difference in files:
diff --git a/config/rootfiles/oldcore/198/filelists/files b/config/rootfiles/oldcore/198/filelists/files
index adf18e482..709788ae8 100644
--- a/config/rootfiles/oldcore/198/filelists/files
+++ b/config/rootfiles/oldcore/198/filelists/files
@@ -1,5 +1,6 @@
 etc/rc.d/init.d/cleanfs
 etc/rc.d/init.d/suricata
+srv/web/ipfire/cgi-bin/dns.cgi
 var/ipfire/graphs.pl
 var/ipfire/header.pl
 var/ipfire/ids-functions.pl
diff --git a/config/rootfiles/packages/mympd b/config/rootfiles/packages/mympd
index 215a55bb2..7d1f9263e 100644
--- a/config/rootfiles/packages/mympd
+++ b/config/rootfiles/packages/mympd
@@ -2,9 +2,6 @@ etc/rc.d/init.d/mympd
 usr/bin/mympd
 usr/bin/mympd-config
 usr/bin/mympd-script
-#usr/lib/systemd/system/mympd.service
-#usr/lib/systemd/user
-#usr/lib/systemd/user/mympd.service
 var/ipfire/backup/addons/includes/mympd
 var/lib/mympd
 #var/lib/mympd/config
diff --git a/html/cgi-bin/dns.cgi b/html/cgi-bin/dns.cgi
index 29a46d4b6..f01d5d3ab 100644
--- a/html/cgi-bin/dns.cgi
+++ b/html/cgi-bin/dns.cgi
@@ -777,7 +777,7 @@ sub show_add_edit_nameserver() {
 			# Assign cgiparams values.
 			$cgiparams{'NAMESERVER'} = &Header::escape($dns_servers{$cgiparams{'ID'}}[0]);
 			$cgiparams{'TLS_HOSTNAME'} = $dns_servers{$cgiparams{'ID'}}[1];
-			$cgiparams{'REMARK'} = $Header::escape($dns_servers{$cgiparams{'ID'}}[3]);
+			$cgiparams{'REMARK'} = &Header::escape($dns_servers{$cgiparams{'ID'}}[3]);
 		}
 	} else {
 		&Header::openbox('100%', 'left', $Lang::tr{'dnsforward add a new entry'});
diff --git a/lfs/mympd b/lfs/mympd
index a0167ffa8..17ab9be3a 100644
--- a/lfs/mympd
+++ b/lfs/mympd
@@ -26,7 +26,7 @@ include Config
 
 SUMMARY    = Webfrontend for Music Player Daemon
 
-VER        = 22.0.4
+VER        = 22.1.1
 
 THISAPP    = myMPD-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -34,7 +34,7 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = mympd
-PAK_VER    = 15
+PAK_VER    = 16
 
 DEPS       = mpd libmpdclient
 
@@ -48,7 +48,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = d59eba43d083adb2bc58bf31ec03bea1105143d681e409c92e60303b9ede75285aec04d0f70a6dcc52ca62f3eb27a8287840d3fcc3ff9489a4dc9d53e61e9a89
+$(DL_FILE)_BLAKE2 = a64c9691e552c63fcdaf7cbca71a33d812293477f5676ffeb63fb1b7d230d69f3c4f6efdd188afa2a596543644bb3920d12e00f59fd3f5ebce1f04a6a4d01dda
 
 install : $(TARGET)
 
@@ -81,7 +81,6 @@ $(subst %,%_BLAKE2,$(objects)) :
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	@$(PREBUILD)
 	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
-	cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/mympd-22.0.4_Simplify_ending_newline_detection.patch
 
 	# Do not try to re-define _FORTIFY_SOURCE
 	cd $(DIR_APP) && sed -e "/D_FORTIFY_SOURCE/d" -i CMakeLists.txt
@@ -92,6 +91,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 					-D MYMPD_DOC=OFF \
 					-D MYMPD_ENABLE_SYSTEMD=OFF \
 					-D MYMPD_MANPAGES=OFF \
+					-D MYMPD_STARTUP_SCRIPT=OFF \
 					-D CMAKE_BUILD_TYPE=Release ..
 	cd $(DIR_APP)/build && make $(MAKETUNING)
 	cd $(DIR_APP)/build && make install
diff --git a/src/patches/mympd-22.0.4_Simplify_ending_newline_detection.patch b/src/patches/mympd-22.0.4_Simplify_ending_newline_detection.patch
deleted file mode 100644
index f8a5a3cf6..000000000
--- a/src/patches/mympd-22.0.4_Simplify_ending_newline_detection.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From c6eeec3614bd6e91f3313f37a723a2b37467ec6a Mon Sep 17 00:00:00 2001
-From: jcorporation <mail@jcgames.de>
-Date: Fri, 10 Oct 2025 15:45:06 +0200
-Subject: [PATCH] Fix: Simplify ending newline detection #1470
-
----
- build.sh | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/build.sh b/build.sh
-index 366e3e619..1f20fcdb0 100755
---- a/build.sh
-+++ b/build.sh
-@@ -217,7 +217,7 @@ createassets() {
-     [ "$F" = "js/long-press-event.js" ] && continue
-     [ "$F" = "js/version.js" ] && continue
-     JSSRCFILES="$JSSRCFILES htdocs/$F"
--    if tail -1 "htdocs/$F" | perl -npe 'exit 1 if m/\n/; exit 0'
-+    if [ -n "$(tail -c 1 "htdocs/$F")" ]
-     then
-       echo_error "$F don't end with newline character"
-       exit 1
-@@ -241,7 +241,7 @@ createassets() {
-   JSFILES="$JSFILES $MYMPD_BUILDDIR/htdocs/js/*.min.js"
-   for F in $JSFILES
-   do
--    if tail -1 "$F" | perl -npe 'exit 1 if m/\n/; exit 0'
-+    if [ -n "$(tail -c 1 "$F")" ]
-     then
-       echo_error "$F don't end with newline character"
-       exit 1
-


hooks/post-receive
--
IPFire 2.x development tree


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2025-10-13 10:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-10-13 10:17 [git.ipfire.org] IPFire 2.x development tree branch, next, updated. d9f9f6db9afc8f282e54dfa7153e1bb37f122068 Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox