From bdfcc4b656ffea08d833cb7f04ed279b1c6eb7c2 Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Tue, 14 Nov 2023 10:51:21 -0500 Subject: [PATCH] LICENSES: add `.txt` extension to license files `reuse lint` says: # LICENSES WITHOUT FILE EXTENSION The following licenses have no file extension: * BSD-2-Clause * BSD-4-Clause * BSL-1.0 * CC-BY-SA-4.0 * GPL-2.0-only * GPL-3.0-or-later * LGPL-2.1-only * MIT * PSF-2.0 Make it happy. Signed-off-by: Philippe Proulx Change-Id: I6c06d74c37fe4230e5c302783183211eeff2b8a5 Reviewed-on: https://review.lttng.org/c/babeltrace/+/11379 Reviewed-by: Michael Jeanson Tested-by: jenkins CI-Build: Michael Jeanson --- LICENSES/{BSD-2-Clause => BSD-2-Clause.txt} | 0 LICENSES/{BSD-4-Clause => BSD-4-Clause.txt} | 0 LICENSES/{BSL-1.0 => BSL-1.0.txt} | 0 LICENSES/{CC-BY-SA-4.0 => CC-BY-SA-4.0.txt} | 0 LICENSES/{GPL-2.0-only => GPL-2.0-only.txt} | 0 .../{GPL-3.0-or-later => GPL-3.0-or-later.txt} | 0 LICENSES/{LGPL-2.1-only => LGPL-2.1-only.txt} | 0 LICENSES/{MIT => MIT.txt} | 0 LICENSES/{PSF-2.0 => PSF-2.0.txt} | 0 Makefile.am | 16 ++++++++-------- 10 files changed, 8 insertions(+), 8 deletions(-) rename LICENSES/{BSD-2-Clause => BSD-2-Clause.txt} (100%) rename LICENSES/{BSD-4-Clause => BSD-4-Clause.txt} (100%) rename LICENSES/{BSL-1.0 => BSL-1.0.txt} (100%) rename LICENSES/{CC-BY-SA-4.0 => CC-BY-SA-4.0.txt} (100%) rename LICENSES/{GPL-2.0-only => GPL-2.0-only.txt} (100%) rename LICENSES/{GPL-3.0-or-later => GPL-3.0-or-later.txt} (100%) rename LICENSES/{LGPL-2.1-only => LGPL-2.1-only.txt} (100%) rename LICENSES/{MIT => MIT.txt} (100%) rename LICENSES/{PSF-2.0 => PSF-2.0.txt} (100%) diff --git a/LICENSES/BSD-2-Clause b/LICENSES/BSD-2-Clause.txt similarity index 100% rename from LICENSES/BSD-2-Clause rename to LICENSES/BSD-2-Clause.txt diff --git a/LICENSES/BSD-4-Clause b/LICENSES/BSD-4-Clause.txt similarity index 100% rename from LICENSES/BSD-4-Clause rename to LICENSES/BSD-4-Clause.txt diff --git a/LICENSES/BSL-1.0 b/LICENSES/BSL-1.0.txt similarity index 100% rename from LICENSES/BSL-1.0 rename to LICENSES/BSL-1.0.txt diff --git a/LICENSES/CC-BY-SA-4.0 b/LICENSES/CC-BY-SA-4.0.txt similarity index 100% rename from LICENSES/CC-BY-SA-4.0 rename to LICENSES/CC-BY-SA-4.0.txt diff --git a/LICENSES/GPL-2.0-only b/LICENSES/GPL-2.0-only.txt similarity index 100% rename from LICENSES/GPL-2.0-only rename to LICENSES/GPL-2.0-only.txt diff --git a/LICENSES/GPL-3.0-or-later b/LICENSES/GPL-3.0-or-later.txt similarity index 100% rename from LICENSES/GPL-3.0-or-later rename to LICENSES/GPL-3.0-or-later.txt diff --git a/LICENSES/LGPL-2.1-only b/LICENSES/LGPL-2.1-only.txt similarity index 100% rename from LICENSES/LGPL-2.1-only rename to LICENSES/LGPL-2.1-only.txt diff --git a/LICENSES/MIT b/LICENSES/MIT.txt similarity index 100% rename from LICENSES/MIT rename to LICENSES/MIT.txt diff --git a/LICENSES/PSF-2.0 b/LICENSES/PSF-2.0.txt similarity index 100% rename from LICENSES/PSF-2.0 rename to LICENSES/PSF-2.0.txt diff --git a/Makefile.am b/Makefile.am index 1ba7628d..7bd551a8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -17,14 +17,14 @@ dist_doc_DATA = \ dist_noinst_DATA = CodingStyle EXTRA_DIST = \ - LICENSES/BSD-2-Clause \ - LICENSES/BSD-4-Clause \ - LICENSES/BSL-1.0 \ - LICENSES/CC-BY-SA-4.0 \ - LICENSES/GPL-2.0-only \ - LICENSES/GPL-3.0-or-later \ - LICENSES/LGPL-2.1-only \ - LICENSES/MIT \ + LICENSES/BSD-2-Clause.txt \ + LICENSES/BSD-4-Clause.txt \ + LICENSES/BSL-1.0.txt \ + LICENSES/CC-BY-SA-4.0.txt \ + LICENSES/GPL-2.0-only.txt \ + LICENSES/GPL-3.0-or-later.txt \ + LICENSES/LGPL-2.1-only.txt \ + LICENSES/MIT.txt \ std-ext-lib.txt \ tools/format-cpp.sh \ tools/lint-py.sh \ -- 2.34.1