svn commit: r1222574 - /ofbiz/trunk/specialpurpose/scrum/build.xml

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r1222574 - /ofbiz/trunk/specialpurpose/scrum/build.xml

hansbak-2
Author: hansbak
Date: Fri Dec 23 05:42:01 2011
New Revision: 1222574

URL: http://svn.apache.org/viewvc?rev=1222574&view=rev
Log:
apply ofbiz patches should not be part of a component in the special purpose directory

Modified:
    ofbiz/trunk/specialpurpose/scrum/build.xml

Modified: ofbiz/trunk/specialpurpose/scrum/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/scrum/build.xml?rev=1222574&r1=1222573&r2=1222574&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/scrum/build.xml (original)
+++ ofbiz/trunk/specialpurpose/scrum/build.xml Fri Dec 23 05:42:01 2011
@@ -31,76 +31,4 @@
         <fileset dir="../../framework/webapp/lib" includes="*.jar"/>
         <fileset dir="../../framework/webapp/build/lib" includes="*.jar"/>
     </path>
-
-    <!-- ================================================================= -->
-    <!-- Targets to create  patch files                                    -->
-    <!-- ================================================================= -->
-
-    <target name="create-ofbiz-patches" description="Creates patch for framework, application, specialpurpose components">
-        <exec executable="svn" output="patches/framework.patch" dir="${ofbiz.home.dir}">
-            <arg value="diff"/>
-            <arg value="framework"/>
-        </exec>
-        <exec executable="svn" output="patches/applications.patch" dir="${ofbiz.home.dir}">
-            <arg value="diff"/>
-            <arg value="applications"/>
-        </exec>
-        <exec executable="svn" output="patches/specialpurpose.patch" dir="${ofbiz.home.dir}">
-            <arg value="diff"/>
-            <arg value="specialpurpose"/>
-        </exec>
-    </target>
-
-    <target name="revert-ofbiz-patches" description="Remove any local change in the files or any previously applied local patch.">
-        <exec executable="svn" dir="${ofbiz.home.dir}">
-            <arg value="revert"/>
-            <arg value="-R"/>
-            <arg value="framework"/>
-        </exec>
-        <exec executable="svn" dir="${ofbiz.home.dir}">
-            <arg value="revert"/>
-            <arg value="-R"/>
-            <arg value="applications"/>
-        </exec>
-        <exec executable="svn" dir="${ofbiz.home.dir}">
-            <arg value="revert"/>
-            <arg value="-R"/>
-            <arg value="specialpurpose"/>
-        </exec>
-    </target>
-
-    <target name="apply-ofbiz-patches" description="Apply the patch to framework, application, specialpurpose components.">
-        <fail message="Patch files not found.">
-            <condition>
-                <or>
-                    <not><isset property="component-name"/></not>
-                    <not>
-                        <resourcecount count="3">
-                            <fileset dir="patches" includes="*.patch"/>
-                        </resourcecount>
-                    </not>
-                </or>
-            </condition>
-        </fail>
-        <patch strip="0" patchfile="patches/framework.patch" dir="${ofbiz.home.dir}"/>
-        <patch strip="0" patchfile="patches/applications.patch" dir="${ofbiz.home.dir}"/>
-        <patch strip="0" patchfile="patches/specialpurpose.patch" dir="${ofbiz.home.dir}"/>
-    </target>
-
-    <target name="reapply-ofbiz-patches" description="First removes any previously applied patch and then applies the new patch">
-        <fail message="Patch files not found.">
-            <condition>
-                <or>
-                    <not><isset property="component-name"/></not>
-                    <not>
-                        <resourcecount count="3">
-                            <fileset dir="patches" includes="*.patch"/>
-                        </resourcecount>
-                    </not>
-                </or>
-            </condition>
-        </fail>
-        <antcall target="revert-ofbiz-patches"/>
-        <antcall target="apply-ofbiz-patches"/>
-    </target>
 </project>