file: Update to version 5.45

Message ID 20240131141848.3280362-1-adolf.belka@ipfire.org
State Staged
Commit 5aba1a15f756c316af2f4a753054a971a859c974
Headers
Series file: Update to version 5.45 |

Commit Message

Adolf Belka Jan. 31, 2024, 2:18 p.m. UTC
  - Update from version 5.44 to 5.45
- Update of rootfile not required
- Changelog
    5.45
	* PR/465: psrok1: Avoid muslc asctime_r crash
	* add SIMH tape format support
	* bump the max size of the elf section notes to be read to 128K
	  and make it configurable
	* PR/415: Fix decompression with program returning empty
	* PR/408: fix -p with seccomp
	* PR/412: fix MinGW compilation

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/file | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)
  

Patch

diff --git a/lfs/file b/lfs/file
index 7877425ea..76c6441ef 100644
--- a/lfs/file
+++ b/lfs/file
@@ -1,7 +1,7 @@ 
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2022  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2024  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -24,7 +24,7 @@ 
 
 include Config
 
-VER        = 5.44
+VER        = 5.45
 
 THISAPP    = file-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -40,7 +40,7 @@  objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = a90ccae738a95315d75a0aaee7bbff3624425cc9267daf18ba9147b7c9b9ebfb31288b54c63a73e4695eca0e876f206e40bcb81c422f1bf572b976e753b25a42
+$(DL_FILE)_BLAKE2 = 30fc77c091e6624f2e9a950f4c6fe69ea6aa46d4a8ad9f20d49320a3675617c5bfbc9ff1ebba5eeb2cf4435c38d71b47b8beeb5146c9f55fe3bac11fe65e89bd
 
 install : $(TARGET)
 
@@ -70,7 +70,9 @@  $(subst %,%_BLAKE2,$(objects)) :
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	@$(PREBUILD)
 	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
-	cd $(DIR_APP) && ./configure --prefix=/usr --disable-bzlib
+	cd $(DIR_APP) && ./configure \
+				--prefix=/usr \
+				--disable-bzlib
 	cd $(DIR_APP) && make $(MAKETUNING)
 	cd $(DIR_APP) && make install
 	@rm -rf $(DIR_APP)