mirror of
https://github.com/ckolivas/lrzip.git
synced 2025-12-06 07:12:00 +01:00
Update copyright notices.
This commit is contained in:
parent
3818727a72
commit
c5e0df5cf9
|
|
@ -468,7 +468,7 @@ Persons above are listed in chronological order of first contribution to **lrzip
|
||||||
#### README Authors
|
#### README Authors
|
||||||
|
|
||||||
Con Kolivas (`ckolivas` on GitHub) <kernel@kolivas.org>
|
Con Kolivas (`ckolivas` on GitHub) <kernel@kolivas.org>
|
||||||
Fri, 10 June 2016: README
|
Tuesday, 16 February 2021: README
|
||||||
|
|
||||||
Also documented by
|
Also documented by
|
||||||
Peter Hyman <pete@peterhyman.com>
|
Peter Hyman <pete@peterhyman.com>
|
||||||
|
|
|
||||||
14
WHATS-NEW
14
WHATS-NEW
|
|
@ -1,3 +1,17 @@
|
||||||
|
Changelog will be moved to git entirely from this point forward.
|
||||||
|
|
||||||
|
lrzip-0.650
|
||||||
|
|
||||||
|
Numerous bugfixes and build fixes.
|
||||||
|
lz4 now used for compressibility testing (only) making lz4-dev a build
|
||||||
|
requirement.
|
||||||
|
Fixes for handling of corrupt archives without crashing.
|
||||||
|
Fixes for creating small lzma based archives to stdout.
|
||||||
|
Incomplete files are now deleted on interrupting lrzip unless the keep-broken
|
||||||
|
option is enabled.
|
||||||
|
Version prints to stdout instead of stderr.
|
||||||
|
|
||||||
|
|
||||||
lrzip-0.631
|
lrzip-0.631
|
||||||
|
|
||||||
Assembler code is back and works with x86_64
|
Assembler code is back and works with x86_64
|
||||||
|
|
|
||||||
2
lrzip.c
2
lrzip.c
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
Copyright (C) 2006-2016,2018 Con Kolivas
|
Copyright (C) 2006-2016,2018,2021 Con Kolivas
|
||||||
Copyright (C) 2011 Peter Hyman
|
Copyright (C) 2011 Peter Hyman
|
||||||
Copyright (C) 1998-2003 Andrew Tridgell
|
Copyright (C) 1998-2003 Andrew Tridgell
|
||||||
|
|
||||||
|
|
|
||||||
2
lrztar
2
lrztar
|
|
@ -24,7 +24,7 @@ function lrztar_local() {
|
||||||
local hv="\
|
local hv="\
|
||||||
lrztar GNU/bash wrapper script for lrzip and tar input/output over directories.
|
lrztar GNU/bash wrapper script for lrzip and tar input/output over directories.
|
||||||
Copyright (C) George Makrydakis 2009-2011,2013
|
Copyright (C) George Makrydakis 2009-2011,2013
|
||||||
Copyright (C) Con Kolivas 2011,2012
|
Copyright (C) Con Kolivas 2011-2012,2016,2018,2021
|
||||||
|
|
||||||
Usage : lrztar [lrzip options] <directory>
|
Usage : lrztar [lrzip options] <directory>
|
||||||
Result: a lrzip tarball is produced.
|
Result: a lrzip tarball is produced.
|
||||||
|
|
|
||||||
4
main.c
4
main.c
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
Copyright (C) 2006-2016 Con Kolivas
|
Copyright (C) 2006-2016,2021 Con Kolivas
|
||||||
Copyright (C) 2011 Peter Hyman
|
Copyright (C) 2011 Peter Hyman
|
||||||
Copyright (C) 1998-2003 Andrew Tridgell
|
Copyright (C) 1998-2003 Andrew Tridgell
|
||||||
|
|
||||||
|
|
@ -68,7 +68,7 @@ static rzip_control base_control, local_control, *control;
|
||||||
static void usage(bool compat)
|
static void usage(bool compat)
|
||||||
{
|
{
|
||||||
print_output("lrz%s version %s\n", compat ? "" : "ip", PACKAGE_VERSION);
|
print_output("lrz%s version %s\n", compat ? "" : "ip", PACKAGE_VERSION);
|
||||||
print_output("Copyright (C) Con Kolivas 2006-2016\n");
|
print_output("Copyright (C) Con Kolivas 2006-2021\n");
|
||||||
print_output("Based on rzip ");
|
print_output("Based on rzip ");
|
||||||
print_output("Copyright (C) Andrew Tridgell 1998-2003\n\n");
|
print_output("Copyright (C) Andrew Tridgell 1998-2003\n\n");
|
||||||
print_output("Usage: lrz%s [options] <file...>\n", compat ? "" : "ip");
|
print_output("Usage: lrz%s [options] <file...>\n", compat ? "" : "ip");
|
||||||
|
|
|
||||||
2
runzip.c
2
runzip.c
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
Copyright (C) 2006-2016,2018 Con Kolivas
|
Copyright (C) 2006-2016,2018,2021 Con Kolivas
|
||||||
Copyright (C) 1998-2003 Andrew Tridgell
|
Copyright (C) 1998-2003 Andrew Tridgell
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
This program is free software; you can redistribute it and/or modify
|
||||||
|
|
|
||||||
2
stream.c
2
stream.c
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
Copyright (C) 2006-2016,2018 Con Kolivas
|
Copyright (C) 2006-2016,2018,2021 Con Kolivas
|
||||||
Copyright (C) 2011 Serge Belyshev
|
Copyright (C) 2011 Serge Belyshev
|
||||||
Copyright (C) 2011 Peter Hyman
|
Copyright (C) 2011 Peter Hyman
|
||||||
Copyright (C) 1998 Andrew Tridgell
|
Copyright (C) 1998 Andrew Tridgell
|
||||||
|
|
|
||||||
2
util.c
2
util.c
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
Copyright (C) 2006-2016 Con Kolivas
|
Copyright (C) 2006-2016,2021 Con Kolivas
|
||||||
Copyright (C) 2011 Serge Belyshev
|
Copyright (C) 2011 Serge Belyshev
|
||||||
Copyright (C) 2008, 2011 Peter Hyman
|
Copyright (C) 2008, 2011 Peter Hyman
|
||||||
Copyright (C) 1998 Andrew Tridgell
|
Copyright (C) 1998 Andrew Tridgell
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue