Author: snoopdave
Date: Mon Jan  2 14:20:59 2006
New Revision: 365453

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

Added:
    incubator/roller/branches/roller_2.0/tools/README.txt
Modified:
    incubator/roller/branches/roller_2.0/build.xml

Modified: incubator/roller/branches/roller_2.0/build.xml
URL: 
http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/build.xml?rev=365453&r1=365452&r2=365453&view=diff
==============================================================================
--- incubator/roller/branches/roller_2.0/build.xml (original)
+++ incubator/roller/branches/roller_2.0/build.xml Mon Jan  2 14:20:59 2006
@@ -664,10 +664,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/**" />
@@ -696,20 +695,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/branches/roller_2.0/tools/README.txt
URL: 
http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/tools/README.txt?rev=365453&view=auto
==============================================================================
--- incubator/roller/branches/roller_2.0/tools/README.txt (added)
+++ incubator/roller/branches/roller_2.0/tools/README.txt Mon Jan  2 14:20:59 
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
+


Reply via email to