[rhmessaging-commits] rhmessaging commits: r4373 - in mgmt/trunk: etc and 1 other directory.

rhmessaging-commits at lists.jboss.org rhmessaging-commits at lists.jboss.org
Fri Oct 8 10:33:13 EDT 2010


Author: justi9
Date: 2010-10-08 10:33:13 -0400 (Fri, 08 Oct 2010)
New Revision: 4373

Added:
   mgmt/trunk/Profile
   mgmt/trunk/etc/Profile.bash
   mgmt/trunk/etc/Profile.tcsh
   mgmt/trunk/etc/Profile.zsh
Removed:
   mgmt/trunk/etc/devel.profile
   mgmt/trunk/etc/devel.profile.tcsh
   mgmt/trunk/etc/devel.profile.zsh
Log:
Rename devel env profile script to Profile, and link to it from the top directory

Added: mgmt/trunk/Profile
===================================================================
--- mgmt/trunk/Profile	                        (rev 0)
+++ mgmt/trunk/Profile	2010-10-08 14:33:13 UTC (rev 4373)
@@ -0,0 +1 @@
+link etc/Profile.bash
\ No newline at end of file


Property changes on: mgmt/trunk/Profile
___________________________________________________________________
Name: svn:special
   + *

Copied: mgmt/trunk/etc/Profile.bash (from rev 4372, mgmt/trunk/etc/devel.profile)
===================================================================
--- mgmt/trunk/etc/Profile.bash	                        (rev 0)
+++ mgmt/trunk/etc/Profile.bash	2010-10-08 14:33:13 UTC (rev 4373)
@@ -0,0 +1,28 @@
+export DEVEL_HOME="$PWD"
+export DEVEL_MODULES="mint cumin basil parsley wooly rosemary"
+
+if [[ -z "$DEVEL_ORIGINAL_PATH" ]]; then
+    export DEVEL_ORIGINAL_PATH="$PATH"
+fi
+
+export PATH="${DEVEL_HOME}/bin:${DEVEL_ORIGINAL_PATH}"
+
+if [[ -z "$DEVEL_ORIGINAL_PYTHONPATH" ]]; then
+    export DEVEL_ORIGINAL_PYTHONPATH="$PYTHONPATH"
+fi
+
+export PYTHONPATH="${DEVEL_HOME}/lib/python:${HOME}/lib/python:${DEVEL_ORIGINAL_PYTHONPATH}"
+
+for module in $DEVEL_MODULES; do
+    echo "Configuring module '${module}'"
+
+    pushd "${DEVEL_HOME}/${module}" > /dev/null
+
+    if [[ -f "etc/module.profile" ]]; then
+        source "etc/module.profile"
+    else
+        source "../etc/module.profile"
+    fi
+
+    popd > /dev/null
+done

Copied: mgmt/trunk/etc/Profile.tcsh (from rev 4372, mgmt/trunk/etc/devel.profile.tcsh)
===================================================================
--- mgmt/trunk/etc/Profile.tcsh	                        (rev 0)
+++ mgmt/trunk/etc/Profile.tcsh	2010-10-08 14:33:13 UTC (rev 4373)
@@ -0,0 +1,39 @@
+setenv DEVEL_HOME "$PWD"
+set DEVEL_MODULES=(mint cumin basil parsley wooly)
+
+# PYTHONPATH
+
+if ($?PYTHONPATH) then
+    if (! $?DEVEL_ORIGINAL_PYTHONPATH) then
+        setenv DEVEL_ORIGINAL_PYTHONPATH "$PYTHONPATH"
+    endif
+else
+    setenv DEVEL_ORIGINAL_PYTHONPATH
+endif
+
+set pypath="$DEVEL_HOME"/lib/python:"$HOME"/lib/python:"$DEVEL_ORIGINAL_PYTHONPATH"
+
+foreach module ($DEVEL_MODULES)
+    set pypath="$DEVEL_HOME"/"$module"/python:"$pypath"
+end
+
+setenv PYTHONPATH "$pypath"
+
+# PATH
+
+if (! $?DEVEL_ORIGINAL_PATH) then
+    setenv DEVEL_ORIGINAL_PATH "$PATH"
+endif
+
+set path="$DEVEL_HOME"/bin:"$DEVEL_ORIGINAL_PATH"
+
+foreach module ($DEVEL_MODULES)
+    set path="$DEVEL_HOME"/"$module"/bin:"$path"
+end
+
+setenv PATH "$path"
+
+# cumin test instance
+setenv CUMIN_HOME "$DEVEL_HOME"/cumin-test-0
+
+setenv INSTALL_PREFIX "$DEVEL_HOME"/install

Copied: mgmt/trunk/etc/Profile.zsh (from rev 4372, mgmt/trunk/etc/devel.profile.zsh)
===================================================================
--- mgmt/trunk/etc/Profile.zsh	                        (rev 0)
+++ mgmt/trunk/etc/Profile.zsh	2010-10-08 14:33:13 UTC (rev 4373)
@@ -0,0 +1,33 @@
+export DEVEL_HOME="$PWD"
+export DEVEL_MODULES="mint cumin basil parsley wooly"
+
+# PYTHONPATH
+
+if [[ -z "$DEVEL_ORIGINAL_PYTHONPATH" ]] {
+    export DEVEL_ORIGINAL_PYTHONPATH="$PYTHONPATH"
+}
+
+pypath="$DEVEL_HOME/lib/python:$HOME/lib/python:$DEVEL_ORIGINAL_PYTHONPATH"
+
+foreach module in `echo $DEVEL_MODULES`
+    pypath="$DEVEL_HOME/$module/python:$pypath"
+end
+
+export PYTHONPATH="$pypath"
+
+# PATH
+
+if [[ -z "$DEVEL_ORIGINAL_PATH" ]] {
+    export DEVEL_ORIGINAL_PATH="$PATH"
+}
+
+path="$DEVEL_HOME/bin:$DEVEL_ORIGINAL_PATH"
+
+foreach module in `echo $DEVEL_MODULES`
+    path="$DEVEL_HOME/$module/bin:$path"
+end
+
+export PATH="$path"
+
+# cumin test instance
+export CUMIN_HOME="$DEVEL_HOME/cumin-test-0"

Deleted: mgmt/trunk/etc/devel.profile
===================================================================
--- mgmt/trunk/etc/devel.profile	2010-10-08 13:31:58 UTC (rev 4372)
+++ mgmt/trunk/etc/devel.profile	2010-10-08 14:33:13 UTC (rev 4373)
@@ -1,28 +0,0 @@
-export DEVEL_HOME="$PWD"
-export DEVEL_MODULES="mint cumin basil parsley wooly rosemary"
-
-if [[ -z "$DEVEL_ORIGINAL_PATH" ]]; then
-    export DEVEL_ORIGINAL_PATH="$PATH"
-fi
-
-export PATH="${DEVEL_HOME}/bin:${DEVEL_ORIGINAL_PATH}"
-
-if [[ -z "$DEVEL_ORIGINAL_PYTHONPATH" ]]; then
-    export DEVEL_ORIGINAL_PYTHONPATH="$PYTHONPATH"
-fi
-
-export PYTHONPATH="${DEVEL_HOME}/lib/python:${HOME}/lib/python:${DEVEL_ORIGINAL_PYTHONPATH}"
-
-for module in $DEVEL_MODULES; do
-    echo "Configuring module '${module}'"
-
-    pushd "${DEVEL_HOME}/${module}" > /dev/null
-
-    if [[ -f "etc/module.profile" ]]; then
-        source "etc/module.profile"
-    else
-        source "../etc/module.profile"
-    fi
-
-    popd > /dev/null
-done

Deleted: mgmt/trunk/etc/devel.profile.tcsh
===================================================================
--- mgmt/trunk/etc/devel.profile.tcsh	2010-10-08 13:31:58 UTC (rev 4372)
+++ mgmt/trunk/etc/devel.profile.tcsh	2010-10-08 14:33:13 UTC (rev 4373)
@@ -1,39 +0,0 @@
-setenv DEVEL_HOME "$PWD"
-set DEVEL_MODULES=(mint cumin basil parsley wooly)
-
-# PYTHONPATH
-
-if ($?PYTHONPATH) then
-    if (! $?DEVEL_ORIGINAL_PYTHONPATH) then
-        setenv DEVEL_ORIGINAL_PYTHONPATH "$PYTHONPATH"
-    endif
-else
-    setenv DEVEL_ORIGINAL_PYTHONPATH
-endif
-
-set pypath="$DEVEL_HOME"/lib/python:"$HOME"/lib/python:"$DEVEL_ORIGINAL_PYTHONPATH"
-
-foreach module ($DEVEL_MODULES)
-    set pypath="$DEVEL_HOME"/"$module"/python:"$pypath"
-end
-
-setenv PYTHONPATH "$pypath"
-
-# PATH
-
-if (! $?DEVEL_ORIGINAL_PATH) then
-    setenv DEVEL_ORIGINAL_PATH "$PATH"
-endif
-
-set path="$DEVEL_HOME"/bin:"$DEVEL_ORIGINAL_PATH"
-
-foreach module ($DEVEL_MODULES)
-    set path="$DEVEL_HOME"/"$module"/bin:"$path"
-end
-
-setenv PATH "$path"
-
-# cumin test instance
-setenv CUMIN_HOME "$DEVEL_HOME"/cumin-test-0
-
-setenv INSTALL_PREFIX "$DEVEL_HOME"/install

Deleted: mgmt/trunk/etc/devel.profile.zsh
===================================================================
--- mgmt/trunk/etc/devel.profile.zsh	2010-10-08 13:31:58 UTC (rev 4372)
+++ mgmt/trunk/etc/devel.profile.zsh	2010-10-08 14:33:13 UTC (rev 4373)
@@ -1,33 +0,0 @@
-export DEVEL_HOME="$PWD"
-export DEVEL_MODULES="mint cumin basil parsley wooly"
-
-# PYTHONPATH
-
-if [[ -z "$DEVEL_ORIGINAL_PYTHONPATH" ]] {
-    export DEVEL_ORIGINAL_PYTHONPATH="$PYTHONPATH"
-}
-
-pypath="$DEVEL_HOME/lib/python:$HOME/lib/python:$DEVEL_ORIGINAL_PYTHONPATH"
-
-foreach module in `echo $DEVEL_MODULES`
-    pypath="$DEVEL_HOME/$module/python:$pypath"
-end
-
-export PYTHONPATH="$pypath"
-
-# PATH
-
-if [[ -z "$DEVEL_ORIGINAL_PATH" ]] {
-    export DEVEL_ORIGINAL_PATH="$PATH"
-}
-
-path="$DEVEL_HOME/bin:$DEVEL_ORIGINAL_PATH"
-
-foreach module in `echo $DEVEL_MODULES`
-    path="$DEVEL_HOME/$module/bin:$path"
-end
-
-export PATH="$path"
-
-# cumin test instance
-export CUMIN_HOME="$DEVEL_HOME/cumin-test-0"



More information about the rhmessaging-commits mailing list