Return-Path: Delivered-To: apmail-james-server-dev-archive@www.apache.org Received: (qmail 62827 invoked from network); 18 Dec 2005 02:53:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 18 Dec 2005 02:53:59 -0000 Received: (qmail 609 invoked by uid 500); 18 Dec 2005 02:53:58 -0000 Delivered-To: apmail-james-server-dev-archive@james.apache.org Received: (qmail 579 invoked by uid 500); 18 Dec 2005 02:53:57 -0000 Mailing-List: contact server-dev-help@james.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "James Developers List" Reply-To: "James Developers List" Delivered-To: mailing list server-dev@james.apache.org Received: (qmail 568 invoked by uid 99); 18 Dec 2005 02:53:57 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 17 Dec 2005 18:53:57 -0800 X-ASF-Spam-Status: No, hits=1.0 required=10.0 tests=FORGED_MUA_OIMO X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [66.112.202.2] (HELO mail.devtech.com) (66.112.202.2) by apache.org (qpsmtpd/0.29) with SMTP; Sat, 17 Dec 2005 18:53:54 -0800 Received: from localhost ([127.0.0.1]) by mail.devtech.com (JAMES SMTP Server 3.0-dev) with SMTP ID 945 for ; Sat, 17 Dec 2005 21:53:17 -0500 (EST) From: "Noel J. Bergman" To: "James Developers List" Subject: RE: Next release plans Date: Sat, 17 Dec 2005 21:54:09 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 In-Reply-To: <140e061f05090208376175587b@mail.gmail.com> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Serge Knystautas wrote: > since you [have] unique access rights and because our release > process is not published, it means that you have a third > factor in the decision making process. If you have time to > explain what permissions Stefano needs and how to make the > release, I would appreciate it. Huh? What unique access? I build, I test, I roll the distribution using the Ant script, I sign, I upload. This was my old script, from when we still used Java 1.3.1 to compile the classes, for version 2.2.0: #!/bin/sh cd ~/ASF/jakarta-james-v2/ export JAVA_HOME=/usr/IBMJava2-131 ./build.sh clean ./build.sh compile export JAVA_HOME=/usr/local/java ./build.sh website ./build.sh dist pushd dist/james-2.2.0/downloads cd bin mv james-binary-2.2.0.tar.gz james-2.2.0.tar.gz mv james-binary-2.2.0.zip james-2.2.0.zip for i in *.zip; do gpg --output $i.asc --detach-sig --armor $i; done for i in *.gz; do gpg --output $i.asc --detach-sig --armor $i; done for i in *.sar; do gpg --output $i.asc --detach-sig --armor $i; done cd ../src for i in *.zip; do gpg --output $i.asc --detach-sig --armor $i; done for i in *.gz; do gpg --output $i.asc --detach-sig --armor $i; done cd .. mv src source mv bin binaries ln -s source/james-2.2.0-src.tar.gz james-2.2.0-src.tar.gz ln -s source/james-2.2.0-src.zip james-2.2.0-src.zip ln -s james-2.2.0-src.tar.gz james-current-src.tar.gz ln -s james-2.2.0-src.zip james-current-src.zip ln -s source/james-with-phoenix-2.2.0-src.tar.gz james-with-phoenix-2.2.0-src.tar.gz ln -s source/james-with-phoenix-2.2.0-src.zip james-with-phoenix-2.2.0-src.zip ln -s james-with-phoenix-2.2.0-src.tar.gz james-with-phoenix-current-src.tar.gz ln -s james-with-phoenix-2.2.0-src.zip james-with-phoenix-current-src.zip ln -s binaries/james-2.2.0.tar.gz james-2.2.0.tar.gz ln -s binaries/james-2.2.0.zip james-2.2.0.zip ln -s binaries/james-MailetSDK-2.2.0.tar.gz james-MailetSDK-2.2.0.tar.gz ln -s binaries/james-MailetSDK-2.2.0.zip james-MailetSDK-2.2.0.zip ln -s james-MailetSDK-2.2.0.tar.gz james-MailetSDK-current.tar.gz ln -s james-MailetSDK-2.2.0.zip james-MailetSDK-current.zip ln -s james-2.2.0.tar.gz james-current.tar.gz ln -s james-2.2.0.zip james-current.zip rsync -avz -e ssh . www.apache.org:~noel/james popd About the only unique thing is that only Danny and I have our keys in the Apache WoT. --- Noel --------------------------------------------------------------------- To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org For additional commands, e-mail: server-dev-help@james.apache.org