source-spec.ant.xml.ftl - Added change info for the BOM that lists submitted changesets between the baseline ('sf.previous.pdk.tag') and the synced changeset and writes to a changes.txt file in the BOM dir.
authorMattD <mattd@symbian.org>
Tue, 06 Oct 2009 18:15:24 +0100
changeset 615 6f70bcc536bb
parent 600 01511de51fcd
child 616 136a11aee8bd
source-spec.ant.xml.ftl - Added change info for the BOM that lists submitted changesets between the baseline ('sf.previous.pdk.tag') and the synced changeset and writes to a changes.txt file in the BOM dir.
common/templates/source-spec.ant.xml.ftl
--- a/common/templates/source-spec.ant.xml.ftl	Tue Oct 06 13:02:58 2009 +0100
+++ b/common/templates/source-spec.ant.xml.ftl	Tue Oct 06 18:15:24 2009 +0100
@@ -4,6 +4,7 @@
 <#assign fileset = "" />
 <#assign sync_list = "" />
 <#assign bom_list  = "" />
+<#assign change_list  = "" />
 <#assign dollar = "$"/>
 <#assign count = 0 />
 
@@ -117,10 +118,30 @@
         </sequential>
     </target>
 
+    <target name="sf-bom-change-info-${count}">
+        <sequential>
+      		<if><not><isset property="sf.sourcesync.${count}.checksum"/></not>
+      			<then>
+              <exec executable="hg" dir="${ant['build.drive']}${pkg_detail.dst}" outputproperty="sf.sourcesync.${count}.checksum">
+                <arg value="identify"/>
+                <arg value="-i"/>
+              </exec>
+      			</then>
+      		</if>
+      		  <echo message="Writing BOM changes since ${dollar}{sf.previous.pdk.tag} for ${pkg_detail.dst}" />
+      		  <echo file="${ant['build.drive']}/output/logs/BOM/changes.txt" append="true" message="${dollar}{line.separator}${pkg_detail.source}${dollar}{line.separator}${pkg_detail.dst}${dollar}{line.separator}${dollar}{line.separator}" />
+            <exec executable="hg" dir="${ant['build.drive']}${pkg_detail.dst}" output="${ant['build.drive']}/output/logs/BOM/changes.txt" append="true">
+                <arg value="log"/>
+                <arg value="-r"/>
+                <arg value="${dollar}{sf.sourcesync.${count}.checksum}:${dollar}{sf.previous.pdk.tag}"/>
+            </exec>
+          </sequential>
+    </target>
 
     <#assign fileset = "${fileset}" + "<fileset dir=\"${ant['build.drive']}${pkg_detail.dst}\" includes=\"${pkg_detail.sysdef}\"/>" />       
-    <#assign sync_list = "${sync_list}" + "<runtarget target=\"sf-prebuild-${count}\"/>\n"/>       
-    <#assign bom_list = "${bom_list}" + "<runtarget target=\"sf-bom-info-${count}\"/>\n"/>    
+    <#assign sync_list = "${sync_list}" + "<runtarget target=\"sf-prebuild-${count}\"/>\n\t\t"/>       
+    <#assign bom_list = "${bom_list}" + "<runtarget target=\"sf-bom-info-${count}\"/>\n\t"/>
+    <#assign change_list = "${change_list}" + "<runtarget target=\"sf-bom-change-info-${count}\"/>\n\t"/>        
     <#assign count = count + 1 />
 
 </#list>
@@ -145,6 +166,14 @@
   </exec>
   
   ${bom_list}
+  <runtarget target="sf-bom-change-info" />
+</target>
+
+<target name="sf-bom-change-info">
+  
+  <mkdir dir="${ant['build.drive']}/output/logs/BOM/"/>
+  <delete file="${ant['build.drive']}/output/logs/BOM/changes.txt" quiet="true"/> 
+  ${change_list}
 
 </target>
-</project>
\ No newline at end of file
+</project>