Return-Path: Delivered-To: apmail-qpid-commits-archive@www.apache.org Received: (qmail 9165 invoked from network); 15 Dec 2009 20:17:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 15 Dec 2009 20:17:23 -0000 Received: (qmail 19427 invoked by uid 500); 15 Dec 2009 20:17:23 -0000 Delivered-To: apmail-qpid-commits-archive@qpid.apache.org Received: (qmail 19400 invoked by uid 500); 15 Dec 2009 20:17:23 -0000 Mailing-List: contact commits-help@qpid.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@qpid.apache.org Delivered-To: mailing list commits@qpid.apache.org Received: (qmail 19391 invoked by uid 99); 15 Dec 2009 20:17:23 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Dec 2009 20:17:23 +0000 X-ASF-Spam-Status: No, hits=-2.6 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Dec 2009 20:17:19 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id BA64623888EC; Tue, 15 Dec 2009 20:16:58 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r890970 - /qpid/trunk/qpid/bin/release.sh Date: Tue, 15 Dec 2009 20:16:58 -0000 To: commits@qpid.apache.org From: astitcher@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091215201658.BA64623888EC@eris.apache.org> Author: astitcher Date: Tue Dec 15 20:16:58 2009 New Revision: 890970 URL: http://svn.apache.org/viewvc?rev=890970&view=rev Log: QPID-2277: Revert "Removed dotnet from release process" Modified: qpid/trunk/qpid/bin/release.sh Modified: qpid/trunk/qpid/bin/release.sh URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/bin/release.sh?rev=890970&r1=890969&r2=890970&view=diff ============================================================================== --- qpid/trunk/qpid/bin/release.sh (original) +++ qpid/trunk/qpid/bin/release.sh Tue Dec 15 20:16:58 2009 @@ -36,6 +36,7 @@ echo "--all |-a : Generate all artefacts" echo "--source|-e : Generate the source artefact" echo "--cpp |-c : Generate the CPP artefacts" + echo "--dotnet|-d : Generate the dotnet artefacts" echo "--java |-j : Generate the java artefacts" echo "--ruby |-r : Generate the ruby artefacts" echo "--python|-p : Generate the python artefacts" @@ -81,6 +82,9 @@ --cpp|-c) CPP="CPP" ;; + --dotnet|-d) + DOTNET="DOTNET" + ;; --java|-j) JAVA="JAVA" ;; @@ -130,9 +134,10 @@ echo VER:$VER # If nothing is specified then do it all -if [ -z "${CLEAN}${PREPARE}${CPP}${JAVA}${RUBY}${PYTHON}${SOURCE}${SIGN}${UPLOAD}" ] ; then +if [ -z "${CLEAN}${PREPARE}${CPP}${DOTNET}${JAVA}${RUBY}${PYTHON}${SOURCE}${SIGN}${UPLOAD}" ] ; then PREPARE="PREPARE" CPP="CPP" + DOTNET="DOTNET" JAVA="JAVA" RUBY="RUBY" PYTHON="PYTHON" @@ -204,6 +209,23 @@ cp qpid-${VER}/java/management/client/release/*.tar.gz artifacts/qpid-management-client-${VER}.tar.gz fi +if [ "DOTNET" == "$DOTNET" ] ; then + pushd qpid-${VER}/dotnet + cd Qpid.Common + ant + cd .. + ./build-nant-release mono-2.0 + + cd client-010/gentool + ant + cd .. + nant -t:mono-2.0 release-pkg + popd + + cp qpid-${VER}/dotnet/bin/mono-2.0/release/*.zip artifacts/qpid-dotnet-0-8-${VER}.zip + cp qpid-${VER}/dotnet/client-010/bin/mono-2.0/debug/*.zip artifacts/qpid-dotnet-0-10-${VER}.zip +fi + if [ "SIGN" == "$SIGN" ] ; then pushd artifacts sha1sum *.zip *.gz *.svnversion > SHA1SUM --------------------------------------------------------------------- Apache Qpid - AMQP Messaging Implementation Project: http://qpid.apache.org Use/Interact: mailto:commits-subscribe@qpid.apache.org