pack_in_onefile.sh 2.93 KB
#!/bin/sh
#
# Run for create one-file-scripts
#
# Copyright (C) 2012, 2016, 2017  Etersoft
# Copyright (C) 2012, 2016, 2017  Vitaly Lipatov <lav@etersoft.ru>
#
# 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