Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2018-06-06 08:18:02 +0000
committerAlexander Kurtakov2018-06-06 08:19:28 +0000
commitb7d8903644a26c2bb9393dbdc59250316de05ed7 (patch)
tree3e4a37fcd76c1f71a5b104f5a1fdb34e83f442e9 /local-build
parent137459aa9b873954ba17bf2d124d208562b1d7f9 (diff)
downloadeclipse.platform.swt-b7d8903644a26c2bb9393dbdc59250316de05ed7.tar.gz
eclipse.platform.swt-b7d8903644a26c2bb9393dbdc59250316de05ed7.tar.xz
eclipse.platform.swt-b7d8903644a26c2bb9393dbdc59250316de05ed7.zip
Bug 518669 - Drop support for Linux ppc64 in 4.9
Remove build support and tests running setup for ppc64 in swt. Change-Id: I488a6ce9398baca50a7fe1fdd4fa1163868fbf3d Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'local-build')
-rw-r--r--local-build/org.eclipse.swt.fragments.localbuild/META-INF/p2.inf41
1 files changed, 18 insertions, 23 deletions
diff --git a/local-build/org.eclipse.swt.fragments.localbuild/META-INF/p2.inf b/local-build/org.eclipse.swt.fragments.localbuild/META-INF/p2.inf
index 6aba595d6e..7aac548cb4 100644
--- a/local-build/org.eclipse.swt.fragments.localbuild/META-INF/p2.inf
+++ b/local-build/org.eclipse.swt.fragments.localbuild/META-INF/p2.inf
@@ -1,35 +1,30 @@
# pull in the applicable implementation fragment at build time (bug 461427)
+requires.1.namespace = org.eclipse.equinox.p2.iu
+requires.1.name = org.eclipse.swt.win32.win32.x86
+requires.1.range = 0.0.0
+requires.1.filter = (&(osgi.os=win32)(osgi.ws=win32)(osgi.arch=x86))
+
+requires.2.namespace = org.eclipse.equinox.p2.iu
+requires.2.name = org.eclipse.swt.win32.win32.x86_64
+requires.2.range = 0.0.0
+requires.2.filter = (&(osgi.os=win32)(osgi.ws=win32)(osgi.arch=x86_64))
+
requires.3.namespace = org.eclipse.equinox.p2.iu
-requires.3.name = org.eclipse.swt.win32.win32.x86
+requires.3.name = org.eclipse.swt.gtk.linux.x86
requires.3.range = 0.0.0
-requires.3.filter = (&(osgi.os=win32)(osgi.ws=win32)(osgi.arch=x86))
+requires.3.filter = (&(osgi.os=linux)(osgi.ws=gtk)(osgi.arch=x86))
requires.4.namespace = org.eclipse.equinox.p2.iu
-requires.4.name = org.eclipse.swt.win32.win32.x86_64
+requires.4.name = org.eclipse.swt.cocoa.macosx.x86_64
requires.4.range = 0.0.0
-requires.4.filter = (&(osgi.os=win32)(osgi.ws=win32)(osgi.arch=x86_64))
+requires.4.filter = (&(osgi.os=macosx)(osgi.ws=cocoa)(osgi.arch=x86_64))
requires.5.namespace = org.eclipse.equinox.p2.iu
-requires.5.name = org.eclipse.swt.gtk.linux.x86
+requires.5.name = org.eclipse.swt.gtk.linux.x86_64
requires.5.range = 0.0.0
-requires.5.filter = (&(osgi.os=linux)(osgi.ws=gtk)(osgi.arch=x86))
+requires.5.filter = (&(osgi.os=linux)(osgi.ws=gtk)(osgi.arch=x86_64))
requires.6.namespace = org.eclipse.equinox.p2.iu
-requires.6.name = org.eclipse.swt.cocoa.macosx.x86_64
+requires.6.name = org.eclipse.swt.gtk.linux.ppc64le
requires.6.range = 0.0.0
-requires.6.filter = (&(osgi.os=macosx)(osgi.ws=cocoa)(osgi.arch=x86_64))
-
-requires.7.namespace = org.eclipse.equinox.p2.iu
-requires.7.name = org.eclipse.swt.gtk.linux.ppc64
-requires.7.range = 0.0.0
-requires.7.filter = (&(osgi.os=linux)(osgi.ws=gtk)(osgi.arch=ppc64))
-
-requires.8.namespace = org.eclipse.equinox.p2.iu
-requires.8.name = org.eclipse.swt.gtk.linux.x86_64
-requires.8.range = 0.0.0
-requires.8.filter = (&(osgi.os=linux)(osgi.ws=gtk)(osgi.arch=x86_64))
-
-requires.9.namespace = org.eclipse.equinox.p2.iu
-requires.9.name = org.eclipse.swt.gtk.linux.ppc64le
-requires.9.range = 0.0.0
-requires.9.filter = (&(osgi.os=linux)(osgi.ws=gtk)(osgi.arch=ppc64le))
+requires.6.filter = (&(osgi.os=linux)(osgi.ws=gtk)(osgi.arch=ppc64le))

Back to the top