Skip to content
Snippets Groups Projects
Commit c28abde6 authored by Jan David Mol's avatar Jan David Mol
Browse files

Task #8887: Improved build_qpid script and upgraded to qpid 0.32

parent 11e3443b
No related branches found
No related tags found
No related merge requests found
#!/bin/bash #!/bin/bash -eu
QPIDINSTALLDIR=/opt/qpid
# set default configuation
: ${QPIDINSTALLDIR:=/opt/qpid}
: ${PROTONVERSION:=0.8}
: ${QPIDVERSION:=0.32}
# checkout sources for apache qpid and apache proton # checkout sources for apache qpid and apache proton
if [[ -x ~/sources/proton ]] if [[ -x ~/sources/proton ]]
then then
echo Skipping svn download because source directory exists echo Skipping svn download because source directory exists
else else
cd ~ mkdir -p ~/sources
mkdir -p sources
cd ~/sources cd ~/sources
svn co http://svn.apache.org/repos/asf/qpid/proton/tags/0.8/ proton svn export http://svn.apache.org/repos/asf/qpid/proton/tags/$PROTONVERSION/ proton
svn co http://svn.apache.org/repos/asf/qpid/tags/0.30/qpid/ qpid-0.30 svn export http://svn.apache.org/repos/asf/qpid/tags/$QPIDVERSION/qpid/ qpid-$QPIDVERSION
fi fi
# build and install proton libraries # build and install proton libraries
cd ~/sources/proton/ cd ~/sources/proton/
...@@ -33,7 +36,7 @@ fi ...@@ -33,7 +36,7 @@ fi
PROTONDIR=$QPIDINSTALLDIR/lib/cmake/Proton PROTONDIR=$QPIDINSTALLDIR/lib/cmake/Proton
# build and install QPID C++ broker and libraries # build and install QPID C++ broker and libraries
cd ~/sources/qpid-0.30/cpp cd ~/sources/qpid-$QPIDVERSION/cpp
rm -Rf ./BUILD rm -Rf ./BUILD
mkdir BUILD mkdir BUILD
cd BUILD cd BUILD
...@@ -46,7 +49,8 @@ make -j4 ...@@ -46,7 +49,8 @@ make -j4
make install make install
# setup config with 256MB storage per queue max. # setup config with 256MB storage per queue max.
cat >> $QPIDINSTALLDIR/etc/qpid/qpidd.conf << \EOF mkdir -p $QPIDINSTALLDIR/etc/qpid
cat > $QPIDINSTALLDIR/etc/qpid/qpidd.conf << \EOF
# max 256MB per queue persistent buffering # max 256MB per queue persistent buffering
num-jfiles=32 num-jfiles=32
...@@ -55,19 +59,19 @@ jfile-size-pgs=128 ...@@ -55,19 +59,19 @@ jfile-size-pgs=128
EOF EOF
# build and install QPID python generic libs # build and install QPID python generic libs
cd ~/sources/qpid-0.30/python cd ~/sources/qpid-$QPIDVERSION/python
./setup.py build ./setup.py build
./setup.py install --home=$QPIDINSTALLDIR ./setup.py install --home=$QPIDINSTALLDIR
cd .. cd ..
# build and install QPID QMF python libraries # build and install QPID QMF python libraries
cd ~/sources/qpid-0.30/extras/qmf cd ~/sources/qpid-$QPIDVERSION/extras/qmf
./setup.py build ./setup.py build
./setup.py install --home=$QPIDINSTALLDIR ./setup.py install --home=$QPIDINSTALLDIR
cd ../.. cd ../..
# build and install QPID tools # build and install QPID tools
cd ~/sources/qpid-0.30/tools cd ~/sources/qpid-$QPIDVERSION/tools
./setup.py build ./setup.py build
./setup.py install --home=$QPIDINSTALLDIR ./setup.py install --home=$QPIDINSTALLDIR
cd .. cd ..
...@@ -89,7 +93,7 @@ then ...@@ -89,7 +93,7 @@ then
echo "Applying patch on $QPIDINSTALLDIR/lib/python/qpid/messaging/driver.py for Python 2.4.x" echo "Applying patch on $QPIDINSTALLDIR/lib/python/qpid/messaging/driver.py for Python 2.4.x"
echo "--- $QPIDINSTALLDIR/lib/python/qpid/messaging/driver.py 2015-02-06 14:40:42.000000000 +0000" > /tmp/patch_qpid_driver_python2.4 echo "--- $QPIDINSTALLDIR/lib/python/qpid/messaging/driver.py 2015-02-06 14:40:42.000000000 +0000" > /tmp/patch_qpid_driver_python2.4
echo "+++ $QPIDINSTALLDIR/lib/python/qpid/messaging/driver.py 2015-02-06 15:37:54.000000000 +0000" >> /tmp/patch_qpid_driver_python2.4 echo "+++ $QPIDINSTALLDIR/lib/python/qpid/messaging/driver.py 2015-02-06 15:37:54.000000000 +0000" >> /tmp/patch_qpid_driver_python2.4
cat >> /tmp/patch_qpid_driver_python2.4 << \EOF cat > /tmp/patch_qpid_driver_python2.4 << \EOF
@@ -1050,10 +1050,16 @@ @@ -1050,10 +1050,16 @@
declare = props.get("x-declare", {}) declare = props.get("x-declare", {})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment