You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gump.apache.org by le...@apache.org on 2004/11/17 02:30:58 UTC

svn commit: rev 76083 - in gump/trunk: . bin

Author: leosimons
Date: Tue Nov 16 17:30:57 2004
New Revision: 76083

Added:
   gump/trunk/bin/PrintPath   (contents, props changed)
   gump/trunk/build   (contents, props changed)
Log:
Start friendly shell script interface

Added: gump/trunk/bin/PrintPath
==============================================================================
--- (empty file)
+++ gump/trunk/bin/PrintPath	Tue Nov 16 17:30:57 2004
@@ -0,0 +1,131 @@
+#!/bin/sh
+#
+# Copyright 1999-2004 The Apache Software Foundation
+#
+# Licensed 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.
+#
+#
+# Look for program[s] somewhere in $PATH.
+#
+# Options:
+#  -s
+#    Do not print out full pathname. (silent)
+#  -pPATHNAME
+#    Look in PATHNAME instead of $PATH
+#
+# Usage:
+#  PrintPath [-s] [-pPATHNAME] program [program ...]
+#
+# Initially written by Jim Jagielski for the Apache configuration mechanism
+#  (with kudos to Kernighan/Pike)
+#
+# This version found in Apache Portable Runtime CVS under "build"
+
+##
+# Some "constants"
+##
+pathname=$PATH
+echo="yes"
+
+##
+# Find out what OS we are running for later on
+##
+os=`(uname) 2>/dev/null`
+
+##
+# Parse command line
+##
+for args in $*
+do
+    case $args in
+	-s  ) echo="no" ;;
+	-p* ) pathname="`echo $args | sed 's/^..//'`" ;;
+	*   ) programs="$programs $args" ;;
+    esac
+done
+
+##
+# Now we make the adjustments required for OS/2 and everyone
+# else :)
+#
+# First of all, all OS/2 programs have the '.exe' extension.
+# Next, we adjust PATH (or what was given to us as PATH) to
+# be whitespace separated directories.
+# Finally, we try to determine the best flag to use for
+# test/[] to look for an executable file. OS/2 just has '-r'
+# but with other OSs, we do some funny stuff to check to see
+# if test/[] knows about -x, which is the prefered flag.
+##
+
+if [ "x$os" = "xOS/2" ]
+then
+    ext=".exe"
+    pathname=`echo -E $pathname |
+     sed 's/^;/.;/
+	  s/;;/;.;/g
+	  s/;$/;./
+	  s/;/ /g
+	  s/\\\\/\\//g' `
+    test_exec_flag="-r"
+else
+    ext=""	# No default extensions
+    pathname=`echo $pathname |
+     sed 's/^:/.:/
+	  s/::/:.:/g
+	  s/:$/:./
+	  s/:/ /g' `
+    # Here is how we test to see if test/[] can handle -x
+    testfile="pp.t.$$"
+
+    cat > $testfile <<ENDTEST
+#!/bin/sh
+if [ -x / ] || [ -x /bin ] || [ -x /bin/ls ]; then
+    exit 0
+fi
+exit 1
+ENDTEST
+
+    if `/bin/sh $testfile 2>/dev/null`; then
+	test_exec_flag="-x"
+    else
+	test_exec_flag="-r"
+    fi
+    rm -f $testfile
+fi
+
+for program in $programs
+do
+    for path in $pathname
+    do
+	if [ $test_exec_flag $path/${program}${ext} ] && \
+	   [ ! -d $path/${program}${ext} ]; then
+	    if [ "x$echo" = "xyes" ]; then
+		echo $path/${program}${ext}
+	    fi
+	    exit 0
+	fi
+
+# Next try without extension (if one was used above)
+	if [ "x$ext" != "x" ]; then
+            if [ $test_exec_flag $path/${program} ] && \
+               [ ! -d $path/${program} ]; then
+                if [ "x$echo" = "xyes" ]; then
+                    echo $path/${program}
+                fi
+                exit 0
+            fi
+        fi
+    done
+done
+exit 1
+

Added: gump/trunk/build
==============================================================================
--- (empty file)
+++ gump/trunk/build	Tue Nov 16 17:30:57 2004
@@ -0,0 +1,155 @@
+#!/bin/sh
+#
+# Copyright 2004 The Apache Software Foundation
+#
+# Licensed 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.
+#
+
+# Documentation for the different commands.
+function usage
+{
+  case $1 in
+    site)
+      echo '
+      Use Apache Forrest to build the documentation.
+
+      Usage:
+        $0 site
+'
+      ;;
+    site-publish)
+      echo '
+      Use svn and ssh to publish the site.
+
+      Usage:
+        $0 site-publish
+'
+      ;;
+    *)
+      echo '
+      Utility commandline interface for Gump.
+     
+      Usage:
+        $0 command [opts ...]
+     
+      Available commands are:
+     
+        help -- print this information
+        site -- use Apache Forrest to build the documentation
+        site-publish -- use SVN and SSH to publish the site to the website
+     
+      Run
+     
+        $0 help [command]
+     
+      for more information about a particular command.
+    '
+      ;;
+  esac
+}
+
+function error
+{
+  echo "$0: $1"
+  usage
+  exit 1
+}
+
+function delegate
+{
+  local called_as=$0
+  local command=$1
+  shift
+
+  if [[ -z "$command" ]]; then
+    error "Illegal command '$command'"
+  fi
+
+  # delegate to the command handling functions
+  case $command in
+
+    site)
+      site $@
+      ;;
+    site-publish)
+      site_publish $@
+      ;;
+    help | usage)
+      usage $@
+      ;;
+    '')
+      error "Please specify a command"
+      ;;
+    *)
+      error "Unknown command '$command'"
+      ;;
+  esac
+}
+
+# Use Apache Forrest to build the documentation.
+function site
+{
+  local forrest=`bin/PrintPath forrest forrest.sh forrest.bat`
+  if [[ -z "$forrest" ]]; then
+    error 'Cannot find forrest. Please retrieve it from 
+
+  http://forrest.apache.org/mirrors.cgi
+  
+and install it.'
+  fi
+
+  $forrest
+}
+
+# Use svn and ssh to publish the site.
+
+
+function site_publish
+{
+  local svncmd=${SVN:-svn};
+  local svn=`bin/PrintPath $svncmd`;
+  if [[ -z "$svn" ]]; then
+     error 'Cannot find svn. Please retrieve it from 
+
+     http://subversion.tigris.org/
+     
+and install it.'
+  fi
+
+  local sshcmd=${SSH:-ssh};
+  local ssh=`bin/PrintPath $sshcmd`;
+  if [[ -z "$ssh" ]]; then
+     error 'Cannot find ssh. Please retrieve it from 
+
+        http://www.openssh.org/
+        
+and install it.'
+  fi
+  $svn commit -m "Publishing site..." build/site
+  $ssh minotaur.apache.org '/home/leosimons/bin/gump-site-up.sh'
+}
+
+# Figure out then run the appropriate function
+delegate $@
+
+#option=$@
+#previous_argument=
+#for option
+#do
+   # get argument to options with arguments
+#  if test -n "$previous_argument"; then
+#    eval "$previous_argument=\$option"
+#    previous_argument=
+#    continue
+#  fi
+#done
\ No newline at end of file