Update copyright notices.

This commit is contained in:
Con Kolivas 2021-02-16 14:20:06 +11:00
parent 3818727a72
commit c5e0df5cf9
8 changed files with 22 additions and 8 deletions

View file

@ -468,7 +468,7 @@ Persons above are listed in chronological order of first contribution to **lrzip
#### README Authors
Con Kolivas (`ckolivas` on GitHub) <kernel@kolivas.org>
Fri, 10 June 2016: README
Tuesday, 16 February 2021: README
Also documented by
Peter Hyman <pete@peterhyman.com>

View file

@ -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
Assembler code is back and works with x86_64

View file

@ -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) 1998-2003 Andrew Tridgell

2
lrztar
View file

@ -24,7 +24,7 @@ function lrztar_local() {
local hv="\
lrztar GNU/bash wrapper script for lrzip and tar input/output over directories.
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>
Result: a lrzip tarball is produced.

4
main.c
View file

@ -1,5 +1,5 @@
/*
Copyright (C) 2006-2016 Con Kolivas
Copyright (C) 2006-2016,2021 Con Kolivas
Copyright (C) 2011 Peter Hyman
Copyright (C) 1998-2003 Andrew Tridgell
@ -68,7 +68,7 @@ static rzip_control base_control, local_control, *control;
static void usage(bool compat)
{
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("Copyright (C) Andrew Tridgell 1998-2003\n\n");
print_output("Usage: lrz%s [options] <file...>\n", compat ? "" : "ip");

View file

@ -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
This program is free software; you can redistribute it and/or modify

View file

@ -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 Peter Hyman
Copyright (C) 1998 Andrew Tridgell

2
util.c
View file

@ -1,5 +1,5 @@
/*
Copyright (C) 2006-2016 Con Kolivas
Copyright (C) 2006-2016,2021 Con Kolivas
Copyright (C) 2011 Serge Belyshev
Copyright (C) 2008, 2011 Peter Hyman
Copyright (C) 1998 Andrew Tridgell