You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@etch.apache.org by di...@apache.org on 2009/02/11 17:57:39 UTC

svn commit: r743400 - in /incubator/etch/trunk: README.txt installers/build.xml

Author: dixson
Date: Wed Feb 11 16:57:38 2009
New Revision: 743400

URL: http://svn.apache.org/viewvc?rev=743400&view=rev
Log:
more 1.0.2 merge .. update README to reflect correct install paths on
windows
add NOTICE.txt and RELEASE_NOTES.txt to binary distribution packages

Modified:
    incubator/etch/trunk/README.txt
    incubator/etch/trunk/installers/build.xml

Modified: incubator/etch/trunk/README.txt
URL: http://svn.apache.org/viewvc/incubator/etch/trunk/README.txt?rev=743400&r1=743399&r2=743400&view=diff
==============================================================================
--- incubator/etch/trunk/README.txt (original)
+++ incubator/etch/trunk/README.txt Wed Feb 11 16:57:38 2009
@@ -1,4 +1,4 @@
-Welcome to the 1.0.2 release of Etch.
+Welcome to the 1.0.2-incubating release of Apache Etch.
 
 The jumping off point for Etch information and help is here:
 
@@ -9,22 +9,28 @@
 	ChangeLog.txt
 	LICENSE.txt
 	README.txt
-	bin
-	lib
-	maven
-
-Please take a moment to review the ChangeLog.txt and LICENSE.txt files.
-
-The Windows installer (etch-1.0.2-setup.exe) has created a user environment
-variable (ETCH_HOME) which points to the Etch installation directory. If you
-installed Etch using either etch-1.0.2.tar.gz or etch-1.0.2.zip, you will want
-to create this environment variable yourself:
+    NOTICE.txt
+    RELEASE_NOTES.txt
+	bin/
+	lib/
+    examples/
+	maven/
+    uninst.exe (windows only)
+
+Please take a moment to review the RELEASE_NOTES.txt, ChangeLog.txt and
+LICENSE.txt files.
+
+The Windows installer (apache-etch-1.0.2-incubating-setup.exe) has created a 
+user environment variable (ETCH_HOME) which points to the Etch installation
+directory. If you installed Etch using either apache-etch-1.0.2-incubating-bin.tar.gz
+or apache-etch-1.0.2-incubating-bin.zip, you will want to create this environment
+variable yourself:
 
 windows:
-	set ETCH_HOME=C:\Program Files\Etch\etch-1.0.2
+	set ETCH_HOME=C:\Program Files\Apache Software Foundation\apache-etch-1.0.2-incubating
 
-unix:
-	export ETCH_HOME=/usr/local/etch/etch-1.0.2
+*nix:
+	export ETCH_HOME=/path/to/apache-etch-1.0.2-incubating
 
 The bin directory has also been put on your path by the Windows installer. If
 you are using the archives, you will need to do this yourself:
@@ -32,10 +38,10 @@
 windows:
 	PATH %PATH%;%ETCH_HOME%\bin
 
-unix:
-	PATH="$PATH:$ETCH_HOME/bin"
+*nix:
+	export PATH="$PATH:$ETCH_HOME/bin"
 
-The bin directory contains a Windows bat script and a unix shell script.
+The bin/ directory contains a Windows bat script and a unix shell script.
 
 You will also need to have a java sdk installed (later versions of 1.5 or
 any version of 1.6). A JAVA_HOME environment variable should point to the
@@ -61,9 +67,11 @@
 	etch-java-runtime-1.0.2.jar
 	...
 
-The main items of interest are the java binding runtime, which you need to
-put on the classpath of your projects: etch-java-runtime-1.0.2.jar. There is
-source code to go with it in etch-java-runtime-1.0.2-src.zip.
+The main items of interest are the language binding runtimes, which you need to
+link with your projects.
+
+For java you need to put on the classpath of your projects: etch-java-runtime-1.0.2.jar.
+There is source code to go with it in etch-java-runtime-1.0.2-src.zip.
 
 The C# (.NET 2.0) Etch.dll should be added to any C# projects.
 
@@ -81,7 +89,9 @@
 group "etch.etch", artifact id "etch-java-runtime", and version "1.0.2". You
 may then reference Etch from your maven projects.
 
-Examples and unit tests can be had by checking out the source code from the
+Examples have been provided in the examples/ subdirectory.
+
+Unit tests can be had by checking out the source code from the
 subversion repository and performing a complete build:
 
- https://svn.apache.org/repos/asf/incubator/etch
+ https://svn.apache.org/repos/asf/incubator/etch/releases/release-1.0.2

Modified: incubator/etch/trunk/installers/build.xml
URL: http://svn.apache.org/viewvc/incubator/etch/trunk/installers/build.xml?rev=743400&r1=743399&r2=743400&view=diff
==============================================================================
--- incubator/etch/trunk/installers/build.xml (original)
+++ incubator/etch/trunk/installers/build.xml Wed Feb 11 16:57:38 2009
@@ -46,6 +46,8 @@
         <copy file="${Etch.basedir}/LICENSE.txt" todir="${Etch.dist}" />
         <copy file="${Etch.basedir}/ChangeLog.txt" todir="${Etch.dist}" />
         <copy file="${Etch.basedir}/README.txt" tofile="${Etch.dist}/README.txt" />
+        <copy file="${Etch.basedir}/RELEASE_NOTES.txt" tofile="${Etch.dist}/RELEASE_NOTES.txt" />
+        <copy file="${Etch.basedir}/NOTICE.txt" tofile="${Etch.dist}/NOTICE.txt" />
         <copy file="${proj}/etch-maven-install.bat" todir="${Etch.dist}/maven" >
             <filterset refid="Etch.buildTokens" />
         </copy>