Deleted old update script

This commit is contained in:
Marcel Kapfer 2019-05-16 12:22:46 +02:00
parent 8c3f361135
commit 8592aad294
Signed by: mmk2410
GPG Key ID: CADE6F0C09F21B09
2 changed files with 27 additions and 66 deletions

View File

@ -1,37 +1,39 @@
#!/bin/bash
function main {
local old=$1
local new=$2
local now=`date -R`
local author=`git config --get user.name`
local email=`git config --get user.email`
local username=`git config --get remote.origin.url | sed 's,.*:\(.*\)/.*,\1,'`
local tempfile=`tempfile`
#!/bin/sh
git checkout -b version-$new
# This script intends to decrease the effort of updating the package.
mv intellij-idea-ultimate_{$old,$new}
mv intellij-idea-ultimate_{$old,$new}.orig.tar.gz
PACKAGE="intellij-idea-ultimate"
DISTRIBUTION="disco"
echo "intellij-idea-ultimate ($new-1) artful; urgency=low
main() {
old="$1"
new="$2"
name="$(git config --get user.name)"
email="$(git config --get user.email)"
* Upstream Version $new
git checkout -b version-"$new"
-- $author ($username) <$email> $now
" >> $tempfile
mv "$PACKAGE"_"$old" "$PACKAGE"_"$new"
mv "$PACKAGE"_"$old".orig.tar.gz "$PACKAGE"_"$new".orig.tar.gz
cat intellij-idea-ultimate_$new/debian/changelog >> $tempfile
mv $tempfile intellij-idea-ultimate_$new/debian/changelog
cd "$PACKAGE"_"$new" || exit
sed -i "s/$old/$new/g" intellij-idea-ultimate_$new/debian/preinst
# Update the debian/changelog file with dch
NAME="$name" EMAIL="$email" dch \
--newversion "$new"-1 \
--distribution "$DISTRIBUTION" \
"Upstream version $new"
(cd intellij-idea-ultimate_$new/ && debuild -us -uc )
sed -i "s/$old/$new/g" ./debian/preinst
rm intellij-idea-ultimate_${old}*
debuild -us -uc
sudo dpkg -i intellij-idea-ultimate_$new-1_all.deb
cd ..
rm -rf "$PACKAGE"_"$old"-*
# disabled until it is only called with an specific argument
# sudo dpkg -i "$PACKAGE"_"$new"-1_all.deb
}
main $1 $2
main "$1" "$2"

View File

@ -1,41 +0,0 @@
#!/bin/sh
# This is a ongoing rewrite of the update-new-version.sh script.
# Most important changes: POSIX compatibility, use of existing commands.
# The script intends to decrease the effort of updating the package.
PACKAGE="intellij-idea-ultimate"
DISTRIBUTION="disco"
main() {
old="$1"
new="$2"
name="$(git config --get user.name)"
email="$(git config --get user.email)"
git checkout -b version-"$new"
mv "$PACKAGE"_"$old" "$PACKAGE"_"$new"
mv "$PACKAGE"_"$old".orig.tar.gz "$PACKAGE"_"$new".orig.tar.gz
cd "$PACKAGE"_"$new" || exit
# Update the debian/changelog file with dch
NAME="$name" EMAIL="$email" dch \
--newversion "$new"-1 \
--distribution "$DISTRIBUTION" \
"Upstream version $new"
sed -i "s/$old/$new/g" ./debian/preinst
debuild -us -uc
cd ..
rm -rf "$PACKAGE"_"$old"-*
# disabled until it is only called with an specific argument
# sudo dpkg -i "$PACKAGE"_"$new"-1_all.deb
}
main "$1" "$2"