Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6A2EE7A8A for ; Fri, 9 Dec 2011 12:44:21 +0000 (UTC) Received: (qmail 45817 invoked by uid 500); 9 Dec 2011 12:44:21 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 45756 invoked by uid 500); 9 Dec 2011 12:44:20 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 45748 invoked by uid 99); 9 Dec 2011 12:44:20 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Dec 2011 12:44:20 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.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; Fri, 09 Dec 2011 12:44:19 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 6D1BE23888FD; Fri, 9 Dec 2011 12:43:58 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1212378 - /httpd/site/trunk/tools/release.sh Date: Fri, 09 Dec 2011 12:43:58 -0000 To: cvs@httpd.apache.org From: jim@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111209124358.6D1BE23888FD@eris.apache.org> Author: jim Date: Fri Dec 9 12:43:58 2011 New Revision: 1212378 URL: http://svn.apache.org/viewvc?rev=1212378&view=rev Log: Update for 2.4 and 2.5/trunk Modified: httpd/site/trunk/tools/release.sh Modified: httpd/site/trunk/tools/release.sh URL: http://svn.apache.org/viewvc/httpd/site/trunk/tools/release.sh?rev=1212378&r1=1212377&r2=1212378&view=diff ============================================================================== --- httpd/site/trunk/tools/release.sh (original) +++ httpd/site/trunk/tools/release.sh Fri Dec 9 12:43:58 2011 @@ -116,23 +116,37 @@ case "$1" in apu_tag="1.3.12" ;; - httpd-2.3) + httpd-2.4) ver_path="include/ap_release.h" ver_define="AP_SERVER_PATCHLEVEL" expected_major="2" - expected_minor="3" + expected_minor="4" + + branch="branches/2.4.x" + + apr_xxx_in_srclib=1 + apr_tag="1.4.5" + apu_tag="1.4.1" + separate_deps=1 + ;; + httpd-2.5) + ver_path="include/ap_release.h" + ver_define="AP_SERVER_PATCHLEVEL" + + expected_major="2" + expected_minor="5" branch="trunk" apr_xxx_in_srclib=1 apr_tag="1.4.5" - apu_tag="1.3.12" + apu_tag="1.4.1" separate_deps=1 ;; *) echo "ERROR: '$1' is an unknown project." >&2 - echo " choose one of: httpd-2.0, httpd-2.2, or httpd-2.3" >&2 + echo " choose one of: httpd-2.0, httpd-2.2, httpd-2.4 or httpd-2.5" >&2 exit 1 esac