summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2020-01-01 09:28:29 +0100
committerThomas Haller <thaller@redhat.com>2020-05-15 13:41:33 +0200
commitf0d4b5f001330287ab139ad75b7e8757319b3f07 (patch)
treefc0f7330408a60662bd78b2955ea5322e03da3c2
parenta5b65ca5f73020969be1ff4d39f247256cf34278 (diff)
downloadNetworkManager-f0d4b5f001330287ab139ad75b7e8757319b3f07.tar.gz
license: relicense "libnm/nm-types.h" 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 \ libnm/nm-types.h \ libnm-glib/nm-types.h \ ; <<< >>>1 <bberg(at)redhat.com> >>>1 <bgalvani(at)redhat.com> >>>1 <danw(at)gnome.org> >>>1 <danw(at)redhat.com> >>>1 <dcbw(at)redhat.com> >>>1 <jarteaga(at)jbeta.is> >>>1 <jklimes(at)redhat.com> >>>1 <lkundrak(at)v3.sk> >>>1 <thaller(at)redhat.com> >>>2 <bgalvani(at)redhat.com> >>>2 <clarkbw(at)cvs.gnome.org> >>>2 <danw(at)redhat.com> >>>2 <dcbw(at)redhat.com> >>>2 <jarteaga(at)jbeta.is> >>>2 <lkundrak(at)v3.sk> >>>2 <pgrzegorczyk(at)gmail.com> >>>2 <tambet(at)gmail.com> >>>2 <thaller(at)redhat.com> >>>3 [...] Red Hat, Inc.
-rw-r--r--libnm/nm-types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libnm/nm-types.h b/libnm/nm-types.h
index d390e61a3b..746e84e1fd 100644
--- a/libnm/nm-types.h
+++ b/libnm/nm-types.h
@@ -1,4 +1,4 @@
-// SPDX-License-Identifier: GPL-2.0+
+// SPDX-License-Identifier: LGPL-2.1+
/*
* Copyright (C) 2014 - 2018 Red Hat, Inc.
*/