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 40571258e8b92a021bf2330fc6a6d2556e34c2e2 (commit) via 398fa44015c2f140ea4d1d6a85a6aa7771dc56e7 (commit) from bb108657a88ad874f98dc6faabe2565a65c886bf (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 40571258e8b92a021bf2330fc6a6d2556e34c2e2 Author: Michael Tremer michael.tremer@ipfire.org Date: Wed Oct 16 16:40:50 2024 +0000
make.sh: Check for changes in logs
Signed-off-by: Michael Tremer michael.tremer@ipfire.org
commit 398fa44015c2f140ea4d1d6a85a6aa7771dc56e7 Author: Adolf Belka adolf.belka@ipfire.org Date: Tue Oct 15 09:35:22 2024 +0200
dhcpcd: Update to version 10.1.0
- Update from version 10.0.10 to 10.1.0 - Update of rootfile not required - Changelog 10.1.0 Bug Fixes dhcp: get_option_uint32/16 only accept options with correct len by @taoyl-g in #357 Include frame header in buffer length by @acst1223 in #371 For full changelog see commits delta in https://github.com/NetworkConfiguration/dhcpcd/compare/v10.0.10...v10.1.0
Signed-off-by: Adolf Belka adolf.belka@ipfire.org Signed-off-by: Michael Tremer michael.tremer@ipfire.org
-----------------------------------------------------------------------
Summary of changes: lfs/dhcpcd | 4 ++-- make.sh | 25 +++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 2 deletions(-)
Difference in files: diff --git a/lfs/dhcpcd b/lfs/dhcpcd index 10b7b0212..0c21544ab 100644 --- a/lfs/dhcpcd +++ b/lfs/dhcpcd @@ -24,7 +24,7 @@
include Config
-VER = 10.0.10 +VER = 10.1.0
THISAPP = dhcpcd-$(VER) DL_FILE = $(THISAPP).tar.xz @@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 2ecf52009f3fd4442863e1927a8d9e777ee6f34ff4d50a6f1e67821fb23fd12221df1e3a0a04ea0874df8feac15785772b4aa75af407f74448e442db36410e30 +$(DL_FILE)_BLAKE2 = 9d47ae8b97ba082f980966a2c3f688c6a8addb10989c166dafebdb6491793815c4caddc3016334f6549923632fd01fc8ce0987eca31af01948b0f4a643f88b38
install : $(TARGET)
diff --git a/make.sh b/make.sh index f68a61c1c..35a602f62 100755 --- a/make.sh +++ b/make.sh @@ -2275,6 +2275,26 @@ check_rootfiles() { return ${failed} }
+check_changed_rootfiles() { + local files=( + $(grep --files-with-matches -r "^+" "${LOG_DIR}" --exclude="_*" | sort) + ) + + # If we have no matches, there is nothing to do + [ "${#files[@]}" -eq 0 ] && return 0 + + print_line "Packages have created new files" + print_status WARN + + local file + for file in ${files[@]}; do + print_line " ${file##*/}" + print_status WARN + done + + return 0 +} + # Set BASEDIR readonly BASEDIR="$(find_base)"
@@ -2478,6 +2498,8 @@ build) exiterror "Rootfiles are inconsistent" fi
+ check_changed_rootfiles + print_build_summary $(( SECONDS - START_TIME )) ;; tail) @@ -2496,6 +2518,9 @@ shell) prepareenv --network entershell ;; +check) + check_changed_rootfiles + ;; clean) print_line "Cleaning build directory..."
hooks/post-receive -- IPFire 2.x development tree