Skip to content

Commit

Permalink
tentative changes
Browse files Browse the repository at this point in the history
  • Loading branch information
kspalaiologos committed Jan 13, 2024
1 parent 9cda907 commit 419f726
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 5 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ACLOCAL_AMFLAGS = -I build-aux

AM_CFLAGS = -I$(top_srcdir)/include

EXTRA_DIST = LICENSE libsais-LICENSE PORTING.md README.md build-aux/git-version-gen CMakeLists.txt
EXTRA_DIST = LICENSE 3rdparty/libsais-LICENSE PORTING.md README.md build-aux/git-version-gen CMakeLists.txt

pkgconfig_DATA = bzip3.pc

Expand Down
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,18 @@ Bzip3 has been tested on the following architectures:

Check etc/BENCHMARKS.md for more results.

## Licensing

A breakdown of components and their licenses follows:

- (runtime) The codebase as a whole: Copyright 2022-2023, Kamila Szewczyk ([email protected]); LGPL (LICENSE)
- (runtime) The Burrows-Wheeler transform (libsais) and LZP code: 2021-2022, Ilya Grebnov ([email protected]); Apache 2.0 (3rdparty/libsais-LICENSE)
- (compile-time) `build-aux`: Copyright 2011, Daniel Richard G ([email protected]), 2019, Marc Stevens ([email protected]), 2008, Steven G. Johnson ([email protected]); GPL-3+ with AutoConf exception
- (compile-time) `build-aux/ax_check_compile_flag.m4`: Copyright 2008, Guido U. Draheim ([email protected]), 2011, Maarten Bosmans ([email protected]); FSFAP
- (compile-time) `build-aux/git-version-gen`: Copyright 2007-2012, Free Software Foundation, Inc; GPLv3
- (runtime) `bz3grep`: Copyright 2003, Thomas Klausner; BSD-2-clause
- (runtime) `include/getopt-shim.h`: Copyright 2005-2014, Rich Felker; Expat

## Thanks

- Ilya Grebnov for his `libsais` library used for BWT construction in BZip3 and the LZP encoder which I had used as a reference implementation to improve myself.
Expand Down
2 changes: 1 addition & 1 deletion include/common.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

/*
* BZip3 - A spiritual successor to BZip2.
* Copyright (C) 2022-2023 Kamila Szewczyk
* Copyright (C) 2022-2024 Kamila Szewczyk
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by the Free
Expand Down
2 changes: 1 addition & 1 deletion include/libbz3.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

/*
* BZip3 - A spiritual successor to BZip2.
* Copyright (C) 2022-2023 Kamila Szewczyk
* Copyright (C) 2022-2024 Kamila Szewczyk
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by the Free
Expand Down
2 changes: 1 addition & 1 deletion src/libbz3.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

/*
* BZip3 - A spiritual successor to BZip2.
* Copyright (C) 2022-2023 Kamila Szewczyk
* Copyright (C) 2022-2024 Kamila Szewczyk
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by the Free
Expand Down
2 changes: 1 addition & 1 deletion src/main.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

/*
* BZip3 - A spiritual successor to BZip2.
* Copyright (C) 2022-2023 Kamila Szewczyk
* Copyright (C) 2022-2024 Kamila Szewczyk
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by the Free
Expand Down

0 comments on commit 419f726

Please sign in to comment.