mirror of
git://sourceware.org/git/libabigail.git
synced 2025-01-22 17:23:05 +00:00
fb5749b5ee
* relicensing-scripts/file-licenses.orig.txt: New file that contains the raw set of files with SPDX identifiers denoting LGPLv3+ files. It's the result of a simple command based on "find" and "grep". * relicensing-scripts/files-with-lgplv3.txt: New file containing the same data as the file above, but massaged to be easily useable by the script below. * relicensing-scripts/do-relicensing.sh: This is a simple command which performs the re-licensing on the files listed in the file above. Signed-off-by: Benjamin De Kosnik <bkoz@gnu.org> Signed-off-by: Ben Woodard <woodard@redhat.com> Signed-off-by: Chenxiong Qi <cqi@redhat.com> Signed-off-by: Dodji Seketeli <dodji@redhat.com> Signed-off-by: Giuliano Procida <gprocida@google.com> Signed-off-by: Jan Engelhardt <jengelh@inai.de> Signed-off-by: Jessica Yu <jeyu@kernel.org> Signed-off-by: Jonathan Wakely <jwakely@redhat.com> Signed-off-by: Mark Wielaard <mark@klomp.org> Signed-off-by: Matthias Maennich <maennich@google.com> Signed-off-by: Matthias Klose <doko@ubuntu.com> Signed-off-by: Ondrej Oprala <ondrej.oprala@gmail.com> Signed-off-by: Roland McGrath <roland@hack.frob.com> Signed-off-by: Sinny Kumari <ksinny@gmail.com> Signed-off-by: Slava Barinov <v.barinov@samsung.com>
10 lines
353 B
Bash
10 lines
353 B
Bash
#!/bin/sh
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
# Author: Dodji Seketeli <dodji@redhat.com>
|
|
|
|
#This does the actual re-licensing
|
|
grep '^\.' relicensing-scripts/files-with-lgplv3.txt | while read file
|
|
do
|
|
echo ./relicensing-scripts/replace-spdx-license.sh --from "LGPL-3.0-or-later" --to "Apache-2.0 WITH LLVM-exception" "$file"
|
|
done
|