forked from meganz/MEGAsync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate_rpm_changelog_entry.sh
executable file
·56 lines (51 loc) · 1.72 KB
/
generate_rpm_changelog_entry.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
#!/bin/bash
##
# @file build/generate_rpm_changelog_entry.sh
# @brief Processes the input file and prints RPM ChangeLog entry
#
# (c) 2013-2014 by Mega Limited, Auckland, New Zealand
#
# This file is part of the MEGA SDK - Client Access Engine.
#
# Applications using the MEGA API must present a valid application key
# and comply with the the rules set forth in the Terms of Service.
#
# The MEGA SDK is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
# @copyright Simplified (2-clause) BSD License.
#
# You should have received a copy of the license along with this
# program.
##
if [ "$#" -ne 1 ]; then
echo "Please provide input file path"
exit 1
fi
in_file="$1"
out1=$(awk 'f; /\);/{f=0} /const QString Preferences::CHANGELOG = QString::fromUtf8/{f=1}' $in_file)
# remove ");
out2=$(awk -F'")*;' '{print $1}' <<< "$out1")
# remove leading and trailing space, tabs and quote marks
out3=$(awk '{ gsub(/^[ \t"]+|[ \t"\n]+$/, ""); print }' <<< "$out2")
# remove trailing "\n"
out4=$(sed "s#\\\\n\$##g" <<< "$out3")
# remove New in this version
out5=$(awk '!/New in this version/' <<< "$out4")
# replace "- " by *
out6=$(sed 's#^- # * #g' <<< "$out5")
# remove duplicates
out7=$(awk '!x[$0]++' <<< "$out6")
#get version number
new_version=$(awk 'f; /const QString Preferences::VERSION_STRING = QString::fromAscii/' $in_file | \
awk -F'"\);' '{print $1}' | \
awk -F'\\("' '{print $2}' \
)
# print ChangeLog entry
NOW=$(LANG=en_us_8859_1;date)
echo $NOW - [email protected]
echo "- Update to version $new_version:"
echo "$out7"
echo ""
echo "-------------------------------------------------------------------"