obackup/dev/merge.sh

72 lines
2.0 KiB
Bash
Raw Normal View History

2015-11-12 01:26:38 +01:00
#!/usr/bin/env bash
2016-08-06 16:14:07 +02:00
## MERGE 2016080601
2016-08-06 15:15:11 +02:00
## Merges ofunctions.sh and n_program.sh into program.sh
## Adds installer
2015-11-12 01:26:38 +01:00
PROGRAM=obackup
VERSION=$(grep "PROGRAM_VERSION=" n_$PROGRAM.sh)
VERSION=${VERSION#*=}
2015-11-12 01:26:38 +01:00
PARANOIA_DEBUG_LINE="__WITH_PARANOIA_DEBUG"
PARANOIA_DEBUG_BEGIN="#__BEGIN_WITH_PARANOIA_DEBUG"
PARANOIA_DEBUG_END="#__END_WITH_PARANOIA_DEBUG"
2016-08-06 15:15:11 +02:00
MINIMUM_FUNCTION_BEGIN="#### MINIMAL-FUNCTION-SET BEGIN ####"
MINIMUM_FUNCTION_END="#### MINIMAL-FUNCTION-SET END ####"
2015-11-12 01:26:38 +01:00
function Unexpand {
unexpand n_$PROGRAM.sh > tmp_$PROGRAM.sh
}
2016-08-06 15:15:11 +02:00
function MergeAll {
2015-11-12 01:26:38 +01:00
2016-08-06 15:15:11 +02:00
sed "/source \"\.\/ofunctions.sh\"/r ofunctions.sh" tmp_$PROGRAM.sh | grep -v 'source "./ofunctions.sh"' > debug_$PROGRAM.sh
2015-11-12 01:26:38 +01:00
chmod +x debug_$PROGRAM.sh
}
2016-08-06 15:15:11 +02:00
function MergeMinimum {
sed -n "/$MINIMUM_FUNCTION_BEGIN/,/$MINIMUM_FUNCTION_END/p" ofunctions.sh > tmp_minimal.sh
2016-08-06 16:14:07 +02:00
sed "/source \"\.\/ofunctions.sh\"/r tmp_minimal.sh" tmp_$PROGRAM.sh | grep -v 'source "./ofunctions.sh"' | grep -v "$PARANOIA_DEBUG_LINE" > debug_$PROGRAM.sh
2016-08-06 15:15:11 +02:00
rm -f tmp_minimal.sh
2016-08-06 16:14:07 +02:00
chmod +x debug_$PROGRAM.sh
2016-08-06 15:15:11 +02:00
}
2015-11-12 01:26:38 +01:00
function CleanDebug {
# sed explanation
#/pattern1/{ # if pattern1 is found
# p # print it
# :a # loop
# N # and accumulate lines
# /pattern2/!ba # until pattern2 is found
# s/.*\n// # delete the part before pattern2
#}
#p
sed -n '/'$PARANOIA_DEBUG_BEGIN'/{p; :a; N; /'$PARANOIA_DEBUG_END'/!ba; s/.*\n//}; p' debug_$PROGRAM.sh | grep -v "$PARANOIA_DEBUG_LINE" > ../$PROGRAM.sh
chmod +x ../$PROGRAM.sh
}
function CopyCommons {
2016-08-06 15:15:11 +02:00
sed "s/\[prgname\]/$PROGRAM/g" common_install.sh > ../tmp_install.sh
sed "s/\[version\]/$VERSION/g" ../tmp_install.sh > ../install.sh
2016-08-06 16:14:07 +02:00
if [ -f "common_batch.sh" ]; then
sed "s/\[prgname\]/$PROGRAM/g" common_batch.sh > ../$PROGRAM-batch.sh
fi
2015-11-12 01:26:38 +01:00
chmod +x ../install.sh
2016-08-06 15:15:11 +02:00
chmod +x ../$PROGRAM-batch.sh
rm -f ../tmp_install.sh
2015-11-12 01:26:38 +01:00
}
Unexpand
2016-08-06 15:15:11 +02:00
if [ "$PROGRAM" == "osync" ] || [ "$PROGRAM" == "obackup" ]; then
MergeAll
else
MergeMinimum
fi
2015-11-12 01:26:38 +01:00
CleanDebug
CopyCommons
2016-08-06 16:14:07 +02:00
rm -f tmp_$PROGRAM.sh