Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RadioObservatory
LOFAR
Commits
c28abde6
Commit
c28abde6
authored
8 years ago
by
Jan David Mol
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
LCS/MessageBus/qpid/local/sbin/build_qpid
+16
-12
16 additions, 12 deletions
LCS/MessageBus/qpid/local/sbin/build_qpid
with
16 additions
and
12 deletions
LCS/MessageBus/qpid/local/sbin/build_qpid
+
16
−
12
View file @
c28abde6
#!/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", {})
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment