rpms/eclipse/devel eclipse-nowin32testfragment.patch, NONE, 1.1 eclipse-tests-libraryXml.patch, NONE, 1.1 .cvsignore, 1.49, 1.50 eclipse-mv-Platform.sh, 1.2, 1.3 eclipse-pde.build-add-package-build.patch, 1.8, 1.9 eclipse-pdebuild.sh, 1.6, 1.7 eclipse.spec, 1.584, 1.585 sources, 1.66, 1.67

Andrew Overholt overholt at fedoraproject.org
Wed Aug 27 20:13:06 UTC 2008


Author: overholt

Update of /cvs/pkgs/rpms/eclipse/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20907

Modified Files:
	.cvsignore eclipse-mv-Platform.sh 
	eclipse-pde.build-add-package-build.patch eclipse-pdebuild.sh 
	eclipse.spec sources 
Added Files:
	eclipse-nowin32testfragment.patch 
	eclipse-tests-libraryXml.patch 
Log Message:
* Wed Aug 27 2008 Andrew Overholt <overholt at redhat.com> 3.4.0-22
- Add test framework
- Remove two duplicate lines in eclipse-mv-Platform.sh
- Modify package-build and pdebuild so they can build the SDK tests

eclipse-nowin32testfragment.patch:

--- NEW FILE eclipse-nowin32testfragment.patch ---
diff -up ./org.eclipse.test-feature/feature.xml.nowin32 ./org.eclipse.test-feature/feature.xml
--- ./org.eclipse.test-feature/feature.xml.nowin32	2008-08-27 10:14:56.000000000 -0400
+++ ./org.eclipse.test-feature/feature.xml	2008-08-27 10:15:04.000000000 -0400
@@ -58,14 +58,6 @@
          unpack="false"/>
 
    <plugin
-         id="org.eclipse.test.performance.win32"
-         download-size="0"
-         install-size="0"
-         version="0.0.0"
-         fragment="true"
-         unpack="false"/>
-
-   <plugin
          id="org.junit"
          download-size="0"
          install-size="0"

eclipse-tests-libraryXml.patch:

--- NEW FILE eclipse-tests-libraryXml.patch ---
diff -up ./org.eclipse.test/library.xml.orig ./org.eclipse.test/library.xml
--- ./org.eclipse.test/library.xml.orig	2008-08-27 15:10:17.000000000 -0400
+++ ./org.eclipse.test/library.xml	2008-08-27 15:11:16.000000000 -0400
@@ -40,8 +40,10 @@
 	    </condition>
 		<property name="extraVMargs" value=""/>
 		<property name="plugin-path" value="" />
+		<property name="tmpresults" value="${eclipse-home}/tmpresults/" />
+		<property name="testhome" value="${eclipse-home}/testhome" />
 		<property name="timeout" value="7200000" />
-		<property name="test-output" value="${eclipse-home}/${classname}.xml" />
+		<property name="test-output" value="${tmpresults}/${classname}.xml" />
 		<property name="junit-report-output" value="${eclipse-home}/results" />
 		<mkdir dir="${junit-report-output}"/>
 	</target>
@@ -60,7 +62,11 @@
 
 	<target name="java-test">
 		<!--default vm args-->
-		<property name="vmargs" value=" -Xms40m -Xmx256m"/>
+		<property name="vmargs" value=" -Xms40m -Xmx512m"/>
+		<delete failonerror="false" includeEmptyDirs="true">
+		  <fileset dir="${testhome}" includes="**/*"/>
+		</delete>
+		<mkdir dir="${testhome}"/>
 	  	
 	  	<!--set default jvm to use for testing-->
 	   	<property name="jvm" value="${java.home}/bin/java" />  	
@@ -75,7 +81,7 @@
 	          	</fileset>
 	        </classpath>
 		    <arg line="-application ${application}"/>
-		    <arg line="-data ${data-dir}"/>
+		    <arg line="-data ${test-data-dir}"/>
 		    <arg line="formatter=${formatter},${test-output}"/>
 		    <arg line="-testPluginName ${plugin-name}"/>
 		    <arg line="-className ${classname}"/>
@@ -83,15 +89,29 @@
 		    <arg line="-ws ${ws}"/>
 		    <arg line="-arch ${arch}"/>
 		    <arg line="-consolelog"/>
+		    <arg line="-clean"/>
+		    <arg line="-Dswt.library.path=/usr/lib/eclipse"/>
+		    <arg line="-Dsetup.override.vmArgs=Xms40m;Xmx512m"/>
+		    <arg line="-Dsetup.override.systemProperties=PLUGIN_PATH=${plugin-path};user.home=${testhome}"/>
 		    <jvmarg line="${vmargs} ${extraVMargs}"/>
 		    <sysproperty key="PLUGIN_PATH" value="${plugin-path}"/> 
+		    <sysproperty key="user.home" value="${testhome}"/>
+		    <sysproperty key="swt.library.path" value="/usr/lib/eclipse"/>
+		    <sysproperty key="setup.override.vmArgs" value="Xms40m;Xmx512m"/>
+		    <sysproperty key="setup.override.systemProperties" value="PLUGIN_PATH=${plugin-path};user.home=${testhome}"/>
+		    <sysproperty key="sdk.tests.data.dir" value="${data-dir}"/>
+		    <sysproperty key="osgi.configuration.area" value="${data-dir}"/>
 		</java>
 		<antcall target="collect-results" />
 	</target>
 	
 	<target name="eclipse-test" description="Runs the specified classname as a plug-in test.">		
 		<property name="vmargs" value="-Xms256m -Xmx512m"/>
-		
+		<delete failonerror="false" includeEmptyDirs="true">
+		  <fileset dir="${testhome}" includes="**/*"/>
+		</delete>
+		<mkdir dir="${testhome}"/>
+	
 		<!--use -consolelog if launching a headless test-->
 		<condition property="consolelog" value="-consolelog">
 			<equals arg1="${application}" arg2="org.eclipse.test.coretestapplication"/>
@@ -125,6 +145,8 @@
 			<arg line="--launcher.suppressErrors"/>
 			<arg line="${consolelog}"/>
 			<arg line="-vmargs ${vmargs} ${extraVMargs} -DPLUGIN_PATH=${plugin-path}"/>
+			<arg line="-Duser.home=${testhome}"/>
+			<arg line="-Dsetup.override.systemProperties=PLUGIN_PATH=${plugin-path};user.home=${testhome}"/>
 		</exec>
 		<antcall target="collect-results" />
 	</target>
@@ -138,7 +160,7 @@
 			</fileset>
 		</junitreport>
 
-		<style style="${eclipse-home}/dropins/eclipse/plugins/org.eclipse.test/JUNIT.XSL"
+		<style style="${eclipse-home}/dropins/sdk/plugins/org.eclipse.test/JUNIT.XSL"
 			basedir="${junit-report-output}"
 			includes="${classname}.result.xml"
 			destdir="${junit-report-output}" />
@@ -158,8 +180,8 @@
 			includes		- the names of the files to include
 			output-file		- the name of the output file to produce
 		-->
-		<junitreport todir="." tofile="${output-file}">
-			<fileset dir=".">
+		<junitreport todir="${results}" tofile="${output-file}">
+			<fileset dir="${tmpresults}">
 				<include name="${includes}"/>
 			</fileset>
 		</junitreport>


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/eclipse/devel/.cvsignore,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- .cvsignore	21 Jul 2008 17:13:43 -0000	1.49
+++ .cvsignore	27 Aug 2008 20:12:34 -0000	1.50
@@ -4,3 +4,4 @@
 eclipse-sourceBuild-srcIncluded-3.4.zip
 org.fedoraproject.ide.platform-3.4.0-1.zip
 eclipse-ecj-gcj.tar.bz2
+eclipse-3.4.0-testframework.tar.bz2


Index: eclipse-mv-Platform.sh
===================================================================
RCS file: /cvs/pkgs/rpms/eclipse/devel/eclipse-mv-Platform.sh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- eclipse-mv-Platform.sh	29 Jul 2008 13:40:46 -0000	1.2
+++ eclipse-mv-Platform.sh	27 Aug 2008 20:12:34 -0000	1.3
@@ -20,8 +20,6 @@
 mv $baseDir/plugins/org.eclipse.team.cvs.ui_* plugins
 mv $baseDir/features/org.eclipse.equinox.p2.user.ui_* features
 mv $baseDir/features/org.fedoraproject* features
-mv $baseDir/features/org.eclipse.equinox.p2.user.ui_* features
-mv $baseDir/features/org.fedoraproject* features
 mv $baseDir/plugins/org.fedoraproject* plugins
 mv $baseDir/plugins/*linux* plugins
 mv $baseDir/plugins/com.jcraft.jsch_* plugins

eclipse-pde.build-add-package-build.patch:

Index: eclipse-pde.build-add-package-build.patch
===================================================================
RCS file: /cvs/pkgs/rpms/eclipse/devel/eclipse-pde.build-add-package-build.patch,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- eclipse-pde.build-add-package-build.patch	6 Aug 2008 22:00:40 -0000	1.8
+++ eclipse-pde.build-add-package-build.patch	27 Aug 2008 20:12:34 -0000	1.9
@@ -6,10 +6,10 @@
 diff -N templates/package-build/prepare-build-dir.sh
 --- /dev/null	1 Jan 1970 00:00:00 -0000
 +++ templates/package-build/prepare-build-dir.sh	1 Jan 1970 00:00:00 -0000
-@@ -0,0 +1,77 @@
+@@ -0,0 +1,96 @@
 +#!/bin/sh
 +
-+if [ $# -ne 2 ]; then 
++if [ $# -lt 2 ]; then 
 +  echo "usage: $0 <path to source dir> <path to build dir>"
 +  exit 1
 +fi
@@ -21,6 +21,7 @@
 +
 +SOURCEDIR=$1
 +BUILDDIR=$2
++TESTING=$3
 +
 +echo "preparing files in $1 for buildfile generation ..."
 +mkdir -p $BUILDDIR
@@ -48,37 +49,55 @@
 +
 +# make symlinks for the features
 +FEATURES=$(find $SOURCEDIR -name feature.xml)
-+for f in $FEATURES; do
-+  PROJECTDIR=$(dirname $f)
-+  PROJECTNAME=$(ant -Dbasedir=$PROJECTDIR -f $BUILDDIR/tmp/feature-build.xml 2>&1 | grep echo | cut --delimiter=' ' -f 7)
-+  if [ -z $PROJECTNAME ]; then
++find $SOURCEDIR -name feature.xml | while read f; do
++  PROJECTDIR=$(dirname "$f")
++  PROJECTNAME=$(ant -Dbasedir="$PROJECTDIR" -f $BUILDDIR/tmp/feature-build.xml 2>&1 | grep echo | cut --delimiter=' ' -f 7)
++  ERROR=""
++  if [ -z "$PROJECTNAME" ]; then
 +    echo "ERROR: could not determine the feature id for $PROJECTDIR"
-+    exit 1
++    if [ $TESTING != true ]; then
++      exit 1
++    else
++      ERROR="yes"
++    fi
 +  fi
 +
-+  echo "  making symlink: $BUILDDIR/features/$PROJECTNAME -> $PROJECTDIR"
-+  ln -sf $PROJECTDIR $BUILDDIR/features/$PROJECTNAME
++  if [ "x$ERROR" != "xyes" ]; then
++    if [[ $TESTING != true || `echo $PROJECTNAME | grep "org.eclipse"` ]]; then
++    echo "  making symlink: $BUILDDIR/features/$PROJECTNAME -> $PROJECTDIR"
++    ln -sf "$PROJECTDIR" $BUILDDIR/features/"$PROJECTNAME"
++    fi
++  fi
 +done
 +
 +# make symlinks for plugins and fragments
 +PLUGINDIRS=$(find $SOURCEDIR -name plugin.xml -o -name fragment.xml -o -name MANIFEST.MF | sed "s/plugin.xml//g" | sed "s/fragment.xml//g" | sed "s/META-INF\/MANIFEST.MF//" | sort | uniq)
-+for dir in $PLUGINDIRS; do
++find $SOURCEDIR -name plugin.xml -o -name fragment.xml -o -name MANIFEST.MF | sed "s/plugin.xml//g" | sed "s/fragment.xml//g" | sed "s/META-INF\/MANIFEST.MF//" | sort | uniq | while read dir; do
 +  PROJECTNAME=""
-+  if [ -e $dir/META-INF/MANIFEST.MF ]; then
++  ERROR=""
++  if [ -e "$dir/META-INF/MANIFEST.MF" ]; then
 +    PROJECTNAME=$(grep Bundle-SymbolicName $dir/META-INF/MANIFEST.MF | cut --delimiter=';' -f 1 | cut --delimiter=' ' -f 2)
-+  elif [ -e $dir/plugin.xml ]; then
++  elif [ -e "$dir/plugin.xml" ]; then
 +    PROJECTNAME=$(ant -Dbasedir=$dir -f $BUILDDIR/tmp/plugin-build.xml 2>&1 | grep echo | cut --delimiter=' ' -f 7)
-+  elif [ -e $dir/fragment.xml ]; then
++  elif [ -e "$dir/fragment.xml" ]; then
 +    PROJECTNAME=$(ant -Dbasedir=$dir -f $BUILDDIR/tmp/fragment-build.xml 2>&1 | grep echo | cut --delimiter=' ' -f 7)
 +  fi
 +
-+  if [ -z $PROJECTNAME  ]; then
++  if [ -z "$PROJECTNAME"  ]; then
 +    echo "ERROR: could not determine the plugin or fragment id for $dir"
-+    exit 1
++    if [ $TESTING != true ]; then
++      exit 1
++    else
++      ERROR="yes"
++    fi
 +  fi
 +
-+  echo "  making symlink: $BUILDDIR/plugins/$PROJECTNAME -> $dir"
-+  ln -sf $dir $BUILDDIR/plugins/$PROJECTNAME
++  if [ "x$ERROR" != "xyes" ]; then
++    if [[ $TESTING != true || `echo $PROJECTNAME | grep "org.eclipse"` ]]; then
++    echo "  making symlink: $BUILDDIR/plugins/$PROJECTNAME -> $dir"
++    ln -sf $dir $BUILDDIR/plugins/"$PROJECTNAME"
++    fi
++  fi;
 +
 +done 
 +
@@ -180,7 +199,7 @@
 +		normally arranges the projects during the fetch stage. Since we aren't doing
 + 		the fetch stage, we have to manually arrange the files -->
 +		<exec dir="${builder}" executable="/bin/sh">
-+			<arg line="prepare-build-dir.sh ${sourceDirectory} ${buildDirectory}" />
++			<arg line="prepare-build-dir.sh ${sourceDirectory} ${buildDirectory} ${testing}" />
 +		</exec>
 +		<exec dir="${builder}" executable="/bin/sh">
 +		    <arg line="symlink-deps.sh ${buildDirectory} ${orbitDepsDir}" />


Index: eclipse-pdebuild.sh
===================================================================
RCS file: /cvs/pkgs/rpms/eclipse/devel/eclipse-pdebuild.sh,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- eclipse-pdebuild.sh	12 Aug 2008 18:53:33 -0000	1.6
+++ eclipse-pdebuild.sh	27 Aug 2008 20:12:34 -0000	1.7
@@ -113,9 +113,11 @@
 dryRun=0
 debugPlatform=0
 orbitDepsDir=
+p2Generate=
+testing=false
 
 # See above.  r = dry run (used for testing)
-while getopts “hf:d:a:j:vrDo:” OPTION
+while getopts “hf:d:a:j:tvrDo:” OPTION
 do
      case $OPTION in
          h)
@@ -134,6 +136,9 @@
          j)
              vmArgs=$OPTARG
              ;;
+         t)
+             testing=true
+             ;;
          v)
              verbose=1
              ;;
@@ -199,6 +204,16 @@
     debugPlatformArgs="-debug -consolelog"
 fi
 
+if [ $testing != true ]; then
+  p2Generate="-Dp2.root.name=\"$featureName\" \
+-Dp2.root.version=\"$featureVersion\" \
+-Dgenerate.p2.metadata=true \
+-Dp2.metadata.repo=file:$buildDir/repo \
+-Dp2.artifact.repo=file:$buildDir/repo \
+-Dp2.flavor=tooling \
+-Dp2.publish.artifacts=true"
+fi
+
 echo
 echo "Starting build:"
 
@@ -214,13 +229,8 @@
 -DbuildDirectory=$buildDir \
 -Dbuilder=$datadir/eclipse/dropins/sdk/plugins/org.eclipse.pde.build_ at PDEBUILDVERSION@/templates/package-build \
 -DorbitDepsDir="$orbitDepsDir" \
--Dp2.root.name="$featureName" \
--Dp2.root.version="$featureVersion" \
--Dgenerate.p2.metadata=true \
--Dp2.metadata.repo=file:$buildDir/repo \
--Dp2.artifact.repo=file:$buildDir/repo \
--Dp2.flavor=tooling \
--Dp2.publish.artifacts=true \
+-Dtesting="$testing" \
+$p2Generate \
 $additionalArgs \
 -f $pdeBuildDir/scripts/build.xml \
 -vmargs \
@@ -240,15 +250,8 @@
     -DbuildDirectory=$buildDir \
     -Dbuilder=$datadir/eclipse/dropins/sdk/plugins/org.eclipse.pde.build_ at PDEBUILDVERSION@/templates/package-build \
     -DorbitDepsDir=$orbitDepsDir \
-    -Dp2.root.name="$featureName" \
-    -Dp2.root.version="$featureVersion" \
-    -Dp2.metadata.repo.name="$featureName" \
-    -Dp2.artifact.repo.version="$featureVersion" \
-    -Dgenerate.p2.metadata=true \
-    -Dp2.metadata.repo=file:$buildDir/repo \
-    -Dp2.artifact.repo=file:$buildDir/repo \
-    -Dp2.flavor=tooling \
-    -Dp2.publish.artifacts=true \
+    -Dtesting="$testing" \
+    $p2Generate \
     $additionalArgs \
     -f $pdeBuildDir/scripts/build.xml \
     -vmargs \
@@ -256,11 +259,13 @@
     $vmArgs
 fi
 
-# Add content.xml into zip
-pushd $buildDir/rpmBuild
-unzip $featureId.zip
-rm $featureId.zip
-cp -p ../repo/content.xml eclipse
-zip -r $featureId.zip eclipse
-rm -rf eclipse
-popd
+if [ $testing != true ]; then
+  # Add content.xml into zip
+  pushd $buildDir/rpmBuild
+  unzip $featureId.zip
+  rm $featureId.zip
+  cp -p ../repo/content.xml eclipse
+  zip -r $featureId.zip eclipse
+  rm -rf eclipse
+  popd
+fi


Index: eclipse.spec
===================================================================
RCS file: /cvs/pkgs/rpms/eclipse/devel/eclipse.spec,v
retrieving revision 1.584
retrieving revision 1.585
diff -u -r1.584 -r1.585
--- eclipse.spec	13 Aug 2008 20:34:33 -0000	1.584
+++ eclipse.spec	27 Aug 2008 20:12:35 -0000	1.585
@@ -23,7 +23,7 @@
 Summary:        An open, extensible IDE
 Name:           eclipse
 Version:        %{eclipse_majmin}.%{eclipse_micro}
-Release:        21%{?dist} 
+Release:        22%{?dist} 
 License:        EPL
 Group:          Text Editors/Integrated Development Environments (IDE)
 URL:            http://www.eclipse.org/
@@ -73,6 +73,18 @@
 # export -r eclipse_r34_1 eclipse-gcj
 # tar cjf eclipse-ecj-gcj.tar.bz2 eclipse-gcj
 Source29:       %{name}-ecj-gcj.tar.bz2
+# Test feature and plugins
+# cvs -d :pserver:anonymous at dev.eclipse.org:/cvsroot/eclipse co equinox-incubator/org.eclipse.equinox.initializer
+# mkdir %{name}-%{version}-testframework; cd %{name}-%{version}-testframework
+# cvs -d :pserver:anonymous at dev.eclipse.org:/cvsroot/eclipse export -r R3_4 \
+#   org.eclipse.test \
+#   org.eclipse.test.performance \
+#   org.eclipse.test-feature \
+#   org.eclipse.ant.optional.junit
+# tar cjf %{name}-%{version}-testframework.tar.bz2 \
+#   %{name}-%{version}-testframework
+# (generated 2008-08-27)
+Source30:       %{name}-%{version}-testframework.tar.bz2
 
 # Build swttools.jar before generation on 64-bit platforms.
 # Build SWT native libraries
@@ -133,6 +145,13 @@
 #Patch39:        %{name}-profilesync-e.o242632.patch
 #Patch40:        %{name}-profilesync-e.o242632-2.patch
 
+# Remove win32 fragment from test feature
+Patch41:        %{name}-nowin32testfragment.patch
+
+# Some fixes for library.xml
+# FIXME:  submit upstream
+Patch42:        %{name}-tests-libraryXml.patch
+
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildRequires:  ant
 BuildRequires:  jpackage-utils >= 0:1.5, make, gcc
@@ -629,6 +648,15 @@
 cp -p %{SOURCE26} feature.xml
 cp -p %{SOURCE27} build.properties
 popd
+popd
+
+# Test framework
+tar jxf %{SOURCE30}
+pushd %{name}-%{version}-testframework
+%patch41
+%patch42
+sed -i "s:/usr/lib/eclipse:%{_libdir}/%{name}:" org.eclipse.test/library.xml
+popd
 
 %build
 ORIGCLASSPATH=$CLASSPATH
@@ -701,6 +729,32 @@
 
 popd
 
+# Build the test framework
+pushd %{name}-%{version}-testframework
+mkdir -p build
+
+# The qualifier is what is in upstream's release:
+# http://download.eclipse.org/eclipse/downloads/drops/R-3.4-200806172000/eclipse-test-framework-3.4.zip
+java -cp $SDK/plugins/org.eclipse.equinox.launcher_$LAUNCHERVERSION \
+     -Duser.home=$homedir                              \
+      org.eclipse.core.launcher.Main \
+     -application org.eclipse.ant.core.antRunner       \
+     -Dtype=feature                                    \
+     -Did=org.eclipse.test                   \
+     -DsourceDirectory=$(pwd)                          \
+     -DbaseLocation=$SDK \
+     -DforceContextQualifier=v20080507 \
+     -Dbuilder=$SDK/plugins/org.eclipse.pde.build_$PDEPLUGINVERSION/templates/package-build  \
+     -f $SDK/plugins/org.eclipse.pde.build_$PDEPLUGINVERSION/scripts/build.xml
+
+unzip build/rpmBuild/org.eclipse.test.zip
+# These are already in the SDK
+rm eclipse/epl-v10.html eclipse/notice.html
+rm -rf plugins/org.junit*
+rm build/rpmBuild/org.eclipse.test.zip
+zip -r build/rpmBuild/org.eclipse.test.zip eclipse
+popd
+
 %install
 rm -rf $RPM_BUILD_ROOT
 
@@ -738,6 +792,11 @@
 rm -rf \
   $sdkDir/features/org.eclipse.ecf.filetransfer_feature_*
 
+# Test framework
+unzip -d $RPM_BUILD_ROOT%{_libdir} \
+  %{name}-%{version}-testframework/build/rpmBuild/org.eclipse.test.zip
+mv $RPM_BUILD_ROOT%{_libdir}/eclipse/plugins/org.eclipse.test{_3.2.0,}
+
 LAUNCHERVERSION=$(ls $sdkDir/plugins | grep equinox.launcher_ | sed 's/org.eclipse.equinox.launcher_//')
 
 # Install the file initializer app
@@ -1458,6 +1517,11 @@
 %{_libdir}/%{name}/configuration/org.eclipse.equinox.source
 
 %changelog
+* Wed Aug 27 2008 Andrew Overholt <overholt at redhat.com> 3.4.0-22
+- Add test framework
+- Remove two duplicate lines in eclipse-mv-Platform.sh
+- Modify package-build and pdebuild so they can build the SDK tests
+
 * Wed Aug 13 2008 Andrew Overholt <overholt at redhat.com> 3.4.0-21
 - Fix ecj-gcj (rhbz#458921)
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/eclipse/devel/sources,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- sources	13 Aug 2008 20:14:30 -0000	1.66
+++ sources	27 Aug 2008 20:12:35 -0000	1.67
@@ -4,3 +4,4 @@
 555c99aee06fc52d2ec03995b5ac0710  eclipse-sourceBuild-srcIncluded-3.4.zip
 372361ae6f1355ec5cfb9a301ad690f5  org.fedoraproject.ide.platform-3.4.0-1.zip
 43c2aa722a815c61706549d28786d134  eclipse-ecj-gcj.tar.bz2
+26ef7c2af793ec8b4ecffb62616483d1  eclipse-3.4.0-testframework.tar.bz2




More information about the fedora-extras-commits mailing list