diff options
author | 2019-11-28 21:17:26 +0100 | |
---|---|---|
committer | 2019-12-05 21:37:42 +0100 | |
commit | 88ec7ae1505cb4488f64739c56e5800dfc84d6a1 (patch) | |
tree | 2c92e7b300a18666ed3272269f20e6cdca8a02a8 | |
parent | 4e10963ce24891c19a17b20cd4692313acb64368 (diff) | |
download | buildroot-88ec7ae1505cb4488f64739c56e5800dfc84d6a1.tar.gz buildroot-88ec7ae1505cb4488f64739c56e5800dfc84d6a1.tar.bz2 |
package/lzma: add license
- lzma program is licensed under GPL-2.0+
- lzmadec program has no license information in source file
- lzmainfo program is licensed under LGPL-2.1+
- LzmaDecode.h is licensed under LGPL-2.1+ (or CPL) as stated in
src/sdk/7zip/Compress/LZMA_C/LzmaDecode.{c,h}, other sdk files have no
license information
- lzmore and lzgrep scripts are licensed under GPL-2.0+
- lzdiff script has no license information
- basic and perms tests are licensed under GPL-3.0+
- mkdtemp and test-lib.sh tests have no license information
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
(cherry picked from commit ea107efc97fa7202d8af59e4040937b09e5e2b05)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/lzma/lzma.hash | 3 | ||||
-rw-r--r-- | package/lzma/lzma.mk | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/package/lzma/lzma.hash b/package/lzma/lzma.hash index e73517ca57..6055d7d986 100644 --- a/package/lzma/lzma.hash +++ b/package/lzma/lzma.hash @@ -1,2 +1,5 @@ # Locally calculated sha256 02aa57f995d15b7acb7c2496d88a39fb0124ea00bf027cc61dd24eddb5942dff lzma-4.32.7.tar.xz +sha256 231f7edcc7352d7734a96eef0b8030f77982678c516876fcb81e25b32d68564c COPYING.GPLv2 +sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 COPYING.GPLv3 +sha256 6095e9ffa777dd22839f7801aa845b31c9ed07f3d6bf8a26dc5d2dec8ccc0ef3 COPYING.LGPLv2.1 diff --git a/package/lzma/lzma.mk b/package/lzma/lzma.mk index 1b4d7febb1..095382d174 100644 --- a/package/lzma/lzma.mk +++ b/package/lzma/lzma.mk @@ -7,6 +7,8 @@ LZMA_VERSION = 4.32.7 LZMA_SOURCE = lzma-$(LZMA_VERSION).tar.xz LZMA_SITE = http://tukaani.org/lzma +LZMA_LICENSE = LGPL-2.1+ (lzmadec library, lzmainfo, LzmaDecode), GPL-2.0+ (lzma program, lzgrep and lzmore scripts), GPL-3.0+ (tests) +LZMA_LICENSE_FILES = COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1 $(eval $(host-autotools-package)) |