Return-Path: Delivered-To: apmail-continuum-commits-archive@www.apache.org Received: (qmail 11928 invoked from network); 8 Jan 2009 15:13:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 8 Jan 2009 15:13:58 -0000 Received: (qmail 9567 invoked by uid 500); 8 Jan 2009 15:13:58 -0000 Delivered-To: apmail-continuum-commits-archive@continuum.apache.org Received: (qmail 9540 invoked by uid 500); 8 Jan 2009 15:13:58 -0000 Mailing-List: contact commits-help@continuum.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@continuum.apache.org Delivered-To: mailing list commits@continuum.apache.org Received: (qmail 9531 invoked by uid 99); 8 Jan 2009 15:13:57 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jan 2009 07:13:57 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED 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; Thu, 08 Jan 2009 15:13:50 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 3845D23888A5; Thu, 8 Jan 2009 07:13:30 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r732713 - /continuum/branches/continuum-1.2.x/release-script.sh Date: Thu, 08 Jan 2009 15:13:30 -0000 To: commits@continuum.apache.org From: olamy@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090108151330.3845D23888A5@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: olamy Date: Thu Jan 8 07:13:29 2009 New Revision: 732713 URL: http://svn.apache.org/viewvc?rev=732713&view=rev Log: add a script to help for release Added: continuum/branches/continuum-1.2.x/release-script.sh (with props) Added: continuum/branches/continuum-1.2.x/release-script.sh URL: http://svn.apache.org/viewvc/continuum/branches/continuum-1.2.x/release-script.sh?rev=732713&view=auto ============================================================================== --- continuum/branches/continuum-1.2.x/release-script.sh (added) +++ continuum/branches/continuum-1.2.x/release-script.sh Thu Jan 8 07:13:29 2009 @@ -0,0 +1,42 @@ +#!/usr/bin/sh +## $Id$ ## +#$1 version +#$2 staging repo path on p.a.o + +set -x +if test $# -ne 2 +then + echo 'usage release-script.sh version stagingRepoPath on p.a.o' + exit +fi +export VER=$1 +export STAGE_REPO=$2 + +cd /www/people.apache.org/builds/continuum/$1 + +find $STAGE_REPO -name "*.zip*" -exec cp {} . \; +find $STAGE_REPO -name "*.tar.gz*" -exec cp {} . \; +find $STAGE_REPO -name "*.war*" -exec cp {} . \; +find . -name "*.asc.*" -exec rm {} \; + +mv continuum-$VER.zip apache-continuum-$VER-src.zip +mv continuum-$VER.zip.md5 apache-continuum-$VER-src.zip.md5 +mv continuum-$VER.zip.sha1 apache-continuum-$VER-src.zip.sha1 +mv continuum-$VER.zip.asc apache-continuum-$VER-src.zip.asc + +mv continuum-jetty-$VER-bin.tar.gz apache-continuum-$VER-bin.tar.gz +mv continuum-jetty-$VER-bin.tar.gz.md5 apache-continuum-$VER-bin.tar.gz.md5 +mv continuum-jetty-$VER-bin.tar.gz.sha1 apache-continuum-$VER-bin.tar.gz.sha1 +mv continuum-jetty-$VER-bin.tar.gz.asc apache-continuum-$VER-bin.tar.gz.asc + +mv continuum-jetty-$VER-bin.zip apache-continuum-$VER-bin.zip +mv continuum-jetty-$VER-bin.zip.md5 apache-continuum-$VER-bin.zip.md5 +mv continuum-jetty-$VER-bin.zip.sha1 apache-continuum-$VER-bin.zip.sha1 +mv continuum-jetty-$VER-bin.zip.asc apache-continuum-$VER-bin.zip.asc + +mv continuum-webapp-$VER.war apache-continuum-$VER.war +mv continuum-webapp-$VER.war.asc apache-continuum-$VER.war.asc +mv continuum-webapp-$VER.war.md5 apache-continuum-$VER.war.md5 +mv continuum-webapp-$VER.war.sha1 apache-continuum-$VER.war.sha1 + +echo 'GREAT :-) ' Propchange: continuum/branches/continuum-1.2.x/release-script.sh ------------------------------------------------------------------------------ svn:eol-style = native Propchange: continuum/branches/continuum-1.2.x/release-script.sh ------------------------------------------------------------------------------ svn:executable = * Propchange: continuum/branches/continuum-1.2.x/release-script.sh ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision