Return-Path: Delivered-To: apmail-ant-dev-archive@www.apache.org Received: (qmail 78278 invoked from network); 16 Nov 2006 04:04:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 16 Nov 2006 04:04:56 -0000 Received: (qmail 31579 invoked by uid 500); 16 Nov 2006 04:05:06 -0000 Delivered-To: apmail-ant-dev-archive@ant.apache.org Received: (qmail 31261 invoked by uid 500); 16 Nov 2006 04:05:05 -0000 Mailing-List: contact dev-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list dev@ant.apache.org Received: (qmail 31250 invoked by uid 500); 16 Nov 2006 04:05:05 -0000 Received: (qmail 31247 invoked by uid 99); 16 Nov 2006 04:05:05 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 Nov 2006 20:05:05 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 Nov 2006 20:04:54 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 7F7B41A9846; Wed, 15 Nov 2006 20:04:23 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r475566 - in /ant/build/trunk: setup.sh vmbuild.conf Date: Thu, 16 Nov 2006 04:04:23 -0000 To: ant-cvs@apache.org From: antoine@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061116040423.7F7B41A9846@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: antoine Date: Wed Nov 15 20:04:22 2006 New Revision: 475566 URL: http://svn.apache.org/viewvc?view=rev&rev=475566 Log: try to get organized to fetch the optional dependencies Modified: ant/build/trunk/setup.sh ant/build/trunk/vmbuild.conf Modified: ant/build/trunk/setup.sh URL: http://svn.apache.org/viewvc/ant/build/trunk/setup.sh?view=diff&rev=475566&r1=475565&r2=475566 ============================================================================== --- ant/build/trunk/setup.sh (original) +++ ant/build/trunk/setup.sh Wed Nov 15 20:04:22 2006 @@ -31,4 +31,8 @@ svn co $nightly_list_svn $nightly_list_location mkdir $log_location mkdir $HOME/bin - +wget ${fetch_url} -O $HOME/${fetch_binary} +cd $HOME +gzip -cd $HOME/${fetch_binary} | tar xvf - +export ANT_HOME=${fetch_product} +$ANT_HOME/bin/ant -f $ANT_HOME/fetch.xml -Ddest.dir=${ant_root}/lib/optional Modified: ant/build/trunk/vmbuild.conf URL: http://svn.apache.org/viewvc/ant/build/trunk/vmbuild.conf?view=diff&rev=475566&r1=475565&r2=475566 ============================================================================== --- ant/build/trunk/vmbuild.conf (original) +++ ant/build/trunk/vmbuild.conf Wed Nov 15 20:04:22 2006 @@ -22,8 +22,11 @@ report_location="/home/antoine/build_report" time_stamp=`date +%Y%m%d` # time stamp in file names ant_build="/home/antoine/build" # Ant build directory -maven_snapshot_host='people.apache.org' # Maven snapshot host -maven_snapshot_user='antoine' -maven_snapshot_directory='/www/people.apache.org/repo/m1-snapshot-repository' log_url='http://people.apache.org/~antoine/ant-nightlies' notification_email='dev@ant.apache.org' +fetch_version=1.7.0RC1 +fetch_product=apache-ant-${fetch_version} +fetch_binary=${fetch_product}-bin.tar.gz +fetch_url='http://people.apache.org/dist/ant/v'${fetch_version}'/bin/'${fetch_binary} + + --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org