You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by sn...@apache.org on 2006/01/02 23:43:33 UTC

svn commit: r365456 - in /incubator/roller/trunk: build.xml tools/README.txt

Author: snoopdave
Date: Mon Jan  2 14:43:28 2006
New Revision: 365456

URL: http://svn.apache.org/viewcvs?rev=365456&view=rev
Log:
source now unpacks under roller-src, so does tools, and tools now includes README

Added:
    incubator/roller/trunk/tools/README.txt
Modified:
    incubator/roller/trunk/build.xml

Modified: incubator/roller/trunk/build.xml
URL: http://svn.apache.org/viewcvs/incubator/roller/trunk/build.xml?rev=365456&r1=365455&r2=365456&view=diff
==============================================================================
--- incubator/roller/trunk/build.xml (original)
+++ incubator/roller/trunk/build.xml Mon Jan  2 14:43:28 2006
@@ -626,10 +626,9 @@
 <!-- ********************************************************************* -->
 	
 <target name="source-release" depends="contrib">
-    <!-- <antcall target="rebuild"/> -->
-    <!-- Tar and GZip the sources -->
-    <tar tarfile="${ro.build}/roller-src-${ro.version}.tar">
-        <tarfileset dir=".">
+
+    <copy todir="${ro.build}/roller-src">
+        <fileset dir="${basedir}">
             <include name="metadata/**" />
             <include name="personal/**" />
             <include name="custom/**" />
@@ -658,19 +657,37 @@
             <exclude name="**/*.#*"/>
             <exclude name="**/WS_FTP.LOG"/>
             <exclude name="**/.nbattrs"/>
-         </tarfileset>
-    </tar>
+        </fileset>
+    </copy>
+
+    <!-- Tar and GZip the sources -->
+    <tar tarfile="${ro.build}/roller-src-${ro.version}.tar" basedir="${ro.build}" includes="roller-src/**" />
     <gzip zipfile="${ro.build}/roller-src-${ro.version}.tar.gz"
-              src="${ro.build}/roller-src-${ro.version}.tar" />
+        src="${ro.build}/roller-src-${ro.version}.tar" />
+   
+    <!-- Clear the source release dir, we're making the tools release next --> 
+    <delete dir="${ro.build}/roller-src" />
 
     <!-- Tar and GZip the tools -->
+    <copy todir="${ro.build}/roller-src/tools">
+        <fileset dir="${basedir}">
+            <include name="LICENSE.txt" />
+        </fileset>
+        <fileset dir="${basedir}/tools">
+            <include name="**" />
+            <exclude name="**/*.bak" />
+            <exclude name="**/*~" />
+        </fileset>
+    </copy>
     <tar tarfile="${ro.build}/roller-tools-${ro.version}.tar"
-        basedir="." includes="tools/**" excludes="**/*.bak,**/*~" />
+        basedir="${ro.build}" includes="roller-src/**" />
     <gzip zipfile="${ro.build}/roller-tools-${ro.version}.tar.gz"
               src="${ro.build}/roller-tools-${ro.version}.tar" />
+
     <delete>
         <fileset dir="${ro.build}" includes="*.tar"/>
     </delete>
+    <delete dir="${ro.build}/roller-src" /> 
 
 </target>
 

Added: incubator/roller/trunk/tools/README.txt
URL: http://svn.apache.org/viewcvs/incubator/roller/trunk/tools/README.txt?rev=365456&view=auto
==============================================================================
--- incubator/roller/trunk/tools/README.txt (added)
+++ incubator/roller/trunk/tools/README.txt Mon Jan  2 14:43:28 2006
@@ -0,0 +1,68 @@
+README.txt - Roller Tools directory
+
+   This directory contains the components necessary to build Roller from source. 
+   To build Roller you need both the Roller Source and the Roller Tools.
+
+   Roller Source extracts into a directory named roller-src
+   Roller Tools extracts into a directory roller-src/tools
+
+NOTICE
+
+   This release of Roller is not endorsed by the Apache Software Foundation.
+   Roller is in the Apache Incubator and is not an official Apache project.
+
+   To install Roller, follow the instructions in the Installation Guide:
+   http://rollerweblogger.org/wiki/Wiki.jsp?page=InstallationGuide
+
+   To use Roller, follow the instructions in the Users Guide:
+   http://rollerweblogger.org/wiki/Wiki.jsp?page=UserGuide
+          
+
+LICENSING TERMS
+  
+   Roller itself is licensed under the Apache Licence Version 2.0, please 
+   see the included file LICENSE.txt for the full text of the Apache license.
+
+   PLEASE NOTE: Although Roller itself is under the Apache license, Roller 
+   depends on and contains some components that are licensed under the more 
+   restrictive terms of the LGPL licence.
+
+
+CREDITS AND COPYRIGHT NOTICES
+
+   Roller is Copyright (c) 2002-2005 by the Roller project members: 
+           David M Johnson
+           Lance Lanvandowska 
+           Matt Raible 
+           Anil Gangolli
+           Henri Yandell
+           Allen Gilliland
+       Past members:  	 
+           Mindaguas Idzelis 
+           Jaap Van Der Molen 
+
+
+THIRD PARTY COMPONENTS
+
+   * Roller includes software developed by the Apache Software Foundation
+     Copyright (c) The Apache Software Foundation. All rights reserved.
+
+   * Roller includes code from Blojsom, BSD License
+        Copyright (c) David A. Czarnecki & Mark Lussier. All rights reserved
+        
+   * Roller includes JDOM, JDOM license (BSD style)
+        Copyright (c) Brett McLaughlin & Jason Hunter. All rights reserved.
+
+   * Roller includes the Hibernate persistence library, LGPL license
+
+   * Roller includes the Ekit HTML editor by Howard Kistler, LGPL license
+   
+   * Roller includes the Jazzy spellchecker, LGPL license
+   
+   * Roller includes the JSPWiki Wiki Engine, LGPL license
+
+   * Roller includes the Radeox Wiki Engine, LGPL license
+
+   * Roller includes Jython, Jython Software License (BSD style)
+         Copyright (c) Jython Developers
+