forked from Etersoft/eepm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pack_in_onefile.sh
executable file
·113 lines (92 loc) · 2.93 KB
/
pack_in_onefile.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#!/bin/sh
#
# Run for create one-file-scripts
#
# Copyright (C) 2012, 2016, 2017 Etersoft
# Copyright (C) 2012, 2016, 2017 Vitaly Lipatov <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program 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. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
incorporate_subfile()
{
cat <<EOF >>$OUTPUT
################# incorporate $1 #################
internal_$(basename $1)()
{
EOF
cat $1 | grep -v "^#!/bin/sh" | sed -e 's| exit$| return|g' -e 's|exit \$| return $|g' -e 's|^init_eget$||' >>$OUTPUT
cat <<EOF >>$OUTPUT
}
################# end of incorporated $1 #################
EOF
}
get_version()
{
grep "^Version:" eepm.spec | head -n1 | sed "s|Version: *||g"
}
filter_out()
{
grep -v "^[ ]*load_helper " | \
sed -e 's|^eget()|disabled_eget()|g' | \
sed -e 's|^onefile_eget()|eget()|g' | \
sed -e 's|^erc()|disabled_erc()|g' | \
sed -e 's|^onefile_erc()|erc()|g' | \
sed -e 's|^ercat()|disabled_ercat()|g' | \
sed -e 's|^onefile_ercat()|ercat()|g' | \
sed -e 's|^estrlist()|disabled_estrlist()|g' | \
sed -e 's|^onefile_estrlist()|estrlist()|g' | \
sed -e 's|$SHAREDIR/tools_json|internal_tools_json|g' | \
sed -e 's|DISTRVENDOR=$PROGDIR/distr_info|DISTRVENDOR=internal_distr_info|g' | \
sed -e "s|@VERSION@|$(get_version)|g"
}
incorporate_all()
{
mkdir -p packed
OUTPUT=packed/$PACKCOMMAND.sh
echo -n >$OUTPUT
awk 'BEGIN{desk=0}{if(/^load_helper epm-sh-functions/){desk++};if(desk==0) {print}}' <bin/$PACKCOMMAND | filter_out >>$OUTPUT
for i in bin/epm-sh-functions $(ls -1 bin/$PACKCOMMAND-* | grep -v epm-sh-functions | sort) ; do
echo
echo "# File $i:"
cat $i | grep -v "^#"
done | filter_out >>$OUTPUT
incorporate_subfile bin/distr_info
if [ "$PACKCOMMAND" = "epm" ] ; then
incorporate_subfile bin/tools_eget
[ -f bin/tools_erc ] && incorporate_subfile bin/tools_erc
[ -f bin/tools_ercat ] && incorporate_subfile bin/tools_ercat
incorporate_subfile bin/tools_estrlist
incorporate_subfile bin/tools_json
fi
cat <<EOF >>$OUTPUT
${PACKCOMMAND}_main()
{
EOF
awk 'BEGIN{desk=0}{if(desk>0) {print} ; if(/^load_helper epm-sh-functions/){desk++}}' <bin/$PACKCOMMAND | filter_out >>$OUTPUT
cat <<EOF >>$OUTPUT
}
${PACKCOMMAND}_main "\$@"
EOF
chmod 0755 $OUTPUT
}
###############
PACKCOMMAND=epm
incorporate_all
# test
packed/$PACKCOMMAND.sh --help >/dev/null || exit
###############
PACKCOMMAND=serv
incorporate_all
# test
packed/$PACKCOMMAND.sh --help >/dev/null || exit