You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
685 B
46 lines
685 B
#!/bin/bash
|
|
|
|
if [[ ! "$2" = "" ]]; then
|
|
debchange -v $1 "$2"
|
|
git commit -a -m "$2"
|
|
fi
|
|
|
|
opwd=`pwd`
|
|
cd /tmp
|
|
|
|
echo Checking out...
|
|
git clone $opwd
|
|
cd cpp-ethereum
|
|
|
|
if [ "$1" = "" ]; then
|
|
archdir="cpp-ethereum-$(date +%Y%m%d)"
|
|
else
|
|
archdir="cpp-ethereum-$1"
|
|
fi
|
|
archfile="$archdir.tar.bz2"
|
|
|
|
echo Cleaning backup files...
|
|
find . | grep \~ | xargs rm -f
|
|
|
|
echo Cleaning others...
|
|
rm release.sh
|
|
|
|
echo Cleaning versioning...
|
|
rm -rf .git .gitignore
|
|
|
|
echo Renaming directory...
|
|
cd ..
|
|
mv cpp-ethereum $archdir
|
|
|
|
echo Creating archive...
|
|
tar c $archdir | bzip2 -- > $archfile
|
|
|
|
echo Packaging...
|
|
cd "$archdir"
|
|
./package.sh
|
|
|
|
echo Cleaning up...
|
|
rm -rf /tmp/$archdir
|
|
mv /tmp/$archfile ~
|
|
|
|
echo Done.
|
|
|