ddrescue: Update to version 1.28

Message ID 20240814190953.2659222-1-adolf.belka@ipfire.org
State Staged
Commit 075aa6f354bf37cd5b95757421ab82853258b089
Headers
Series ddrescue: Update to version 1.28 |

Commit Message

Adolf Belka Aug. 14, 2024, 7:09 p.m. UTC
  - Update from version 1.26 to 1.28
- Update of rootfile not required
- Changelog
    1.28
	The option '--verify-on-error' has been renamed to '--check-on-error'.
	The option '--verify-input-size' has been renamed to '--check-input-size'.
	The option synonym '--exit-on-error' has been removed and is no longer
	 recognized.
	In fill and rescue modes, ddrescue now makes a final fsync call on outfile
	 to prevent an early exit if the kernel caches all the writes.
	Option '-t, --show-status' of ddrescuelog now shows the mapfile names at
	 verbosity level 0 if more than one mapfile is specified.
	The variable MAKEINFO has been added to configure and Makefile.in.
    1.27
	A deadlock in command mode when stdout is fully buffered has been fixed by
	 flushing stdout after executing each command. (Reported by Jeffrey Bosboom).
	The new option '-W, --compare-before-write' has been added. It omits
	 superfluous writes in rescue mode.
	 (Suggested by Kajetan Harald Hinner and Petr Slansky).
	Diagnostics caused by invalid arguments to command line options now show the
	 argument and the name of the option.
	The option synonym '--direct' has been removed and is no longer recognized.
	'long long' is now used instead of 'long' for time variables.
	A missing '#include <cstdlib>' has been added.

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

Patch

diff --git a/lfs/ddrescue b/lfs/ddrescue
index 2ac9cbb7d..9d1c08fe2 100644
--- a/lfs/ddrescue
+++ b/lfs/ddrescue
@@ -1,7 +1,7 @@ 
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2018  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        #
@@ -26,7 +26,7 @@  include Config
 
 SUMMARY    = Data Copying in the Presence of I/O Errors
 
-VER        = 1.26
+VER        = 1.28
 
 THISAPP    = ddrescue-$(VER)
 DL_FILE    = $(THISAPP).tar.lz
@@ -34,7 +34,7 @@  DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = ddrescue
-PAK_VER    = 3
+PAK_VER    = 4
 
 DEPS       =
 
@@ -48,7 +48,7 @@  objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = c545499e380587729eb3fcc90a7baf66288348dc88027dfc14401ec72254cc786d8ab7be076a346964327668ff719048dada916c9f1514a765a255f02c5666c7
+$(DL_FILE)_BLAKE2 = 8c212f0d495e0df8e0398b97730c812ea9ccb77bd42e730198222e9918e3652fc52d932449b1e0dc9bdd453a123e2450c962e33e98d9845ce81b9a934a5bbdaa
 
 install : $(TARGET)
 
@@ -82,7 +82,8 @@  $(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) && ./configure --prefix=/usr
+	cd $(DIR_APP) && ./configure \
+				--prefix=/usr
 	cd $(DIR_APP) && make $(MAKETUNING)
 	cd $(DIR_APP) && make install
 	@rm -rf $(DIR_APP)