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

42 lines
944 B
Bash
Raw Normal View History

2019-05-16 12:22:03 +02:00
#!/bin/sh
2016-10-06 11:11:39 +02:00
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
2019-05-16 12:22:03 +02:00
PACKAGE="intellij-idea-community"
2021-10-15 20:03:31 +02:00
DISTRIBUTION="impish"
2016-10-06 11:11:39 +02:00
2019-05-16 12:22:03 +02:00
main() {
2020-03-29 13:29:00 +02:00
last_tag=$(git describe --abbrev=0 --tags)
old="${last_tag#?}"
new="$1"
2019-05-16 12:22:03 +02:00
name="$(git config --get user.name)"
email="$(git config --get user.email)"
2019-05-16 12:22:03 +02:00
git checkout -b version-"$new"
2016-10-06 11:11:39 +02:00
2019-05-16 12:22:03 +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
2019-05-16 12:22:03 +02:00
cd "$PACKAGE"_"$new" || exit
2016-10-06 11:11:39 +02:00
2019-05-16 12:22:03 +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
2019-05-16 12:22:03 +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
2019-05-16 12:22:03 +02:00
debuild -us -uc
2016-10-06 11:11:39 +02:00
2019-05-16 12:22:03 +02:00
cd ..
2016-10-06 11:11:39 +02:00
2019-05-16 12:22:03 +02:00
rm "$PACKAGE"_"$old"-*
2016-10-06 11:11:39 +02:00
2019-05-16 12:22:03 +02:00
# disabled until it is only called with an specific argument
# sudo dpkg -i "$PACKAGE"_"$new"-1_all.deb
}
2016-10-06 11:11:39 +02:00
main "$1"