You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2010/12/03 04:46:24 UTC

svn commit: r1041679 - in /incubator/lcf/trunk: CHANGES.txt build.xml

Author: kwright
Date: Fri Dec  3 03:46:23 2010
New Revision: 1041679

URL: http://svn.apache.org/viewvc?rev=1041679&view=rev
Log:
Incorporate release number into zip/tar.gz name and top directory; also label CHANGES.txt properly.

Modified:
    incubator/lcf/trunk/CHANGES.txt
    incubator/lcf/trunk/build.xml

Modified: incubator/lcf/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/CHANGES.txt?rev=1041679&r1=1041678&r2=1041679&view=diff
==============================================================================
--- incubator/lcf/trunk/CHANGES.txt (original)
+++ incubator/lcf/trunk/CHANGES.txt Fri Dec  3 03:46:23 2010
@@ -1,7 +1,8 @@
 ManifoldCF Change Log
 $Id$
 
-======================= Trunk (not yet released) =======================
+======================= Release 0.1 =======================
+Release Date:  See http://incubator.apache.org/connectors for the official release date.
 
 CONNECTORS-122: FileNet and Documentum connector-specific process
 scripts needed.

Modified: incubator/lcf/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/build.xml?rev=1041679&r1=1041678&r2=1041679&view=diff
==============================================================================
--- incubator/lcf/trunk/build.xml (original)
+++ incubator/lcf/trunk/build.xml Fri Dec  3 03:46:23 2010
@@ -1346,31 +1346,39 @@
     <target name="javadoc" depends="deliver-framework-doc,deliver-open-connectors-doc,deliver-output-connectors-doc,deliver-lgpl-connectors-doc,deliver-proprietary-connectors-doc"/>
     <target name="doc" depends="deliver-site-doc"/>
     
-    <target name="create-zip" depends="build,javadoc,doc">
-      <zip destfile="manifoldcf-SNAPSHOT.zip" basedir="." update="false">
-        <exclude name="/connectors/*/lib/"/>
-        <exclude name="/framework/lib/"/>
-        <exclude name="**/build/"/>
-        <exclude name="/connectors/*/dist/"/>
-        <exclude name="/framework/dist/"/>
-        <exclude name="**/test-output/"/>
-        <exclude name="/legacy-*/"/>
-        <exclude name="/manifoldcf-*.zip"/>
-        <exclude name="/manifoldcf-*.tar.gz"/>
+    <target name="set-version">
+      <property name="release-version" value="0.1"/>
+    </target>
+    
+    <target name="create-zip" depends="build,javadoc,doc,set-version">
+      <zip destfile="apache-manifoldcf-${release-version}.zip" update="false">
+        <zipfileset dir="." prefix="apache-manifoldcf-${release-version}">
+          <exclude name="/connectors/*/lib/"/>
+          <exclude name="/framework/lib/"/>
+          <exclude name="**/build/"/>
+          <exclude name="/connectors/*/dist/"/>
+          <exclude name="/framework/dist/"/>
+          <exclude name="**/test-output/"/>
+          <exclude name="/legacy-*/"/>
+          <exclude name="/apache-manifoldcf-*.zip"/>
+          <exclude name="/apache-manifoldcf-*.tar.gz"/>
+        </zipfileset>
       </zip>
     </target>
     
-    <target name="create-tar" depends="build,javadoc,doc">
-      <tar destfile="manifoldcf-SNAPSHOT.tar.gz" basedir="." compression="gzip" longfile="gnu">
-        <exclude name="/connectors/*/lib/"/>
-        <exclude name="/framework/lib/"/>
-        <exclude name="**/build/"/>
-        <exclude name="/connectors/*/dist/"/>
-        <exclude name="/framework/dist/"/>
-        <exclude name="**/test-output/"/>
-        <exclude name="/legacy-*/"/>
-        <exclude name="/manifoldcf-*.zip"/>
-        <exclude name="/manifoldcf-*.tar.gz"/>
+    <target name="create-tar" depends="build,javadoc,doc,set-version">
+      <tar destfile="apache-manifoldcf-${release-version}.tar.gz" compression="gzip" longfile="gnu">
+        <tarfileset dir="." prefix="apache-manifoldcf-${release-version}">
+          <exclude name="/connectors/*/lib/"/>
+          <exclude name="/framework/lib/"/>
+          <exclude name="**/build/"/>
+          <exclude name="/connectors/*/dist/"/>
+          <exclude name="/framework/dist/"/>
+          <exclude name="**/test-output/"/>
+          <exclude name="/legacy-*/"/>
+          <exclude name="/apache-manifoldcf-*.zip"/>
+          <exclude name="/apache-manifoldcf-*.tar.gz"/>
+        </tarfileset>
       </tar>
     </target>