Deleted old update script

This commit is contained in:
Marcel Kapfer 2019-05-16 12:22:03 +02:00
parent 9830569dcd
commit d2d3eed509
Signed by: mmk2410
GPG Key ID: CADE6F0C09F21B09
2 changed files with 26 additions and 69 deletions

View File

@ -1,41 +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-community_{$old,$new}
mv intellij-idea-community_{$old,$new}.orig.tar.gz
PACKAGE="intellij-idea-community"
DISTRIBUTION="disco"
# 4. Edit README.md to update latest version number.
sed "s/$old/$new/g" ./README.md > ./README.md.tmp
mv ./README.md.tmp ./README.md
main() {
old="$1"
new="$2"
name="$(git config --get user.name)"
email="$(git config --get user.email)"
echo "intellij-idea-community ($new-1) artful; urgency=low
git checkout -b version-"$new"
* Upstream Version $new
mv "$PACKAGE"_"$old" "$PACKAGE"_"$new"
mv "$PACKAGE"_"$old".orig.tar.gz "$PACKAGE"_"$new".orig.tar.gz
-- $author ($username) <$email> $now
" >> $tempfile
cd "$PACKAGE"_"$new" || exit
cat intellij-idea-community_$new/debian/changelog >> $tempfile
mv $tempfile intellij-idea-community_$new/debian/changelog
# 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" intellij-idea-community_$new/debian/preinst
sed -i "s/$old/$new/g" ./debian/preinst
(cd intellij-idea-community_$new/ && debuild -us -uc )
debuild -us -uc
rm intellij-idea-community_${old}*
cd ..
sudo dpkg -i intellij-idea-community_$new-1_all.deb
rm "$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-community"
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 "$PACKAGE"_"$old"-*
# disabled until it is only called with an specific argument
# sudo dpkg -i "$PACKAGE"_"$new"-1_all.deb
}
main "$1" "$2"