telegram-bot-bash/dev/make-distribution.sh

85 lines
2.2 KiB
Bash
Raw Normal View History

2019-04-22 18:34:43 +00:00
#!/usr/bin/env bash
2020-12-27 16:27:04 +00:00
##############################################################
2019-05-11 10:17:38 +00:00
#
2020-12-27 16:27:04 +00:00
# File: make-distribution.sh
#
# Description: creates files and arcchives to distribute bashbot
#
# Options: --notest - skip tests
#
2020-12-29 13:02:11 +00:00
#### $$VERSION$$ v1.21-dev-36-gc6001c2
2020-12-27 16:27:04 +00:00
##############################################################
2019-04-22 18:34:43 +00:00
# magic to ensure that we're always inside the root of our application,
# no matter from which directory we'll run script
GIT_DIR=$(git rev-parse --git-dir 2>/dev/null)
if [ "$GIT_DIR" != "" ] ; then
2020-12-19 13:41:04 +00:00
[[ "$GIT_DIR" != "/"* ]] && GIT_DIR="${PWD}/${GIT_DIR}"
cd "$GIT_DIR/.." || exit 1
else
echo "Sorry, no git repository $(pwd)" && exit 1
fi
2019-04-22 18:34:43 +00:00
2019-04-30 12:21:24 +00:00
VERSION="$(git describe --tags | sed -e 's/-[0-9].*//' -e 's/v//')"
2019-04-22 18:34:43 +00:00
DISTNAME="telegram-bot-bash"
2019-05-26 14:55:02 +00:00
DISTDIR="./DIST/${DISTNAME}"
2020-12-16 17:01:16 +00:00
DISTFILES="bashbot.rc bashbot.sh commands.sh mycommands.sh mycommands.sh.clean bin doc examples scripts modules addons LICENSE README.md README.txt README.html"
2020-12-29 12:59:31 +00:00
DISTMKDIR="data-bot-bash logs"
2019-04-22 18:34:43 +00:00
# run tests first!
2020-12-27 16:27:04 +00:00
for test in $1 dev/all-test*.sh
2019-04-22 18:34:43 +00:00
do
2020-12-27 16:27:04 +00:00
[[ "${test}" == "--notest"* ]] && break
[ ! -x "${test}" ] && continue
2019-04-22 18:34:43 +00:00
if ! "${test}" ; then
echo "Test ${test} failed, can't create dist!"
exit 1
fi
done
2019-04-28 08:32:06 +00:00
# create dir for distribution and copy files
2019-04-22 18:34:43 +00:00
mkdir -p "${DISTDIR}" 2>/dev/null
2020-12-29 12:59:31 +00:00
echo "Copy files"
# shellcheck disable=SC2086
2019-04-22 18:34:43 +00:00
cp -r ${DISTFILES} "${DISTDIR}"
cd "${DISTDIR}" || exit 1
2020-12-29 12:59:31 +00:00
echo "Create directories"
for dir in $DISTMKDIR
do
[ ! -d "${dir}" ] && mkdir "${dir}"
done
2019-05-25 15:02:25 +00:00
# do not overwrite on update
echo "Create .dist files"
2019-05-25 15:02:25 +00:00
for file in mycommands.sh bashbot.rc addons/*.sh
do
[ "${file}" = "addons/*.sh" ] && continue
mv "${file}" "${file}.dist"
done
2019-04-22 18:34:43 +00:00
2020-12-27 20:19:32 +00:00
# inject JSON.sh into distribution
# shellcheck disable=SC1090
source "$GIT_DIR/../dev/inject-json.sh"
2019-04-22 18:34:43 +00:00
2019-04-28 08:32:06 +00:00
# make html doc
echo "Create html doc"
2020-11-29 16:44:20 +00:00
# shellcheck disable=SC1090,SC1091
source "../../dev/make-html.sh"
2019-04-28 08:32:06 +00:00
2019-04-22 18:34:43 +00:00
# create archive
cd .. || exit 1
echo "Create dist archives"
# shellcheck disable=SC2046
2020-12-19 13:41:04 +00:00
zip -rq - "${DISTNAME}" --exclude $(cat "$GIT_DIR/../dev/${0##*/}.exclude") >"${DISTNAME}-${VERSION}.zip"
tar --exclude-ignore="$GIT_DIR/../dev/${0##*/}.exclude" -czf "${DISTNAME}-${VERSION}.tar.gz" "${DISTNAME}"
2019-04-22 18:34:43 +00:00
echo "Done!"
2019-04-22 18:34:43 +00:00
# shellcheck disable=SC2086
ls -ld ${DISTNAME}-${VERSION}.*