forked from KDAB/KDSoap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd_license_blurb.sh
executable file
·94 lines (88 loc) · 3.56 KB
/
add_license_blurb.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#!/bin/bash
origAuthor=""
moreAuthors=""
#AUTHORS: sets author variables for use in the file header
# origAuthor = is the fullname and email of the person who created the file
# moreAuthors = is a list (fullname and email) of other people who contributed
# more than once to the file since creation.
# newLine = if moreAuthors is not empty, newLine will contain a newline char.
AUTHORS() {
origAuthor="`git log --format='%aN <%aE>' --reverse $1 | grep 'kdab\.com' | head -1 | awk '{printf(" Author: "); for(i=1;i<NF; i++)printf("%s ",$i); printf("%s",$NF);}'`"
origEmail=`echo $origAuthor | cut -d\< -f2 | cut -d\> -f1`
moreAuthors=`git log --format='%aN <%aE>' $FILE | grep -v $origEmail | grep 'kdab\.com' | sort | uniq -c | sort -nr | \
awk '{ \
if($1>1) {\
printf(" Author: "); \
for(i=2;i<NF; i++)printf("%s ",$i); \
printf("%s\n",$NF); \
} \
}'`
newLine="$moreAuthors"
if(test -n "$newLine")
then
newLine=$'\n'
else
newLine=""
fi
}
find "$@" -name '*.h' -o -name '*.cpp' -o -name '*.qml' -o -name '*.js' | grep -v /KDQName\. | grep -v /3rdparty/ | grep -v /build | grep -v /examples | grep -v /doxygen\.cpp | grep -v /kdwsdl2cpp | while read FILE; do
if grep -qiE "Copyright \(C\) [0-9, -]{4,} Klar.*lvdalens Datakonsult AB" "$FILE" ; then continue; fi
thisfile=`basename $FILE`
AUTHORS $FILE
thisYear=`date +%Y`
cat <<EOF > "$FILE".tmp
/****************************************************************************
** Copyright (C) $thisYear Klarälvdalens Datakonsult AB, a KDAB Group company, [email protected].
** All rights reserved.
**
** This file is part of the KD Soap library.
**
** Licensees holding valid commercial KD Soap licenses may use this file in
** accordance with the KD Soap Commercial License Agreement provided with
** the Software.
**
** This file may be distributed and/or modified under the terms of the
** GNU Lesser General Public License version 2.1 and version 3 as published by the
** Free Software Foundation and appearing in the file LICENSE.LGPL.txt included.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
** Contact [email protected] if any conditions of this licensing are not
** clear to you.
**
**********************************************************************/
EOF
cat "$FILE" >> "$FILE".tmp
mv "$FILE".tmp "$FILE"
done
#remove the following exit if you want to add a header to CMakeLists.txt files
exit
find "$@" -name 'CMakeLists.txt' | while read FILE; do
if grep -qiE "Copyright \(C\) [0-9, -]{4,} Klar.*lvdalens Datakonsult AB" "$FILE" ; then continue; fi
AUTHORS $FILE
cat <<EOF > "$FILE".tmp
#
# Copyright (C) $thisYear Klarälvdalens Datakonsult AB, a KDAB Group company, [email protected].
# All rights reserved.
#
# This file is part of the KD Soap library.
#
# Licensees holding valid commercial KD Soap licenses may use this file in
# accordance with the KD Soap Commercial License Agreement provided with
# the Software.
#
# This file may be distributed and/or modified under the terms of the
# GNU Lesser General Public License version 2.1 and version 3 as published by the
# Free Software Foundation and appearing in the file LICENSE.LGPL.txt included.
#
# This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
# WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
#
# Contact [email protected] if any conditions of this licensing are not
# clear to you.
#
EOF
cat "$FILE" >> "$FILE".tmp
mv "$FILE".tmp "$FILE"
done