* [PATCH] ddrescue: Update to version 1.26
@ 2022-11-25 17:37 Adolf Belka
2022-11-27 11:56 ` Michael Tremer
0 siblings, 1 reply; 2+ messages in thread
From: Adolf Belka @ 2022-11-25 17:37 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 3149 bytes --]
- Update from version 1.25 to 1.26
- Update of rootfile not required
- Changelog
Changes in version 1.26:
While writing the mapfile, ddrescue now checks the return value of each call
to 'fprintf' to catch any temporary failure of 'fprintf' not reported by the
system when closing the file. (Hole in mapfile reported by Radomír Tomis).
Domain mapfiles may now contain unordered and overlapping blocks when
'-L, --loose-domain' is specified as long as no block overlaps with other
block of different status. (Suggested by Gábor Katona and Shaya Potter).
Ddrescue now shows the file name in all the diagnostics with a file involved.
(Reported by Radomír Tomis).
Ddrescue now exits with status 1 on fatal read errors.
(Suggested by Marco Marques).
Empty phases are now completely skipped.
Ddrescue now scrolls forward after each pass. This keeps on the screen the
final status of the previous pass, making it easier to estimate the amount
of work done by the current pass. (Based on a suggestion by David Morrison).
In case of error in a numerical argument to a command line option, ddrescue
now shows the name of the option and the range of valid values.
The option synonyms '--*-logfile' and '--pause' have been removed and are no
longer recognized.
Ddrescuelog now can convert between mapfiles and bitmaps of blocks (big and
little endian). The new option '-F, --format' has been added to ddrescuelog.
It selects the input format for '--create-mapfile', or the output format for
'--list-blocks'. (Bitmap format proposed by Florian Sedivy).
Option '-d, --delete-if-done' of ddrescuelog no longer returns an error if
the mapfile is read from standard input. Instead it behaves like
'-D, --done-status' because there is nothing to delete.
'ddrescuelog --show-status' now rounds percentages up to get the sum closer
to 100%.
Three missing '#include <algorithm>' have been added.
(Reported by Richard Burkert).
The description of the algorithm in the manual has been improved.
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
lfs/ddrescue | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lfs/ddrescue b/lfs/ddrescue
index 15a580714..2ac9cbb7d 100644
--- a/lfs/ddrescue
+++ b/lfs/ddrescue
@@ -26,7 +26,7 @@ include Config
SUMMARY = Data Copying in the Presence of I/O Errors
-VER = 1.25
+VER = 1.26
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 = 2
+PAK_VER = 3
DEPS =
@@ -48,7 +48,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 45054ecb6ca12f8fe27d6b783f7e339fc11a9a3425160012e0682e39644fd3c91362ecd568a2a0b93f9f0af87fae2415b33a7c3fcd8fff2262898e8474818a00
+$(DL_FILE)_BLAKE2 = c545499e380587729eb3fcc90a7baf66288348dc88027dfc14401ec72254cc786d8ab7be076a346964327668ff719048dada916c9f1514a765a255f02c5666c7
install : $(TARGET)
--
2.38.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] ddrescue: Update to version 1.26
2022-11-25 17:37 [PATCH] ddrescue: Update to version 1.26 Adolf Belka
@ 2022-11-27 11:56 ` Michael Tremer
0 siblings, 0 replies; 2+ messages in thread
From: Michael Tremer @ 2022-11-27 11:56 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 3371 bytes --]
Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org>
> On 25 Nov 2022, at 17:37, Adolf Belka <adolf.belka(a)ipfire.org> wrote:
>
> - Update from version 1.25 to 1.26
> - Update of rootfile not required
> - Changelog
> Changes in version 1.26:
> While writing the mapfile, ddrescue now checks the return value of each call
> to 'fprintf' to catch any temporary failure of 'fprintf' not reported by the
> system when closing the file. (Hole in mapfile reported by Radomír Tomis).
> Domain mapfiles may now contain unordered and overlapping blocks when
> '-L, --loose-domain' is specified as long as no block overlaps with other
> block of different status. (Suggested by Gábor Katona and Shaya Potter).
> Ddrescue now shows the file name in all the diagnostics with a file involved.
> (Reported by Radomír Tomis).
> Ddrescue now exits with status 1 on fatal read errors.
> (Suggested by Marco Marques).
> Empty phases are now completely skipped.
> Ddrescue now scrolls forward after each pass. This keeps on the screen the
> final status of the previous pass, making it easier to estimate the amount
> of work done by the current pass. (Based on a suggestion by David Morrison).
> In case of error in a numerical argument to a command line option, ddrescue
> now shows the name of the option and the range of valid values.
> The option synonyms '--*-logfile' and '--pause' have been removed and are no
> longer recognized.
> Ddrescuelog now can convert between mapfiles and bitmaps of blocks (big and
> little endian). The new option '-F, --format' has been added to ddrescuelog.
> It selects the input format for '--create-mapfile', or the output format for
> '--list-blocks'. (Bitmap format proposed by Florian Sedivy).
> Option '-d, --delete-if-done' of ddrescuelog no longer returns an error if
> the mapfile is read from standard input. Instead it behaves like
> '-D, --done-status' because there is nothing to delete.
> 'ddrescuelog --show-status' now rounds percentages up to get the sum closer
> to 100%.
> Three missing '#include <algorithm>' have been added.
> (Reported by Richard Burkert).
> The description of the algorithm in the manual has been improved.
>
> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
> ---
> lfs/ddrescue | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/lfs/ddrescue b/lfs/ddrescue
> index 15a580714..2ac9cbb7d 100644
> --- a/lfs/ddrescue
> +++ b/lfs/ddrescue
> @@ -26,7 +26,7 @@ include Config
>
> SUMMARY = Data Copying in the Presence of I/O Errors
>
> -VER = 1.25
> +VER = 1.26
>
> 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 = 2
> +PAK_VER = 3
>
> DEPS =
>
> @@ -48,7 +48,7 @@ objects = $(DL_FILE)
>
> $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
>
> -$(DL_FILE)_BLAKE2 = 45054ecb6ca12f8fe27d6b783f7e339fc11a9a3425160012e0682e39644fd3c91362ecd568a2a0b93f9f0af87fae2415b33a7c3fcd8fff2262898e8474818a00
> +$(DL_FILE)_BLAKE2 = c545499e380587729eb3fcc90a7baf66288348dc88027dfc14401ec72254cc786d8ab7be076a346964327668ff719048dada916c9f1514a765a255f02c5666c7
>
> install : $(TARGET)
>
> --
> 2.38.1
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-11-27 11:56 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-25 17:37 [PATCH] ddrescue: Update to version 1.26 Adolf Belka
2022-11-27 11:56 ` Michael Tremer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox