summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2009-12-15 21:18:24 +0000
committerAndrew Stitcher <astitcher@apache.org>2009-12-15 21:18:24 +0000
commitabbf58425194561319f40fb92affd96a36881d19 (patch)
tree1e00aedffd0be2641d0d1e935a9e47ee6694709f
parent730e18fc76486689b9d6e105d285d69eb5eb74c2 (diff)
downloadqpid-python-abbf58425194561319f40fb92affd96a36881d19.tar.gz
QPID-2267: Added zipped up source of the WCF source code
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@890995 13f79535-47bb-0310-9956-ffa450edef68
-rwxr-xr-xqpid/bin/release.sh12
1 files changed, 11 insertions, 1 deletions
diff --git a/qpid/bin/release.sh b/qpid/bin/release.sh
index 67c37d9ace..b0b196fc8c 100755
--- a/qpid/bin/release.sh
+++ b/qpid/bin/release.sh
@@ -40,6 +40,7 @@ usage()
echo "--java |-j : Generate the java artefacts"
echo "--ruby |-r : Generate the ruby artefacts"
echo "--python|-p : Generate the python artefacts"
+ echo "--wcf |-w : Generate the WCF artefacts"
echo "--source|-e : Generate the source artefact"
echo "--sign |-s : Sign generated artefacts"
echo "--upload|-u : Upload the artifacts directory to people.apache.org as qpid-\$VER"
@@ -77,6 +78,7 @@ for arg in $* ; do
JAVA="JAVA"
RUBY="RUBY"
PYTHON="PYTHON"
+ WCF="WCF"
SOURCE="SOURCE"
;;
--cpp|-c)
@@ -94,6 +96,9 @@ for arg in $* ; do
--python|-p)
PYTHON="PYTHON"
;;
+ --wcf|-w)
+ WCF="WCF"
+ ;;
--source|-e)
SOURCE="SOURCE"
;;
@@ -134,13 +139,14 @@ echo REV:$REV
echo VER:$VER
# If nothing is specified then do it all
-if [ -z "${CLEAN}${PREPARE}${CPP}${DOTNET}${JAVA}${RUBY}${PYTHON}${SOURCE}${SIGN}${UPLOAD}" ] ; then
+if [ -z "${CLEAN}${PREPARE}${CPP}${DOTNET}${JAVA}${RUBY}${PYTHON}${WCF}${SOURCE}${SIGN}${UPLOAD}" ] ; then
PREPARE="PREPARE"
CPP="CPP"
DOTNET="DOTNET"
JAVA="JAVA"
RUBY="RUBY"
PYTHON="PYTHON"
+ WCF="WCF"
SOURCE="SOURCE"
SIGN="SIGN"
@@ -186,6 +192,10 @@ if [ "PYTHON" == "$PYTHON" ] ; then
tar -czf artifacts/qpid-python-${VER}.tar.gz qpid-${VER}/python qpid-${VER}/specs
fi
+if [ "WCF" == "$WCF" ] ; then
+ zip -rq artifacts/qpid-wcf-${VER}.zip qpid-${VER}/wcf
+fi
+
if [ "CPP" == "$CPP" ] ; then
pushd qpid-${VER}/cpp
./bootstrap