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
commitc7d17f884499b4d45f6be50c11941e6a63358a75 (patch)
tree47c8b464139c2f65794b25895bfe52462758efdd
parent8676af5727116521227695c0c29ff1a259c9aa7b (diff)
downloadqpid-python-c7d17f884499b4d45f6be50c11941e6a63358a75.tar.gz
QPID-2267: Added zipped up source of the WCF source code
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@890995 13f79535-47bb-0310-9956-ffa450edef68
-rwxr-xr-xbin/release.sh12
1 files changed, 11 insertions, 1 deletions
diff --git a/bin/release.sh b/bin/release.sh
index 67c37d9ace..b0b196fc8c 100755
--- a/bin/release.sh
+++ b/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