Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Niefer2011-07-07 18:58:40 +0000
committerAndrew Niefer2011-07-07 18:58:40 +0000
commite26650eef1961f7e5a082a0f43c17eec0faceb3f (patch)
tree4524cbfb958b4b13eb8307f827327c69831f18e7 /bundles/org.eclipse.equinox.launcher.gtk.aix.ppc64/customBuildCallbacks.xml
parentc9990d8796c41553a2a7991595ab52881c4e863e (diff)
downloadrt.equinox.framework-e26650eef1961f7e5a082a0f43c17eec0faceb3f.tar.gz
rt.equinox.framework-e26650eef1961f7e5a082a0f43c17eec0faceb3f.tar.xz
rt.equinox.framework-e26650eef1961f7e5a082a0f43c17eec0faceb3f.zip
Bug 350102 - Update launcher releng scripts to support moving to git
Diffstat (limited to 'bundles/org.eclipse.equinox.launcher.gtk.aix.ppc64/customBuildCallbacks.xml')
-rw-r--r--bundles/org.eclipse.equinox.launcher.gtk.aix.ppc64/customBuildCallbacks.xml14
1 files changed, 14 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.launcher.gtk.aix.ppc64/customBuildCallbacks.xml b/bundles/org.eclipse.equinox.launcher.gtk.aix.ppc64/customBuildCallbacks.xml
index 32c8ef4f6..979e9ce34 100644
--- a/bundles/org.eclipse.equinox.launcher.gtk.aix.ppc64/customBuildCallbacks.xml
+++ b/bundles/org.eclipse.equinox.launcher.gtk.aix.ppc64/customBuildCallbacks.xml
@@ -44,6 +44,20 @@
</target>
<target name="pre.gather.bin.parts">
+ <basename file="${basedir}" property="fragmentName" />
+ <available file="/gitroot/equinox/rt.equinox.binaries.git" type="dir" property="gitRepo" value="/gitroot/equinox/rt.equinox.binaries.git" />
+ <property name="gitRepo" value="ssh://git.eclipse.org/gitroot/equinox/rt.equinox.binaries.git" />
+
+ <exec dir="${basedir}" executable="git" output="${basedir}/binary.tar" errorproperty="errorResult" >
+ <arg line="archive --format=tar --remote=${gitRepo} ${binaryTag} ${fragmentName}" />
+ </exec>
+
+ <copy todir="${basedir}">
+ <tarfileset includes="${fragmentName}/**" src="${basedir}/binary.tar" />
+ <globmapper from="${fragmentName}/*" to="*" />
+ </copy>
+
+ <delete file="${basedir}/binary.tar" failonerror="false" quiet="true" />
</target>
<!-- ===================================================================== -->

Back to the top