From 1ce171af32d5d3689f80c1e7f27df34200e850d4 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Wed, 1 Jan 2020 09:28:29 +0100 Subject: [PATCH] license: relicense "shared/nm-udev-aux/nm-udev-utils.[hc]" under LGPL-2.1+ >>> H0=a3e75f329446a93a61ca4c458a7657bd919f4fe6 commit_has_file() { git ls-tree -r "$1" | grep -q "\\s$2"\$ } print_commit_authors() { git --no-pager log --full-history --follow --no-merges --pretty='format:<%ae>' $H0 -- "$1" | sort | uniq } print_blame_authors() { local LAST_H if commit_has_file $H0 "$1"; then LAST_H=$H0 else LAST_H="$(git log --full-history --no-merges -n1 --pretty='format:%H' $H0 -- "$1")"^1 fi git blame --no-progress -C -C -C20 -M -M10 -e "$LAST_H" -- "$1" | sed 's/.*\(<[^>]\+@[^>]\+>\).*/\1/' | sort | uniq } print_grep() { git --no-pager log -p --full-history --follow $H0 -- "$1" | grep -i '[a-z0-9]@\|author\|copyright' | sort | uniq } prefix() { sed "s/^/>>>$1 /" } collect_all() { for F; do print_commit_authors "$F" | prefix 1 echo print_blame_authors "$F" | prefix 2 echo print_grep "$F" | prefix 3 done | sort | uniq | sed 's/@/(at)/' } collect_all \ shared/nm-udev-aux/nm-udev-utils.c \ shared/nm-udev-aux/nm-udev-utils.h \ shared/nm-utils/nm-udev-utils.c \ shared/nm-utils/nm-udev-utils.h \ ; <<< gives: >>>1 >>>1 >>>1 >>>2 >>>2 >>>2 >>>2 >>>3 [...] Red Hat, Inc. Everybody in this list agreed to relicensing according to RELICENSE.md. The code was initially added by commit e32839838e5e ('udev: drop libgudev in favor of libudev'). It did expand on top of existing GPL code, which is problematic. But it was introduced as an original contribution. --- shared/nm-udev-aux/nm-udev-utils.c | 2 +- shared/nm-udev-aux/nm-udev-utils.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/shared/nm-udev-aux/nm-udev-utils.c b/shared/nm-udev-aux/nm-udev-utils.c index 8131c04e39..3337ff5c96 100644 --- a/shared/nm-udev-aux/nm-udev-utils.c +++ b/shared/nm-udev-aux/nm-udev-utils.c @@ -1,4 +1,4 @@ -/* SPDX-License-Identifier: GPL-2.0+ */ +/* SPDX-License-Identifier: LGPL-2.1+ */ /* * Copyright (C) 2017 Red Hat, Inc. */ diff --git a/shared/nm-udev-aux/nm-udev-utils.h b/shared/nm-udev-aux/nm-udev-utils.h index f24659eb32..00fefdd07e 100644 --- a/shared/nm-udev-aux/nm-udev-utils.h +++ b/shared/nm-udev-aux/nm-udev-utils.h @@ -1,4 +1,4 @@ -/* SPDX-License-Identifier: GPL-2.0+ */ +/* SPDX-License-Identifier: LGPL-2.1+ */ /* * Copyright (C) 2017 Red Hat, Inc. */