Author: ajborley
Date: Wed Oct 18 11:43:12 2006
New Revision: 465329
URL: http://svn.apache.org/viewvc?view=rev&rev=465329
Log:
Added missing files & corrected build files for the fix to TUSCANY-868
Added:
incubator/tuscany/cpp/sca/runtime/extensions/ruby/src/deploy.cmd
incubator/tuscany/cpp/sca/runtime/extensions/ruby/src/deploy.sh (with
props)
Modified:
incubator/tuscany/cpp/sca/runtime/extensions/python/src/Makefile.am
incubator/tuscany/cpp/sca/runtime/extensions/ruby/src/Makefile.am
Modified: incubator/tuscany/cpp/sca/runtime/extensions/python/src/Makefile.am
URL:
http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/runtime/extensions/python/src/Makefile.am?view=diff&rev=465329&r1=465328&r2=465329
==============================================================================
--- incubator/tuscany/cpp/sca/runtime/extensions/python/src/Makefile.am
(original)
+++ incubator/tuscany/cpp/sca/runtime/extensions/python/src/Makefile.am Wed Oct
18 11:43:12 2006
@@ -21,11 +21,11 @@
install-exec-hook:
cd $(libdir); \
ln -s -f libtuscany_sca_python.so sca.so; \
- for i in lib/libtuscany_sca_python.*; do mv $i $i.disabled; done
+ for i in libtuscany_sca_python.*; do mv $$i $$i.disabled; done
pydir=$(prefix)/extensions/python/lib
py_DATA = tuscany/sca/python/sca_proxy.py
-EXTRA_DIST = tuscany/sca/python/sca_proxy.py
+EXTRA_DIST = tuscany/sca/python/sca_proxy.py deploy.sh
rootdir=$(prefix)/extensions/python
root_SCRIPTS = deploy.sh
Modified: incubator/tuscany/cpp/sca/runtime/extensions/ruby/src/Makefile.am
URL:
http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/runtime/extensions/ruby/src/Makefile.am?view=diff&rev=465329&r1=465328&r2=465329
==============================================================================
--- incubator/tuscany/cpp/sca/runtime/extensions/ruby/src/Makefile.am (original)
+++ incubator/tuscany/cpp/sca/runtime/extensions/ruby/src/Makefile.am Wed Oct
18 11:43:12 2006
@@ -21,7 +21,7 @@
install-exec-hook:
cd $(libdir); \
ln -s -f libtuscany_sca_ruby.so tuscany_sca_ruby.so; \
- for i in lib/libtuscany_sca_ruby.*; do mv $i $i.disabled; done
+ for i in libtuscany_sca_ruby.*; do mv $$i $$i.disabled; done
rootdir=$(prefix)/extensions/ruby
root_SCRIPTS = deploy.sh
@@ -29,6 +29,8 @@
noinst_HEADERS = \
tuscany/sca/ruby/*.h \
tuscany/sca/ruby/model/*.h
+
+EXTRA_DIST = deploy.sh
libtuscany_sca_ruby_la_SOURCES = \
tuscany/sca/ruby/RubyExtension.cpp \
Added: incubator/tuscany/cpp/sca/runtime/extensions/ruby/src/deploy.cmd
URL:
http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/runtime/extensions/ruby/src/deploy.cmd?view=auto&rev=465329
==============================================================================
--- incubator/tuscany/cpp/sca/runtime/extensions/ruby/src/deploy.cmd (added)
+++ incubator/tuscany/cpp/sca/runtime/extensions/ruby/src/deploy.cmd Wed Oct 18
11:43:12 2006
@@ -0,0 +1,28 @@
[EMAIL PROTECTED] off
[EMAIL PROTECTED] Licensed to the Apache Software Foundation (ASF) under one
[EMAIL PROTECTED] or more contributor license agreements. See the NOTICE file
[EMAIL PROTECTED] distributed with this work for additional information
[EMAIL PROTECTED] regarding copyright ownership. The ASF licenses this file
[EMAIL PROTECTED] to you under the Apache License, Version 2.0 (the
[EMAIL PROTECTED] "License"); you may not use this file except in compliance
[EMAIL PROTECTED] with the License. You may obtain a copy of the License at
[EMAIL PROTECTED]
[EMAIL PROTECTED] http://www.apache.org/licenses/LICENSE-2.0
[EMAIL PROTECTED]
[EMAIL PROTECTED] Unless required by applicable law or agreed to in writing,
[EMAIL PROTECTED] software distributed under the License is distributed on an
[EMAIL PROTECTED] "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
[EMAIL PROTECTED] KIND, either express or implied. See the License for the
[EMAIL PROTECTED] specific language governing permissions and limitations
[EMAIL PROTECTED] under the License.
+
+
+setlocal
+set currentPath=%~d0%~p0
+
+echo Enabling the Tuscany Ruby extension
+rename %currentPath%\bin\tuscany_sca_ruby.dll.disabled tuscany_sca_ruby.dll
+
+:end
+echo Done
+endlocal
Added: incubator/tuscany/cpp/sca/runtime/extensions/ruby/src/deploy.sh
URL:
http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/runtime/extensions/ruby/src/deploy.sh?view=auto&rev=465329
==============================================================================
--- incubator/tuscany/cpp/sca/runtime/extensions/ruby/src/deploy.sh (added)
+++ incubator/tuscany/cpp/sca/runtime/extensions/ruby/src/deploy.sh Wed Oct 18
11:43:12 2006
@@ -0,0 +1,26 @@
+#!/bin/sh
+
+# 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.
+
+APFULLDIR=`pwd`
+
+echo "Enabling the Tuscany Ruby extension"
+
+for i in lib/*.disabled; do x=${i%.disabled}; mv $i $x; done
+
+echo "Done"
Propchange: incubator/tuscany/cpp/sca/runtime/extensions/ruby/src/deploy.sh
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: incubator/tuscany/cpp/sca/runtime/extensions/ruby/src/deploy.sh
------------------------------------------------------------------------------
svn:executable = *
Propchange: incubator/tuscany/cpp/sca/runtime/extensions/ruby/src/deploy.sh
------------------------------------------------------------------------------
svn:keywords = Rev Date
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]