intellij-idea-community/update-new-version.sh

44 lines
924 B
Bash
Raw Normal View History

#!/bin/bash
#
2019-05-16 12:22:03 +02:00
# This script intends to decrease the effort of updating the package.
2016-10-06 11:11:39 +02:00
set -euo pipefail
2016-10-06 11:11:39 +02:00
# Check if running Ubuntu
grep -q Ubuntu /etc/issue
if [[ $? != 0 ]]; then
echo "System is not running Ubuntu. Cancelling build."
exit 1
fi
PACKAGE="intellij-idea-community"
DISTRIBUTION="jammy"
2016-10-06 11:11:39 +02:00
last_tag=$(git describe --abbrev=0 --tags)
old="${last_tag#?}"
new="$1"
name="$(git config --get user.name)"
email="$(git config --get user.email)"
2016-10-06 11:11:39 +02:00
git checkout -b version-"$new"
2016-10-06 11:11:39 +02:00
mv "$PACKAGE"_"$old" "$PACKAGE"_"$new"
mv "$PACKAGE"_"$old".orig.tar.gz "$PACKAGE"_"$new".orig.tar.gz
2016-10-06 11:11:39 +02:00
cd "$PACKAGE"_"$new" || exit
2016-10-06 11:11:39 +02:00
# Update the debian/changelog file with dch
NAME="$name" EMAIL="$email" dch \
--newversion "$new"-1 \
--distribution "$DISTRIBUTION" \
"Upstream version $new"
2016-10-06 11:11:39 +02:00
sed -i "s/$old/$new/g" ./debian/preinst
sed -i "s/$old/$new/g" ./debian/postinst
2016-10-06 11:11:39 +02:00
debuild -us -uc
2016-10-06 11:11:39 +02:00
cd ..
2016-10-06 11:11:39 +02:00
rm "$PACKAGE"_"$old"-*