mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
2f409230a5
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6544 b45a01b8-16f6-495d-af2f-9b41ad6348cc
124 lines
3.3 KiB
Bash
Executable File
124 lines
3.3 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
###################### PARAMETERS ####################
|
|
version="0.5.4"
|
|
svnpath="svn://csoler@svn.code.sf.net/p/retroshare/code/"
|
|
workdir=retroshare-$version
|
|
use_gxs="Y" # comment out to compile without gxs
|
|
bubba3="Y" # comment out to compile for bubba3
|
|
######################################################
|
|
|
|
echo This script is going to build the debian source package for RetroShare, from the svn.
|
|
|
|
if test -d "$workdir" ; then
|
|
echo Please remove the $workdir directory first.
|
|
exit
|
|
fi
|
|
|
|
svn update
|
|
|
|
if test "$1" = "" ; then
|
|
echo attempting to get svn revision number...
|
|
svn=`svn info | grep 'Revision:' | cut -d\ -f2`
|
|
else
|
|
echo svn number has been provided. Forcing update.
|
|
svn="$1"
|
|
fi
|
|
|
|
echo done.
|
|
version="$version"."$svn"
|
|
echo got version number $version.
|
|
echo Please check that the changelog is up to date.
|
|
echo Hit ENTER is this is this correct. Otherwise hit Ctrl+C
|
|
read tmp
|
|
|
|
packages="."
|
|
|
|
echo SVN number is $svn
|
|
echo version is $version
|
|
|
|
echo Extracting base archive...
|
|
|
|
mkdir -p $workdir/src
|
|
|
|
if test "$use_gxs" = "Y" ; then
|
|
cp -r debian.gxs $workdir/debian
|
|
else
|
|
cp -r debian $workdir/debian
|
|
fi
|
|
cp -r data $workdir/src/
|
|
|
|
echo Checking out latest snapshot in libbitdht...
|
|
cd $workdir/src/
|
|
svn co -r$svn $svnpath/trunk/ .
|
|
cd ../..
|
|
|
|
# VOIP tweak
|
|
cp $workdir/src/retroshare-gui/src/gui/chat/PopupChatDialog.ui $workdir/src/plugins/VOIP/gui/PopupChatDialog.ui
|
|
|
|
# handling of libssh-0.5.4
|
|
|
|
wget https://red.libssh.org/attachments/download/41/libssh-0.5.4.tar.gz
|
|
cd $workdir
|
|
tar zxvf ../libssh-0.5.4.tar.gz
|
|
cd ..
|
|
|
|
if ! test "$specific" = "" ; then
|
|
cd $workdir
|
|
git clone https://github.com/sqlcipher/sqlcipher.git
|
|
cd ..
|
|
fi
|
|
|
|
# cleaning up protobof generated files
|
|
|
|
\rm -f $workdir/src/retroshare-nogui/src/rpc/proto/gencc/*.pb.h
|
|
\rm -f $workdir/src/retroshare-nogui/src/rpc/proto/gencc/*.pb.cc
|
|
|
|
echo Setting version numbers...
|
|
|
|
# setup version numbers
|
|
cat $workdir/src/libretroshare/src/util/rsversion.h | grep -v SVN_REVISION | grep -v SVN_REVISION_NUMBER > /tmp/toto2342
|
|
echo \#define SVN_REVISION \"Revision: "$version" date : `date`\" >> /tmp/toto2342
|
|
echo \#define SVN_REVISION_NUMBER $svn >> /tmp/toto2342
|
|
cp /tmp/toto2342 $workdir/src/libretroshare/src/util/rsversion.h
|
|
|
|
cat $workdir/src/retroshare-gui/src/util/rsversion.h | grep -v GUI_REVISION | grep -v SVN_REVISION_NUMBER > /tmp/toto4463
|
|
echo \#define GUI_REVISION \"Revision: "$version" date : `date`\" >> /tmp/toto4463
|
|
echo \#define SVN_REVISION_NUMBER $svn >> /tmp/toto4463
|
|
cp /tmp/toto4463 $workdir/src/retroshare-gui/src/util/rsversion.h
|
|
|
|
# Various cleaning
|
|
|
|
echo Cleaning...
|
|
find $workdir -name ".svn" -exec rm -rf {} \; # remove all svn repositories
|
|
|
|
#echo Calling debuild...
|
|
#cat $workdir/debian/control | sed -e s/XXXXXX/"$version"/g > $workdir/debian/control.tmp
|
|
#mv -f $workdir/debian/control.tmp $workdir/debian/control
|
|
|
|
cd $workdir
|
|
|
|
#for i in wheezy; do
|
|
#for i in sid ; do
|
|
#for i in precise; do
|
|
#for i in natty precise lucid quantal raring; do
|
|
|
|
for i in sid squeeze; do
|
|
echo copying changelog for $i
|
|
cat ../changelog | sed -e s/XXXXXX/"$svn"/g | sed -e s/YYYYYY/"$i"/g > debian/changelog
|
|
|
|
if test "$i" = "lucid" ; then
|
|
cp ../control.ubuntu_lucid debian/control
|
|
elif test "$bubba3" = "Y" ; then
|
|
cp ../control.squeeze_bubba3 debian/control
|
|
else
|
|
cp ../debian/control debian/control
|
|
fi
|
|
|
|
# This is the key for "Cyril Soler <csoler@sourceforge.net>"
|
|
debuild -S -kC737CA98
|
|
done
|
|
|
|
|
|
|