You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ji...@apache.org on 2010/06/30 18:44:43 UTC

svn commit: r959371 - in /tomcat/tc5.5.x/trunk/build: sign.bat sign.sh tag.sh

Author: jim
Date: Wed Jun 30 16:44:43 2010
New Revision: 959371

URL: http://svn.apache.org/viewvc?rev=959371&view=rev
Log:
Unix rev's... mostly for pre and post efforts. Still
need Windoze to build the releases.

Added:
    tomcat/tc5.5.x/trunk/build/sign.sh   (with props)
    tomcat/tc5.5.x/trunk/build/tag.sh   (with props)
Modified:
    tomcat/tc5.5.x/trunk/build/sign.bat

Modified: tomcat/tc5.5.x/trunk/build/sign.bat
URL: http://svn.apache.org/viewvc/tomcat/tc5.5.x/trunk/build/sign.bat?rev=959371&r1=959370&r2=959371&view=diff
==============================================================================
--- tomcat/tc5.5.x/trunk/build/sign.bat (original)
+++ tomcat/tc5.5.x/trunk/build/sign.bat Wed Jun 30 16:44:43 2010
@@ -19,10 +19,8 @@ rem Example script to sign the entire re
 rem pass in your password as the first argument, then this script will
 rem sign all the files in the release directory
 
-rem todo - make one for unix as well, and avoid signing the .md5 files
-
 @echo off
-set VERSION=v5.5.29
+set VERSION=v5.5.30
 FOR /R %cd%\release\%VERSION% %%i in (*.tar.gz) do (
   echo Signing %%i
   echo %1|gpg --passphrase-fd 0 -a -b %%i 

Added: tomcat/tc5.5.x/trunk/build/sign.sh
URL: http://svn.apache.org/viewvc/tomcat/tc5.5.x/trunk/build/sign.sh?rev=959371&view=auto
==============================================================================
--- tomcat/tc5.5.x/trunk/build/sign.sh (added)
+++ tomcat/tc5.5.x/trunk/build/sign.sh Wed Jun 30 16:44:43 2010
@@ -0,0 +1,29 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+
+# Example script to sign the entire release
+# pass in your password as the first argument, then this script will
+# sign all the files in the release directory
+
+
+VERSION=v5.5.30
+cd $VERSION
+for i in *.tar.gz *.exe *.zip
+do
+  echo Signing $i
+  gpg --armor --detach-sign $i
+done
+

Propchange: tomcat/tc5.5.x/trunk/build/sign.sh
------------------------------------------------------------------------------
    svn:eol-style = native

Added: tomcat/tc5.5.x/trunk/build/tag.sh
URL: http://svn.apache.org/viewvc/tomcat/tc5.5.x/trunk/build/tag.sh?rev=959371&view=auto
==============================================================================
--- tomcat/tc5.5.x/trunk/build/tag.sh (added)
+++ tomcat/tc5.5.x/trunk/build/tag.sh Wed Jun 30 16:44:43 2010
@@ -0,0 +1,19 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+#  Expects one argument, the tag name (no quotes needed, e.g. TOMCAT_5_5_13)
+
+#  All - new layout
+svn copy https://svn.apache.org/repos/asf/tomcat/tc5.5.x/trunk https://svn.apache.org/repos/asf/tomcat/tc5.5.x/tags/$1 -m "Tagging Tomcat version $1."

Propchange: tomcat/tc5.5.x/trunk/build/tag.sh
------------------------------------------------------------------------------
    svn:eol-style = native



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org