Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 8493 invoked from network); 26 Sep 2005 21:23:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 26 Sep 2005 21:23:47 -0000 Received: (qmail 5687 invoked by uid 500); 26 Sep 2005 21:23:47 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 5637 invoked by uid 500); 26 Sep 2005 21:23:46 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 5618 invoked by uid 99); 26 Sep 2005 21:23:46 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 26 Sep 2005 14:23:46 -0700 Received: (qmail 8405 invoked by uid 65534); 26 Sep 2005 21:23:26 -0000 Message-ID: <20050926212326.8403.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r291750 - /apr/dist/trunk/tools/release.sh Date: Mon, 26 Sep 2005 21:23:25 -0000 To: commits@apr.apache.org From: wrowe@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: wrowe Date: Mon Sep 26 14:23:23 2005 New Revision: 291750 URL: http://svn.apache.org/viewcvs?rev=291750&view=rev Log: No more .Z - it's gone, kaput. Fix some line wrapping and we are back in business. Modified: apr/dist/trunk/tools/release.sh Modified: apr/dist/trunk/tools/release.sh URL: http://svn.apache.org/viewcvs/apr/dist/trunk/tools/release.sh?rev=291750&r1=291749&r2=291750&view=diff ============================================================================== --- apr/dist/trunk/tools/release.sh (original) +++ apr/dist/trunk/tools/release.sh Mon Sep 26 14:23:23 2005 @@ -14,8 +14,8 @@ # The SIGNING-USER is an optional name of the key that you'll be signing the # release with. # -# The APR-SOURCE is an optional path to the local APR source directory required -# for apr-util's buildconf to find the required files. +# The APR-SOURCE is an optional path to the local APR source directory +# required for apr-util's buildconf to find the required files. # # # This script will run the appropriate commands to prepare and construct the @@ -77,13 +77,15 @@ echo "Starting SVN export of ${repos_name} to $dirname ..." echo "" -#cvs -d :pserver:anoncvs@cvs.apache.org:/home/cvspublic export -r ${TAG} -d ${dirname} ${repos_name} > /dev/null || exit 1 -svn export http://svn.apache.org/repos/asf/apr/${repos_name}/tags/${TAG} ${dirname} +svn export http://svn.apache.org/repos/asf/apr/${repos_name}/tags/${TAG} \ + ${dirname} echo $split echo "" echo "Starting SVN export of ${repos_name} to ${dirname}-win32 ..." echo "" -svn export --native-eol CRLF http://svn.apache.org/repos/asf/apr/${repos_name}/tags/${TAG} ${dirname}-win32 +svn export --native-eol CRLF \ + http://svn.apache.org/repos/asf/apr/${repos_name}/tags/${TAG} \ + ${dirname}-win32 echo $split echo "" @@ -116,17 +118,17 @@ echo $split echo "" -echo "Building the tarball, .gz, .bz2, and .Z files ..." +echo "Building the tarball, .gz, .bz2, and files ..." echo "" tar cf ${dirname}.tar ${dirname} gzip -9 --to-stdout ${dirname}.tar > ${dirname}.tar.gz bzip2 -9 -c ${dirname}.tar > ${dirname}.tar.bz2 -compress ${dirname}.tar +rm ${dirname}.tar echo $split echo "" -echo "Building the Windows Zip file ..." +echo "Building the windows zip file ..." echo "" mv ${dirname} ${dirname}-unix mv ${dirname}-win32 ${dirname} @@ -143,7 +145,7 @@ rm -rf ${dirname} rm -rf ${dirname}-win32 -ARCH_FORMATS="tar.gz tar.bz2 tar.Z zip" +ARCH_FORMATS="tar.gz tar.bz2 zip" if test -x "`which pgp 2> /dev/null`"; then if test -n "$SIGNING_USER"; then