- The Eclipse Foundation makes available all content in this plug-in
- ("Content"). Unless otherwise indicated below, the Content
- is provided to you under the terms and conditions of the Eclipse
- Public License Version 2.0 ("EPL"). A copy of the EPL is
- available at http://www.eclipse.org/legal/epl-2.0.
- For purposes of the EPL, "Program" will mean the Content.
-
-
-
- If you did not receive this Content directly from the Eclipse
- Foundation, the Content is being redistributed by another party
- ("Redistributor") and different terms and conditions may
- apply to your use of any object code in the Content. Check the
- Redistributor's license that was provided with the Content. If no such
- license exists, contact the Redistributor. Unless otherwise indicated
- below, the terms and conditions of the EPL still apply to any source
- code in the Content and such source code may be obtained at http://www.eclipse.org.
-
-
-
-
diff --git a/java/eclipse/files/addons/eclipse.platform/team/bundles/org.eclipse.core.net.freebsd/build.properties b/java/eclipse/files/addons/eclipse.platform/team/bundles/org.eclipse.core.net.freebsd/build.properties
deleted file mode 100644
index 6614e3beff55..000000000000
--- a/java/eclipse/files/addons/eclipse.platform/team/bundles/org.eclipse.core.net.freebsd/build.properties
+++ /dev/null
@@ -1,20 +0,0 @@
-###############################################################################
-# Copyright (c) 2021 Red Hat Inc. and others.
-#
-# This program and the accompanying materials
-# are made available under the terms of the Eclipse Public License 2.0
-# which accompanies this distribution, and is available at
-# https://www.eclipse.org/legal/epl-2.0/
-#
-# SPDX-License-Identifier: EPL-2.0
-#
-# Contributors:
-# Red Hat Inc. - initial API and implementation
-###############################################################################
-bin.includes = fragment.properties,\
- .,\
- META-INF/,\
- about.html
-src.includes = about.html
-source.. = src/
-output.. = bin/
diff --git a/java/eclipse/files/addons/eclipse.platform/team/bundles/org.eclipse.core.net.freebsd/forceQualifierUpdate.txt b/java/eclipse/files/addons/eclipse.platform/team/bundles/org.eclipse.core.net.freebsd/forceQualifierUpdate.txt
deleted file mode 100644
index cdaca2bfa4f3..000000000000
--- a/java/eclipse/files/addons/eclipse.platform/team/bundles/org.eclipse.core.net.freebsd/forceQualifierUpdate.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# To force a version qualifier update add the bug here
-https://github.com/eclipse-platform/eclipse.platform.releng.aggregator/issues/1184
-https://github.com/eclipse-platform/eclipse.platform.releng.aggregator/issues/1659
diff --git a/java/eclipse/files/addons/eclipse.platform/team/bundles/org.eclipse.core.net.freebsd/fragment.properties b/java/eclipse/files/addons/eclipse.platform/team/bundles/org.eclipse.core.net.freebsd/fragment.properties
deleted file mode 100644
index cbcfcd73945f..000000000000
--- a/java/eclipse/files/addons/eclipse.platform/team/bundles/org.eclipse.core.net.freebsd/fragment.properties
+++ /dev/null
@@ -1,15 +0,0 @@
-###############################################################################
-# Copyright (c) 2021 Red Hat Inc. and others.
-#
-# This program and the accompanying materials
-# are made available under the terms of the Eclipse Public License 2.0
-# which accompanies this distribution, and is available at
-# https://www.eclipse.org/legal/epl-2.0/
-#
-# SPDX-License-Identifier: EPL-2.0
-#
-# Contributors:
-# Red Hat Inc. - initial API and implementation
-###############################################################################
-fragmentName = Proxy for Linux
-providerName = Eclipse.org
diff --git a/java/eclipse/files/addons/eclipse.platform/team/bundles/org.eclipse.core.net.freebsd/pom.xml b/java/eclipse/files/addons/eclipse.platform/team/bundles/org.eclipse.core.net.freebsd/pom.xml
deleted file mode 100644
index 1e68e2c574a6..000000000000
--- a/java/eclipse/files/addons/eclipse.platform/team/bundles/org.eclipse.core.net.freebsd/pom.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
- allData = new ArrayList<>();
- for (String type : types) {
- ProxyData pd = getSystemProxyInfo(type);
- if (pd != null && pd.getHost() != null) {
- allData.add(pd);
- }
- }
- return allData.toArray(new IProxyData[0]);
- }
-
- @Override
- public String[] getNonProxiedHosts() {
- String[] npHosts;
-
- if (Policy.DEBUG_SYSTEM_PROVIDERS)
- Policy.debug("Getting no_proxy"); //$NON-NLS-1$
-
- // First try the environment variable which is a URL
- String npEnv = getEnv("no_proxy"); //$NON-NLS-1$
- if (npEnv != null) {
- npHosts = StringUtil.split(npEnv, new String[] { "," }); //$NON-NLS-1$
- for (int i = 0; i < npHosts.length; i++)
- npHosts[i] = npHosts[i].trim();
- if (Policy.DEBUG_SYSTEM_PROVIDERS) {
- Policy.debug("Got Env no_proxy: " + npEnv); //$NON-NLS-1$
- debugPrint(npHosts);
- }
- return npHosts;
- }
-
- if (isGnomeLibLoaded) {
- try {
- npHosts = getGSettingsNonProxyHosts();
- if (npHosts != null && npHosts.length > 0) {
- if (Policy.DEBUG_SYSTEM_PROVIDERS) {
- Policy.debug("Got Gnome no_proxy"); //$NON-NLS-1$
- debugPrint(npHosts);
- }
- return npHosts;
- }
- } catch (UnsatisfiedLinkError e) {
- // The library should be loaded, so this is a real exception
- Activator.logError(
- "Problem during accessing Gnome library", e); //$NON-NLS-1$
- }
- }
-
- return new String[0];
- }
-
- // Returns null if something wrong or there is no proxy for the protocol
- protected ProxyData getSystemProxyInfo(String protocol) {
- ProxyData pd = null;
- String envName = null;
-
- if (Policy.DEBUG_SYSTEM_PROVIDERS)
- Policy.debug("Getting proxies for: " + protocol); //$NON-NLS-1$
-
- try {
- // protocol schemes are ISO 8859 (ASCII)
- protocol = protocol.toLowerCase(Locale.ENGLISH);
-
- // First try the environment variable which is a URL
- envName = protocol + "_proxy"; //$NON-NLS-1$
- String proxyEnv = getEnv(envName);
- if (Policy.DEBUG_SYSTEM_PROVIDERS)
- Policy.debug("Got proxyEnv: " + proxyEnv); //$NON-NLS-1$
-
- if (proxyEnv != null) {
- int colonInd = proxyEnv.indexOf(":"); //$NON-NLS-1$
- if (colonInd !=-1 && proxyEnv.length() > colonInd + 2 && !"//".equals(proxyEnv.substring(colonInd + 1, colonInd + 3))) { //$NON-NLS-1$
- proxyEnv = "http://" + proxyEnv; //$NON-NLS-1$
- }
- URI uri = new URI(proxyEnv);
- pd = new ProxyData(protocol);
- pd.setHost(Objects.requireNonNull(uri.getHost(), "no host in " + proxyEnv)); //$NON-NLS-1$
- int port = uri.getPort();
- if (port == -1) {
- throw new IllegalStateException("no port in " + proxyEnv); //$NON-NLS-1$
- }
- pd.setPort(port);
- String userInfo = uri.getUserInfo();
- if (userInfo != null) {
- String user = null;
- String password = null;
- int pwInd = userInfo.indexOf(':');
- if (pwInd >= 0) {
- user = userInfo.substring(0, pwInd);
- password = userInfo.substring(pwInd + 1);
- } else {
- user = userInfo;
- }
- pd.setUserid(user);
- pd.setPassword(password);
- }
- pd.setSource("LINUX_ENV"); //$NON-NLS-1$
- if (Policy.DEBUG_SYSTEM_PROVIDERS)
- Policy.debug("Got Env proxy: " + pd); //$NON-NLS-1$
- return pd;
- }
- } catch (Exception e) {
- Activator.logError(
- "Problem during accessing system variable: " + envName, e); //$NON-NLS-1$
- }
-
- if (isGnomeLibLoaded) {
- try {
- // Then ask Gnome
- pd = getGSettingsProxyInfo(protocol);
- if (pd != null) {
- if (Policy.DEBUG_SYSTEM_PROVIDERS)
- Policy.debug("Got Gnome proxy: " + pd); //$NON-NLS-1$
- pd.setSource("LINUX_GNOME"); //$NON-NLS-1$
- return pd;
- }
- } catch (UnsatisfiedLinkError e) {
- // The library should be loaded, so this is a real exception
- Activator.logError(
- "Problem during accessing Gnome library", e); //$NON-NLS-1$
- }
- }
-
- return null;
- }
-
- private static String getEnv(String env) {
- try {
- return System.getenv(env);
- } catch (Throwable t) {
- // Fall-back to running 'env' directly. Warning this is very slow...
- // up to 200ms
- String cmd[] = { "/bin/sh", //$NON-NLS-1$
- "-c", //$NON-NLS-1$
- "env | grep -i proxy" }; //$NON-NLS-1$
- Properties props = new Properties();
- Process proc = null;
- try {
- proc = Runtime.getRuntime().exec(cmd);
- props.load(proc.getInputStream());
- } catch (IOException e) {
- Activator.logError(
- "Problem during accessing system variable: " + env, e); //$NON-NLS-1$
- } catch (IllegalArgumentException e) {
- Activator.logError(
- "Problem during accessing system variable: " + env, e); //$NON-NLS-1$
- } finally {
- if (proc != null) {
- proc.destroy();
- }
- }
- return props.getProperty(env);
- }
- }
-
- private void debugPrint(String[] strs) {
- for (int i = 0; i < strs.length; i++)
- System.out.println(i + ": " + strs[i]); //$NON-NLS-1$
- }
-
- private interface LibGio extends Library {
- Pointer g_settings_new(String schema);
- boolean g_settings_get_boolean(Pointer settings, String key);
- Pointer g_settings_get_string(Pointer settings, String key);
- int g_settings_get_int(Pointer settings, String key);
- PointerByReference g_settings_get_strv(Pointer Settings, String key);
- void g_strfreev(PointerByReference p);
- void g_free(Pointer p);
- }
-
- private static void initializeSettings() {
- try {
- fLibGio = Native.load(LIBRARY_NAME, LibGio.class);
- proxySettings = fLibGio.g_settings_new ("org.gnome.system.proxy"); //$NON-NLS-1$
- httpProxySettings = fLibGio.g_settings_new ("org.gnome.system.proxy.http"); //$NON-NLS-1$
- httpsProxySettings = fLibGio.g_settings_new ("org.gnome.system.proxy.https"); //$NON-NLS-1$
- socksProxySettings = fLibGio.g_settings_new ("org.gnome.system.proxy.socks"); //$NON-NLS-1$
- ftpProxySettings = fLibGio.g_settings_new ("org.gnome.system.proxy.ftp"); //$NON-NLS-1$
- isGnomeLibLoaded= true;
- if (Policy.DEBUG_SYSTEM_PROVIDERS)
- Policy.debug("Loaded " + //$NON-NLS-1$
- System.mapLibraryName(LIBRARY_NAME) + " library"); //$NON-NLS-1$
- } catch (UnsatisfiedLinkError e) {
- isGnomeLibLoaded= false;
- if (Policy.DEBUG_SYSTEM_PROVIDERS)
- Policy.debug("Could not load library: " //$NON-NLS-1$
- + System.mapLibraryName(LIBRARY_NAME));
- }
- }
-
- protected static ProxyData getGSettingsProxyInfo(String protocol) {
-
- if (protocol == null) {
- return null;
- }
-
- if (proxySettings == Pointer.NULL) {
- initializeSettings();
- }
-
- // Everything else applies only if the system proxy mode is manual
- // Auto-configuration is not supported
- Pointer mode = fLibGio.g_settings_get_string(proxySettings, "mode"); //$NON-NLS-1$
- if (!mode.getString(0).equalsIgnoreCase("manual")) { //$NON-NLS-1$
- fLibGio.g_free(mode);
- return null;
- }
- fLibGio.g_free(mode);
-
- Pointer host;
- int port;
-
- switch (protocol.toLowerCase()) {
- case "http": //$NON-NLS-1$
- host = fLibGio.g_settings_get_string(httpProxySettings, "host"); //$NON-NLS-1$
- port = fLibGio.g_settings_get_int(httpProxySettings, "port"); //$NON-NLS-1$
- break;
- case "https": //$NON-NLS-1$
- host = fLibGio.g_settings_get_string(httpsProxySettings, "host"); //$NON-NLS-1$
- port = fLibGio.g_settings_get_int(httpsProxySettings, "port"); //$NON-NLS-1$
- break;
- case "ftp": //$NON-NLS-1$
- host = fLibGio.g_settings_get_string(ftpProxySettings, "host"); //$NON-NLS-1$
- port = fLibGio.g_settings_get_int(ftpProxySettings, "port"); //$NON-NLS-1$
- break;
- case "socks": //$NON-NLS-1$
- host = fLibGio.g_settings_get_string(socksProxySettings, "host"); //$NON-NLS-1$
- port = fLibGio.g_settings_get_int(socksProxySettings, "port"); //$NON-NLS-1$
- break;
- default:
- // Unknown/invalid proxy type
- return null;
- }
-
- ProxyData proxyData = new ProxyData(protocol);
- proxyData.setHost(host.getString(0));
- fLibGio.g_free(host);
- proxyData.setPort(port);
-
- // Each proxy type is enabled only if the "host" key is non-empty and its "port" key is non-0
- if (proxyData.getHost() == null || proxyData.getPort() == 0) {
- return null;
- }
-
- if (protocol.equalsIgnoreCase("http")) { //$NON-NLS-1$
- // Authentication applies only to http proxies
- boolean reqAuth = fLibGio.g_settings_get_boolean(httpProxySettings, "use-authentication"); //$NON-NLS-1$
- if (reqAuth) {
- Pointer user = fLibGio.g_settings_get_string(httpProxySettings, "authentication-user"); //$NON-NLS-1$
- proxyData.setUserid(user.getString(0));
- fLibGio.g_free(user);
-
- Pointer password = fLibGio.g_settings_get_string(httpProxySettings, "authentication-password"); //$NON-NLS-1$
- proxyData.setPassword(password.getString(0));
- fLibGio.g_free(password);
- }
- }
-
- return proxyData;
- }
-
- protected static String[] getGSettingsNonProxyHosts() {
- if (proxySettings == Pointer.NULL) {
- initializeSettings();
- }
-
- // Everything else applies only if the system proxy mode is manual
- // Auto-configuration is not supported
- Pointer mode = fLibGio.g_settings_get_string(proxySettings, "mode"); //$NON-NLS-1$
- if (!mode.getString(0).equalsIgnoreCase("manual")) { //$NON-NLS-1$
- fLibGio.g_free(mode);
- return null;
- }
- fLibGio.g_free(mode);
-
- PointerByReference npHostsArray = fLibGio.g_settings_get_strv(proxySettings, "ignore-hosts"); //$NON-NLS-1$
- String[] npHosts = npHostsArray.getPointer().getStringArray(0);
-
- fLibGio.g_strfreev(npHostsArray);
-
- return npHosts;
- }
-
-}
-
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.aarch64/.project b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.aarch64/.project
deleted file mode 100644
index 14e9281df31a..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.aarch64/.project
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
- org.eclipse.equinox.launcher.gtk.freebsd.aarch64
-
-
-
-
-
- org.eclipse.pde.ManifestBuilder
-
-
-
-
- org.eclipse.pde.SchemaBuilder
-
-
-
-
-
- org.eclipse.pde.PluginNature
-
-
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.aarch64/META-INF/MANIFEST.MF b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.aarch64/META-INF/MANIFEST.MF
deleted file mode 100644
index f1dae5db5782..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.aarch64/META-INF/MANIFEST.MF
+++ /dev/null
@@ -1,10 +0,0 @@
-Manifest-Version: 1.0
-Bundle-ManifestVersion: 2
-Bundle-Name: %pluginName
-Bundle-Vendor: %providerName
-Bundle-SymbolicName: org.eclipse.equinox.launcher.gtk.freebsd.aarch64;singleton:=true
-Bundle-Version: 1.2.1000.qualifier
-Fragment-Host: org.eclipse.equinox.launcher;bundle-version="[1.5.0,1.7.0)"
-Eclipse-PlatformFilter: (& (osgi.ws=gtk) (osgi.os=freebsd) (osgi.arch=aarch64))
-Bundle-Localization: launcher.gtk.freebsd.aarch64
-Eclipse-BundleShape: dir
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.aarch64/about.html b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.aarch64/about.html
deleted file mode 100644
index 8eee37d47051..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.aarch64/about.html
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
-About
-
-
- About This Content
-
- November 30, 2017
- License
-
-
- The Eclipse Foundation makes available all content in this plug-in
- ("Content"). Unless otherwise indicated below, the Content
- is provided to you under the terms and conditions of the Eclipse
- Public License Version 2.0 ("EPL"). A copy of the EPL is
- available at http://www.eclipse.org/legal/epl-2.0.
- For purposes of the EPL, "Program" will mean the Content.
-
-
-
- If you did not receive this Content directly from the Eclipse
- Foundation, the Content is being redistributed by another party
- ("Redistributor") and different terms and conditions may
- apply to your use of any object code in the Content. Check the
- Redistributor's license that was provided with the Content. If no such
- license exists, contact the Redistributor. Unless otherwise indicated
- below, the terms and conditions of the EPL still apply to any source
- code in the Content and such source code may be obtained at http://www.eclipse.org.
-
-
-
-
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.aarch64/build.properties b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.aarch64/build.properties
deleted file mode 100644
index 5325df089bcb..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.aarch64/build.properties
+++ /dev/null
@@ -1,25 +0,0 @@
-###############################################################################
-# Copyright (c) 2015, 2022 Red Hat Inc. and others.
-#
-# This program and the accompanying materials
-# are made available under the terms of the Eclipse Public License 2.0
-# which accompanies this distribution, and is available at
-# https://www.eclipse.org/legal/epl-2.0/
-#
-# SPDX-License-Identifier: EPL-2.0
-#
-# Contributors:
-# Red Hat Inc. - initial API and implementation
-###############################################################################
-bin.includes = META-INF/,\
- launcher.gtk.freebsd.aarch64.properties,\
- about.html
-
-generateSourceBundle=false
-binaryTag=LBv1-1901
-
-# Maven properties, see https://github.com/eclipse/tycho/wiki/Tycho-Pomless#define-properties
-tycho.pomless.parent = ../../launcher-binary-parent
-pom.model.property.os = freebsd
-pom.model.property.ws = gtk
-pom.model.property.arch = aarch64
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.aarch64/launcher.gtk.freebsd.aarch64.properties b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.aarch64/launcher.gtk.freebsd.aarch64.properties
deleted file mode 100644
index b1e2f588997b..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.aarch64/launcher.gtk.freebsd.aarch64.properties
+++ /dev/null
@@ -1,15 +0,0 @@
-###############################################################################
-# Copyright (c) 2015 Red Hat Inc. and others.
-#
-# This program and the accompanying materials
-# are made available under the terms of the Eclipse Public License 2.0
-# which accompanies this distribution, and is available at
-# https://www.eclipse.org/legal/epl-2.0/
-#
-# SPDX-License-Identifier: EPL-2.0
-#
-# Contributors:
-# Red Hat Inc. - initial API and implementation
-###############################################################################
-pluginName = Equinox Launcher Linux AARCH64 Fragment
-providerName = Eclipse.org - Equinox
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64/.project b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64/.project
deleted file mode 100644
index 9c31e70b6e1c..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64/.project
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
- org.eclipse.equinox.launcher.gtk.freebsd.powerpc64
-
-
-
-
-
- org.eclipse.pde.ManifestBuilder
-
-
-
-
- org.eclipse.pde.SchemaBuilder
-
-
-
-
-
- org.eclipse.pde.PluginNature
-
-
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64/META-INF/MANIFEST.MF b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64/META-INF/MANIFEST.MF
deleted file mode 100644
index 9ddb183f8ec0..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64/META-INF/MANIFEST.MF
+++ /dev/null
@@ -1,10 +0,0 @@
-Manifest-Version: 1.0
-Bundle-ManifestVersion: 2
-Bundle-Name: %pluginName
-Bundle-Vendor: %providerName
-Bundle-SymbolicName: org.eclipse.equinox.launcher.gtk.freebsd.powerpc64;singleton:=true
-Bundle-Version: 1.2.1000.qualifier
-Fragment-Host: org.eclipse.equinox.launcher;bundle-version="[1.5.0,1.7.0)"
-Eclipse-PlatformFilter: (& (osgi.ws=gtk) (osgi.os=freebsd) (osgi.arch=powerpc64))
-Bundle-Localization: launcher.gtk.freebsd.powerpc64
-Eclipse-BundleShape: dir
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64/about.html b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64/about.html
deleted file mode 100644
index 8eee37d47051..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64/about.html
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
-About
-
-
- About This Content
-
- November 30, 2017
- License
-
-
- The Eclipse Foundation makes available all content in this plug-in
- ("Content"). Unless otherwise indicated below, the Content
- is provided to you under the terms and conditions of the Eclipse
- Public License Version 2.0 ("EPL"). A copy of the EPL is
- available at http://www.eclipse.org/legal/epl-2.0.
- For purposes of the EPL, "Program" will mean the Content.
-
-
-
- If you did not receive this Content directly from the Eclipse
- Foundation, the Content is being redistributed by another party
- ("Redistributor") and different terms and conditions may
- apply to your use of any object code in the Content. Check the
- Redistributor's license that was provided with the Content. If no such
- license exists, contact the Redistributor. Unless otherwise indicated
- below, the terms and conditions of the EPL still apply to any source
- code in the Content and such source code may be obtained at http://www.eclipse.org.
-
-
-
-
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64/build.properties b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64/build.properties
deleted file mode 100644
index 10d9039c1d8e..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64/build.properties
+++ /dev/null
@@ -1,25 +0,0 @@
-###############################################################################
-# Copyright (c) 2014, 2022 Red Hat Inc. and others.
-#
-# This program and the accompanying materials
-# are made available under the terms of the Eclipse Public License 2.0
-# which accompanies this distribution, and is available at
-# https://www.eclipse.org/legal/epl-2.0/
-#
-# SPDX-License-Identifier: EPL-2.0
-#
-# Contributors:
-# Alexander Kurtatkov - initial API and implementation
-###############################################################################
-bin.includes = META-INF/,\
- launcher.gtk.freebsd.powerpc64.properties,\
- about.html
-
-generateSourceBundle=false
-binaryTag=LBv1-1901
-
-# Maven properties, see https://github.com/eclipse/tycho/wiki/Tycho-Pomless
-tycho.pomless.parent = ../../launcher-binary-parent
-pom.model.property.os = freebsd
-pom.model.property.ws = gtk
-pom.model.property.arch = powerpc64
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64/forceQualifierUpdate.txt b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64/forceQualifierUpdate.txt
deleted file mode 100644
index 5a95097dc93e..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64/forceQualifierUpdate.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-# To force a version qualifier update add the bug here
-I20180131-2000 comparator error
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64/launcher.gtk.freebsd.powerpc64.properties b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64/launcher.gtk.freebsd.powerpc64.properties
deleted file mode 100644
index 99cbbf0aeb98..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64/launcher.gtk.freebsd.powerpc64.properties
+++ /dev/null
@@ -1,15 +0,0 @@
-###############################################################################
-# Copyright (c) 2014 Red Hat Inc. and others.
-#
-# This program and the accompanying materials
-# are made available under the terms of the Eclipse Public License 2.0
-# which accompanies this distribution, and is available at
-# https://www.eclipse.org/legal/epl-2.0/
-#
-# SPDX-License-Identifier: EPL-2.0
-#
-# Contributors:
-# Alexander Kurtakov - initial API and implementation
-###############################################################################
-pluginName = Equinox Launcher Linux PPC64le Fragment
-providerName = Eclipse.org - Equinox
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64le/.project b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64le/.project
deleted file mode 100644
index 411ba085ebee..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64le/.project
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
- org.eclipse.equinox.launcher.gtk.freebsd.powerpc64le
-
-
-
-
-
- org.eclipse.pde.ManifestBuilder
-
-
-
-
- org.eclipse.pde.SchemaBuilder
-
-
-
-
-
- org.eclipse.pde.PluginNature
-
-
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64le/META-INF/MANIFEST.MF b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64le/META-INF/MANIFEST.MF
deleted file mode 100644
index 5fd13e4e6e3a..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64le/META-INF/MANIFEST.MF
+++ /dev/null
@@ -1,10 +0,0 @@
-Manifest-Version: 1.0
-Bundle-ManifestVersion: 2
-Bundle-Name: %pluginName
-Bundle-Vendor: %providerName
-Bundle-SymbolicName: org.eclipse.equinox.launcher.gtk.freebsd.powerpc64le;singleton:=true
-Bundle-Version: 1.2.1000.qualifier
-Fragment-Host: org.eclipse.equinox.launcher;bundle-version="[1.5.0,1.7.0)"
-Eclipse-PlatformFilter: (& (osgi.ws=gtk) (osgi.os=freebsd) (osgi.arch=powerpc64le))
-Bundle-Localization: launcher.gtk.freebsd.powerpc64le
-Eclipse-BundleShape: dir
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64le/about.html b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64le/about.html
deleted file mode 100644
index 8eee37d47051..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64le/about.html
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
-About
-
-
- About This Content
-
- November 30, 2017
- License
-
-
- The Eclipse Foundation makes available all content in this plug-in
- ("Content"). Unless otherwise indicated below, the Content
- is provided to you under the terms and conditions of the Eclipse
- Public License Version 2.0 ("EPL"). A copy of the EPL is
- available at http://www.eclipse.org/legal/epl-2.0.
- For purposes of the EPL, "Program" will mean the Content.
-
-
-
- If you did not receive this Content directly from the Eclipse
- Foundation, the Content is being redistributed by another party
- ("Redistributor") and different terms and conditions may
- apply to your use of any object code in the Content. Check the
- Redistributor's license that was provided with the Content. If no such
- license exists, contact the Redistributor. Unless otherwise indicated
- below, the terms and conditions of the EPL still apply to any source
- code in the Content and such source code may be obtained at http://www.eclipse.org.
-
-
-
-
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64le/build.properties b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64le/build.properties
deleted file mode 100644
index aea0dd5ec475..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64le/build.properties
+++ /dev/null
@@ -1,25 +0,0 @@
-###############################################################################
-# Copyright (c) 2014, 2022 Red Hat Inc. and others.
-#
-# This program and the accompanying materials
-# are made available under the terms of the Eclipse Public License 2.0
-# which accompanies this distribution, and is available at
-# https://www.eclipse.org/legal/epl-2.0/
-#
-# SPDX-License-Identifier: EPL-2.0
-#
-# Contributors:
-# Alexander Kurtatkov - initial API and implementation
-###############################################################################
-bin.includes = META-INF/,\
- launcher.gtk.freebsd.powerpc64le.properties,\
- about.html
-
-generateSourceBundle=false
-binaryTag=LBv1-1901
-
-# Maven properties, see https://github.com/eclipse/tycho/wiki/Tycho-Pomless
-tycho.pomless.parent = ../../launcher-binary-parent
-pom.model.property.os = freebsd
-pom.model.property.ws = gtk
-pom.model.property.arch = powerpc64le
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64le/forceQualifierUpdate.txt b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64le/forceQualifierUpdate.txt
deleted file mode 100644
index 5a95097dc93e..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64le/forceQualifierUpdate.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-# To force a version qualifier update add the bug here
-I20180131-2000 comparator error
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64le/launcher.gtk.freebsd.powerpc64le.properties b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64le/launcher.gtk.freebsd.powerpc64le.properties
deleted file mode 100644
index 99cbbf0aeb98..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.powerpc64le/launcher.gtk.freebsd.powerpc64le.properties
+++ /dev/null
@@ -1,15 +0,0 @@
-###############################################################################
-# Copyright (c) 2014 Red Hat Inc. and others.
-#
-# This program and the accompanying materials
-# are made available under the terms of the Eclipse Public License 2.0
-# which accompanies this distribution, and is available at
-# https://www.eclipse.org/legal/epl-2.0/
-#
-# SPDX-License-Identifier: EPL-2.0
-#
-# Contributors:
-# Alexander Kurtakov - initial API and implementation
-###############################################################################
-pluginName = Equinox Launcher Linux PPC64le Fragment
-providerName = Eclipse.org - Equinox
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.x86_64/.project b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.x86_64/.project
deleted file mode 100644
index b8fa5a05b295..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.x86_64/.project
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
- org.eclipse.equinox.launcher.gtk.freebsd.x86_64
-
-
-
-
-
- org.eclipse.pde.ManifestBuilder
-
-
-
-
- org.eclipse.pde.SchemaBuilder
-
-
-
-
-
- org.eclipse.pde.PluginNature
-
-
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.x86_64/.settings/org.eclipse.pde.core.prefs b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.x86_64/.settings/org.eclipse.pde.core.prefs
deleted file mode 100644
index dd6790316c1d..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.x86_64/.settings/org.eclipse.pde.core.prefs
+++ /dev/null
@@ -1,4 +0,0 @@
-#Wed Dec 06 11:46:47 EST 2006
-eclipse.preferences.version=1
-pluginProject.extensions=false
-resolve.requirebundle=false
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.x86_64/META-INF/MANIFEST.MF b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.x86_64/META-INF/MANIFEST.MF
deleted file mode 100644
index 9a2f90355d04..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.x86_64/META-INF/MANIFEST.MF
+++ /dev/null
@@ -1,10 +0,0 @@
-Manifest-Version: 1.0
-Bundle-ManifestVersion: 2
-Bundle-Name: %pluginName
-Bundle-Vendor: %providerName
-Bundle-SymbolicName: org.eclipse.equinox.launcher.gtk.freebsd.x86_64;singleton:=true
-Bundle-Version: 1.2.1000.qualifier
-Fragment-Host: org.eclipse.equinox.launcher;bundle-version="[1.5.0,1.7.0)"
-Eclipse-PlatformFilter: (& (osgi.ws=gtk) (osgi.os=freebsd) (osgi.arch=x86_64))
-Bundle-Localization: launcher.gtk.freebsd.x86_64
-Eclipse-BundleShape: dir
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.x86_64/about.html b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.x86_64/about.html
deleted file mode 100644
index 8eee37d47051..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.x86_64/about.html
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
-About
-
-
- About This Content
-
- November 30, 2017
- License
-
-
- The Eclipse Foundation makes available all content in this plug-in
- ("Content"). Unless otherwise indicated below, the Content
- is provided to you under the terms and conditions of the Eclipse
- Public License Version 2.0 ("EPL"). A copy of the EPL is
- available at http://www.eclipse.org/legal/epl-2.0.
- For purposes of the EPL, "Program" will mean the Content.
-
-
-
- If you did not receive this Content directly from the Eclipse
- Foundation, the Content is being redistributed by another party
- ("Redistributor") and different terms and conditions may
- apply to your use of any object code in the Content. Check the
- Redistributor's license that was provided with the Content. If no such
- license exists, contact the Redistributor. Unless otherwise indicated
- below, the terms and conditions of the EPL still apply to any source
- code in the Content and such source code may be obtained at http://www.eclipse.org.
-
-
-
-
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.x86_64/build.properties b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.x86_64/build.properties
deleted file mode 100644
index 63f478cd9c0c..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.x86_64/build.properties
+++ /dev/null
@@ -1,25 +0,0 @@
-###############################################################################
-# Copyright (c) 2011, 2022 IBM Corporation and others.
-#
-# This program and the accompanying materials
-# are made available under the terms of the Eclipse Public License 2.0
-# which accompanies this distribution, and is available at
-# https://www.eclipse.org/legal/epl-2.0/
-#
-# SPDX-License-Identifier: EPL-2.0
-#
-# Contributors:
-# IBM Corporation - initial API and implementation
-###############################################################################
-bin.includes = META-INF/,\
- launcher.gtk.freebsd.x86_64.properties,\
- about.html
-
-generateSourceBundle=false
-binaryTag=LBv1-1901
-
-# Maven properties, see https://github.com/eclipse/tycho/wiki/Tycho-Pomless
-tycho.pomless.parent = ../../launcher-binary-parent
-pom.model.property.os = freebsd
-pom.model.property.ws = gtk
-pom.model.property.arch = x86_64
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.x86_64/forceQualifierUpdate.txt b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.x86_64/forceQualifierUpdate.txt
deleted file mode 100644
index 6a339fb98d2c..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.x86_64/forceQualifierUpdate.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# To force a version qualifier update add the bug here
-Bug 403352 - Update all parent versions to match our build stream
-I20180131-2000 comparator error
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.x86_64/launcher.gtk.freebsd.x86_64.properties b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.x86_64/launcher.gtk.freebsd.x86_64.properties
deleted file mode 100644
index 0390ce5f08ea..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.launcher.gtk.freebsd.x86_64/launcher.gtk.freebsd.x86_64.properties
+++ /dev/null
@@ -1,15 +0,0 @@
-###############################################################################
-# Copyright (c) 2007, 2009 IBM Corporation and others.
-#
-# This program and the accompanying materials
-# are made available under the terms of the Eclipse Public License 2.0
-# which accompanies this distribution, and is available at
-# https://www.eclipse.org/legal/epl-2.0/
-#
-# SPDX-License-Identifier: EPL-2.0
-#
-# Contributors:
-# IBM Corporation - initial API and implementation
-###############################################################################
-pluginName = Equinox Launcher Linux X86_64 Fragment
-providerName = Eclipse.org - Equinox
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/.classpath b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/.classpath
deleted file mode 100644
index a7bc712151f9..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/.classpath
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/.project b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/.project
deleted file mode 100644
index 13077bb3fde7..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/.project
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
- org.eclipse.equinox.security.freebsd
-
-
-
-
-
- org.eclipse.jdt.core.javabuilder
-
-
-
-
- org.eclipse.pde.ManifestBuilder
-
-
-
-
- org.eclipse.pde.SchemaBuilder
-
-
-
-
- org.eclipse.pde.api.tools.apiAnalysisBuilder
-
-
-
-
-
- org.eclipse.pde.PluginNature
- org.eclipse.jdt.core.javanature
- org.eclipse.pde.api.tools.apiAnalysisNature
-
-
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/.settings/org.eclipse.core.runtime.prefs b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/.settings/org.eclipse.core.runtime.prefs
deleted file mode 100644
index 5a0ad22d2a76..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/.settings/org.eclipse.core.runtime.prefs
+++ /dev/null
@@ -1,2 +0,0 @@
-eclipse.preferences.version=1
-line.separator=\n
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/.settings/org.eclipse.jdt.core.prefs b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/.settings/org.eclipse.jdt.core.prefs
deleted file mode 100644
index c1c8dc4447f9..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/.settings/org.eclipse.jdt.core.prefs
+++ /dev/null
@@ -1,118 +0,0 @@
-eclipse.preferences.version=1
-org.eclipse.jdt.core.compiler.annotation.inheritNullAnnotations=disabled
-org.eclipse.jdt.core.compiler.annotation.missingNonNullByDefaultAnnotation=ignore
-org.eclipse.jdt.core.compiler.annotation.nonnull=org.eclipse.jdt.annotation.NonNull
-org.eclipse.jdt.core.compiler.annotation.nonnull.secondary=
-org.eclipse.jdt.core.compiler.annotation.nonnullbydefault=org.eclipse.jdt.annotation.NonNullByDefault
-org.eclipse.jdt.core.compiler.annotation.nonnullbydefault.secondary=
-org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable
-org.eclipse.jdt.core.compiler.annotation.nullable.secondary=
-org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
-org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
-org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
-org.eclipse.jdt.core.compiler.codegen.targetPlatform=17
-org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
-org.eclipse.jdt.core.compiler.compliance=17
-org.eclipse.jdt.core.compiler.debug.lineNumber=generate
-org.eclipse.jdt.core.compiler.debug.localVariable=generate
-org.eclipse.jdt.core.compiler.debug.sourceFile=generate
-org.eclipse.jdt.core.compiler.problem.APILeak=warning
-org.eclipse.jdt.core.compiler.problem.annotatedTypeArgumentToUnannotated=info
-org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning
-org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
-org.eclipse.jdt.core.compiler.problem.autoboxing=ignore
-org.eclipse.jdt.core.compiler.problem.comparingIdentical=warning
-org.eclipse.jdt.core.compiler.problem.deadCode=warning
-org.eclipse.jdt.core.compiler.problem.deprecation=warning
-org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled
-org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=disabled
-org.eclipse.jdt.core.compiler.problem.discouragedReference=warning
-org.eclipse.jdt.core.compiler.problem.emptyStatement=warning
-org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
-org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
-org.eclipse.jdt.core.compiler.problem.explicitlyClosedAutoCloseable=warning
-org.eclipse.jdt.core.compiler.problem.fallthroughCase=ignore
-org.eclipse.jdt.core.compiler.problem.fatalOptionalError=disabled
-org.eclipse.jdt.core.compiler.problem.fieldHiding=ignore
-org.eclipse.jdt.core.compiler.problem.finalParameterBound=warning
-org.eclipse.jdt.core.compiler.problem.finallyBlockNotCompletingNormally=warning
-org.eclipse.jdt.core.compiler.problem.forbiddenReference=error
-org.eclipse.jdt.core.compiler.problem.hiddenCatchBlock=warning
-org.eclipse.jdt.core.compiler.problem.includeNullInfoFromAsserts=disabled
-org.eclipse.jdt.core.compiler.problem.incompatibleNonInheritedInterfaceMethod=warning
-org.eclipse.jdt.core.compiler.problem.incompleteEnumSwitch=warning
-org.eclipse.jdt.core.compiler.problem.indirectStaticAccess=warning
-org.eclipse.jdt.core.compiler.problem.localVariableHiding=ignore
-org.eclipse.jdt.core.compiler.problem.methodWithConstructorName=warning
-org.eclipse.jdt.core.compiler.problem.missingDefaultCase=ignore
-org.eclipse.jdt.core.compiler.problem.missingDeprecatedAnnotation=warning
-org.eclipse.jdt.core.compiler.problem.missingEnumCaseDespiteDefault=disabled
-org.eclipse.jdt.core.compiler.problem.missingHashCodeMethod=ignore
-org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotation=warning
-org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotationForInterfaceMethodImplementation=enabled
-org.eclipse.jdt.core.compiler.problem.missingSerialVersion=warning
-org.eclipse.jdt.core.compiler.problem.missingSynchronizedOnInheritedMethod=ignore
-org.eclipse.jdt.core.compiler.problem.noEffectAssignment=warning
-org.eclipse.jdt.core.compiler.problem.noImplicitStringConversion=warning
-org.eclipse.jdt.core.compiler.problem.nonExternalizedStringLiteral=warning
-org.eclipse.jdt.core.compiler.problem.nonnullParameterAnnotationDropped=warning
-org.eclipse.jdt.core.compiler.problem.nonnullTypeVariableFromLegacyInvocation=warning
-org.eclipse.jdt.core.compiler.problem.nullAnnotationInferenceConflict=error
-org.eclipse.jdt.core.compiler.problem.nullReference=warning
-org.eclipse.jdt.core.compiler.problem.nullSpecViolation=error
-org.eclipse.jdt.core.compiler.problem.nullUncheckedConversion=warning
-org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning
-org.eclipse.jdt.core.compiler.problem.parameterAssignment=ignore
-org.eclipse.jdt.core.compiler.problem.pessimisticNullAnalysisForFreeTypeVariables=warning
-org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=ignore
-org.eclipse.jdt.core.compiler.problem.potentialNullReference=ignore
-org.eclipse.jdt.core.compiler.problem.potentiallyUnclosedCloseable=ignore
-org.eclipse.jdt.core.compiler.problem.rawTypeReference=warning
-org.eclipse.jdt.core.compiler.problem.redundantNullAnnotation=warning
-org.eclipse.jdt.core.compiler.problem.redundantNullCheck=ignore
-org.eclipse.jdt.core.compiler.problem.redundantSpecificationOfTypeArguments=warning
-org.eclipse.jdt.core.compiler.problem.redundantSuperinterface=warning
-org.eclipse.jdt.core.compiler.problem.reportMethodCanBePotentiallyStatic=ignore
-org.eclipse.jdt.core.compiler.problem.reportMethodCanBeStatic=ignore
-org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning
-org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled
-org.eclipse.jdt.core.compiler.problem.staticAccessReceiver=warning
-org.eclipse.jdt.core.compiler.problem.suppressOptionalErrors=disabled
-org.eclipse.jdt.core.compiler.problem.suppressWarnings=enabled
-org.eclipse.jdt.core.compiler.problem.suppressWarningsNotFullyAnalysed=info
-org.eclipse.jdt.core.compiler.problem.syntacticNullAnalysisForFields=disabled
-org.eclipse.jdt.core.compiler.problem.syntheticAccessEmulation=ignore
-org.eclipse.jdt.core.compiler.problem.terminalDeprecation=warning
-org.eclipse.jdt.core.compiler.problem.typeParameterHiding=warning
-org.eclipse.jdt.core.compiler.problem.unavoidableGenericTypeProblems=enabled
-org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
-org.eclipse.jdt.core.compiler.problem.unclosedCloseable=warning
-org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=ignore
-org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning
-org.eclipse.jdt.core.compiler.problem.unlikelyCollectionMethodArgumentType=warning
-org.eclipse.jdt.core.compiler.problem.unlikelyCollectionMethodArgumentTypeStrict=disabled
-org.eclipse.jdt.core.compiler.problem.unlikelyEqualsArgumentType=info
-org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
-org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=warning
-org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
-org.eclipse.jdt.core.compiler.problem.unstableAutoModuleName=warning
-org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=ignore
-org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled
-org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
-org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled
-org.eclipse.jdt.core.compiler.problem.unusedExceptionParameter=ignore
-org.eclipse.jdt.core.compiler.problem.unusedImport=warning
-org.eclipse.jdt.core.compiler.problem.unusedLabel=warning
-org.eclipse.jdt.core.compiler.problem.unusedLocal=warning
-org.eclipse.jdt.core.compiler.problem.unusedObjectAllocation=ignore
-org.eclipse.jdt.core.compiler.problem.unusedParameter=ignore
-org.eclipse.jdt.core.compiler.problem.unusedParameterIncludeDocCommentReference=enabled
-org.eclipse.jdt.core.compiler.problem.unusedParameterWhenImplementingAbstract=disabled
-org.eclipse.jdt.core.compiler.problem.unusedParameterWhenOverridingConcrete=disabled
-org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
-org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore
-org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
-org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
-org.eclipse.jdt.core.compiler.release=enabled
-org.eclipse.jdt.core.compiler.source=17
-org.eclipse.objectteams.otdt.compiler.option.pure_java=enabled
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/.settings/org.eclipse.jdt.ui.prefs b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/.settings/org.eclipse.jdt.ui.prefs
deleted file mode 100644
index 6b0b13e2f63f..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/.settings/org.eclipse.jdt.ui.prefs
+++ /dev/null
@@ -1,109 +0,0 @@
-eclipse.preferences.version=1
-editor_save_participant_org.eclipse.jdt.ui.postsavelistener.cleanup=true
-sp_cleanup.add_all=false
-sp_cleanup.add_default_serial_version_id=true
-sp_cleanup.add_generated_serial_version_id=false
-sp_cleanup.add_missing_annotations=true
-sp_cleanup.add_missing_deprecated_annotations=true
-sp_cleanup.add_missing_methods=false
-sp_cleanup.add_missing_nls_tags=false
-sp_cleanup.add_missing_override_annotations=true
-sp_cleanup.add_missing_override_annotations_interface_methods=true
-sp_cleanup.add_serial_version_id=false
-sp_cleanup.always_use_blocks=true
-sp_cleanup.always_use_parentheses_in_expressions=false
-sp_cleanup.always_use_this_for_non_static_field_access=false
-sp_cleanup.always_use_this_for_non_static_method_access=false
-sp_cleanup.arrays_fill=false
-sp_cleanup.bitwise_conditional_expression=false
-sp_cleanup.boolean_literal=false
-sp_cleanup.break_loop=false
-sp_cleanup.collection_cloning=false
-sp_cleanup.comparison_statement=false
-sp_cleanup.controlflow_merge=false
-sp_cleanup.convert_functional_interfaces=false
-sp_cleanup.convert_to_enhanced_for_loop=false
-sp_cleanup.convert_to_enhanced_for_loop_if_loop_var_used=false
-sp_cleanup.convert_to_switch_expressions=false
-sp_cleanup.correct_indentation=false
-sp_cleanup.double_negation=false
-sp_cleanup.else_if=false
-sp_cleanup.embedded_if=false
-sp_cleanup.evaluate_nullable=false
-sp_cleanup.extract_increment=false
-sp_cleanup.format_source_code=true
-sp_cleanup.format_source_code_changes_only=false
-sp_cleanup.hash=false
-sp_cleanup.if_condition=false
-sp_cleanup.insert_inferred_type_arguments=false
-sp_cleanup.instanceof=false
-sp_cleanup.join=false
-sp_cleanup.lazy_logical_operator=false
-sp_cleanup.make_local_variable_final=true
-sp_cleanup.make_parameters_final=false
-sp_cleanup.make_private_fields_final=true
-sp_cleanup.make_type_abstract_if_missing_method=false
-sp_cleanup.make_variable_declarations_final=false
-sp_cleanup.map_cloning=false
-sp_cleanup.merge_conditional_blocks=false
-sp_cleanup.multi_catch=false
-sp_cleanup.never_use_blocks=false
-sp_cleanup.never_use_parentheses_in_expressions=true
-sp_cleanup.no_string_creation=false
-sp_cleanup.no_super=false
-sp_cleanup.number_suffix=false
-sp_cleanup.objects_equals=false
-sp_cleanup.on_save_use_additional_actions=true
-sp_cleanup.organize_imports=true
-sp_cleanup.overridden_assignment=false
-sp_cleanup.precompile_regex=false
-sp_cleanup.primitive_parsing=false
-sp_cleanup.primitive_serialization=false
-sp_cleanup.pull_up_assignment=false
-sp_cleanup.push_down_negation=false
-sp_cleanup.qualify_static_field_accesses_with_declaring_class=false
-sp_cleanup.qualify_static_member_accesses_through_instances_with_declaring_class=true
-sp_cleanup.qualify_static_member_accesses_through_subtypes_with_declaring_class=true
-sp_cleanup.qualify_static_member_accesses_with_declaring_class=false
-sp_cleanup.qualify_static_method_accesses_with_declaring_class=false
-sp_cleanup.redundant_falling_through_block_end=false
-sp_cleanup.remove_private_constructors=true
-sp_cleanup.remove_redundant_modifiers=false
-sp_cleanup.remove_redundant_semicolons=true
-sp_cleanup.remove_redundant_type_arguments=false
-sp_cleanup.remove_trailing_whitespaces=true
-sp_cleanup.remove_trailing_whitespaces_all=true
-sp_cleanup.remove_trailing_whitespaces_ignore_empty=false
-sp_cleanup.remove_unnecessary_array_creation=true
-sp_cleanup.remove_unnecessary_casts=true
-sp_cleanup.remove_unnecessary_nls_tags=true
-sp_cleanup.remove_unused_imports=true
-sp_cleanup.remove_unused_local_variables=false
-sp_cleanup.remove_unused_private_fields=true
-sp_cleanup.remove_unused_private_members=false
-sp_cleanup.remove_unused_private_methods=true
-sp_cleanup.remove_unused_private_types=true
-sp_cleanup.simplify_lambda_expression_and_method_ref=true
-sp_cleanup.sort_members=false
-sp_cleanup.sort_members_all=false
-sp_cleanup.static_inner_class=false
-sp_cleanup.strictly_equal_or_different=false
-sp_cleanup.stringbuilder=false
-sp_cleanup.switch=false
-sp_cleanup.ternary_operator=false
-sp_cleanup.try_with_resource=false
-sp_cleanup.use_anonymous_class_creation=false
-sp_cleanup.use_autoboxing=false
-sp_cleanup.use_blocks=false
-sp_cleanup.use_blocks_only_for_return_and_throw=false
-sp_cleanup.use_directly_map_method=false
-sp_cleanup.use_lambda=true
-sp_cleanup.use_parentheses_in_expressions=false
-sp_cleanup.use_this_for_non_static_field_access=false
-sp_cleanup.use_this_for_non_static_field_access_only_if_necessary=true
-sp_cleanup.use_this_for_non_static_method_access=false
-sp_cleanup.use_this_for_non_static_method_access_only_if_necessary=true
-sp_cleanup.use_unboxing=false
-sp_cleanup.use_var=false
-sp_cleanup.useless_continue=false
-sp_cleanup.useless_return=false
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/META-INF/MANIFEST.MF b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/META-INF/MANIFEST.MF
deleted file mode 100644
index 70a8068baa73..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/META-INF/MANIFEST.MF
+++ /dev/null
@@ -1,13 +0,0 @@
-Manifest-Version: 1.0
-Bundle-ManifestVersion: 2
-Bundle-Name: %fragmentName
-Bundle-SymbolicName: org.eclipse.equinox.security.freebsd;singleton:=true
-Bundle-Version: 1.1.300.qualifier
-Bundle-Vendor: %providerName
-Fragment-Host: org.eclipse.equinox.security;bundle-version="[1.0.0,2.0.0)"
-Bundle-RequiredExecutionEnvironment: JavaSE-17
-Bundle-Localization: fragment
-Eclipse-PlatformFilter: (osgi.os=freebsd)
-Export-Package: org.eclipse.equinox.internal.security.freebsd;x-internal:=true
-Automatic-Module-Name: org.eclipse.equinox.security.freebsd
-Require-Bundle: com.sun.jna;bundle-version="[5.8.0,6.0.0)"
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/about.html b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/about.html
deleted file mode 100644
index 8eee37d47051..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/about.html
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
-About
-
-
- About This Content
-
- November 30, 2017
- License
-
-
- The Eclipse Foundation makes available all content in this plug-in
- ("Content"). Unless otherwise indicated below, the Content
- is provided to you under the terms and conditions of the Eclipse
- Public License Version 2.0 ("EPL"). A copy of the EPL is
- available at http://www.eclipse.org/legal/epl-2.0.
- For purposes of the EPL, "Program" will mean the Content.
-
-
-
- If you did not receive this Content directly from the Eclipse
- Foundation, the Content is being redistributed by another party
- ("Redistributor") and different terms and conditions may
- apply to your use of any object code in the Content. Check the
- Redistributor's license that was provided with the Content. If no such
- license exists, contact the Redistributor. Unless otherwise indicated
- below, the terms and conditions of the EPL still apply to any source
- code in the Content and such source code may be obtained at http://www.eclipse.org.
-
-
-
-
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/build.properties b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/build.properties
deleted file mode 100644
index 5bf117a48da9..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/build.properties
+++ /dev/null
@@ -1,21 +0,0 @@
-###############################################################################
-# Copyright (c) 2005, 2017 IBM Corporation and others.
-#
-# This program and the accompanying materials
-# are made available under the terms of the Eclipse Public License 2.0
-# which accompanies this distribution, and is available at
-# https://www.eclipse.org/legal/epl-2.0/
-#
-# SPDX-License-Identifier: EPL-2.0
-#
-# Contributors:
-# Julien HENRY - Linux implementation
-###############################################################################
-source.. = src/
-output.. = bin/
-bin.includes = META-INF/,\
- .,\
- fragment.properties,\
- fragment.xml,\
- about.html
-src.includes = about.html
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/forceQualifierUpdate.txt b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/forceQualifierUpdate.txt
deleted file mode 100644
index 1140809bc746..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/forceQualifierUpdate.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-# To force a version qualifier update add the bug here
-
-Bug 527899 [9] Implement JEP 280: Indify String Concatenation #1139
-https://github.com/eclipse-platform/eclipse.platform.releng.aggregator/issues/1659
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/fragment.properties b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/fragment.properties
deleted file mode 100644
index 3215da80d64c..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/fragment.properties
+++ /dev/null
@@ -1,17 +0,0 @@
-###############################################################################
-# Copyright (c) 2017, 2021 IBM Corporation and others.
-#
-# This program and the accompanying materials
-# are made available under the terms of the Eclipse Public License 2.0
-# which accompanies this distribution, and is available at
-# https://www.eclipse.org/legal/epl-2.0/
-#
-# SPDX-License-Identifier: EPL-2.0
-#
-# Contributors:
-# Julien HENRY - Linux implementation
-###############################################################################
-fragmentName = Linux libsecret integration
-providerName = Eclipse.org - Equinox
-linuxModuleName = Linux Integration
-providerDescription = The provider uses libsecret to store a randomly generated user-specific \'master\' password. Users who can log into the operating system account can access contents of the secure storage.
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/fragment.xml b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/fragment.xml
deleted file mode 100644
index d91ed1d7d18d..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/fragment.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/pom.xml b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/pom.xml
deleted file mode 100644
index b6a6d3c8f6b6..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/pom.xml
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
- 4.0.0
-
- org.eclipse.equinox
- parent
- 4.32.0-SNAPSHOT
- ../../
-
- org.eclipse.equinox.security.freebsd
- 1.1.300-SNAPSHOT
- eclipse-plugin
-
-
-
-
- org.eclipse.tycho
- target-platform-configuration
-
-
-
-
-
- org.eclipse.equinox.registry
- 0.0.0
- p2-installable-unit
-
-
-
-
-
-
-
-
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/GBusType.java b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/GBusType.java
deleted file mode 100644
index f6b9320d8850..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/GBusType.java
+++ /dev/null
@@ -1,21 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2020 Red Hat Inc.
- *
- * This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License 2.0
- * which accompanies this distribution, and is available at
- * https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Red Hat Inc. - initial version
- *******************************************************************************/
-package org.eclipse.equinox.internal.security.linux;
-
-public class GBusType {
- public final static int G_BUS_TYPE_STARTER = -1;
- public final static int G_BUS_TYPE_NONE = 0;
- public final static int G_BUS_TYPE_SYSTEM = 1;
- public final static int G_BUS_TYPE_SESSION = 2;
-}
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/GError.java b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/GError.java
deleted file mode 100644
index 66c75bc09735..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/GError.java
+++ /dev/null
@@ -1,35 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2020, 2021 Red Hat Inc.
- *
- * This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License 2.0
- * which accompanies this distribution, and is available at
- * https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Red Hat Inc. - initial version
- *******************************************************************************/
-package org.eclipse.equinox.internal.security.linux;
-
-import java.util.List;
-
-import com.sun.jna.Pointer;
-import com.sun.jna.Structure;
-
-public class GError extends Structure {
- public int domain;
- public int code;
- public String message;
-
- public GError(Pointer p) {
- super(p);
- read();
- }
-
- @Override
- protected List getFieldOrder() {
- return List.of("domain", "code", "message"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
- }
-}
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/GList.java b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/GList.java
deleted file mode 100644
index a285c6d41a89..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/GList.java
+++ /dev/null
@@ -1,42 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2020, 2021 Red Hat Inc.
- *
- * This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License 2.0
- * which accompanies this distribution, and is available at
- * https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Red Hat Inc. - initial version
- *******************************************************************************/
-package org.eclipse.equinox.internal.security.linux;
-
-import java.util.List;
-
-import com.sun.jna.Pointer;
-import com.sun.jna.Structure;
-
-public class GList extends Structure {
- public static class ByReference extends GList implements Structure.ByReference {
- public ByReference(Pointer p) {
- super(p);
- read();
- }
- }
-
- public GList(Pointer p) {
- super(p);
- read();
- }
-
- public Pointer data;
- public GList.ByReference next;
- public GList.ByReference prev;
-
- @Override
- protected List getFieldOrder() {
- return List.of("data", "next", "prev"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
- }
-}
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/LinuxPasswordProvider.java b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/LinuxPasswordProvider.java
deleted file mode 100644
index d57364bc3c24..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/LinuxPasswordProvider.java
+++ /dev/null
@@ -1,186 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2017, 2024 IBM Corporation and others.
- *
- * This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License 2.0
- * which accompanies this distribution, and is available at
- * https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Julien HENRY - Linux implementation
- * Red Hat Inc. - add validation method to handle KDE failures
- * Red Hat Inc. - modified to make JNA version
- *******************************************************************************/
-package org.eclipse.equinox.internal.security.linux;
-
-import java.nio.charset.StandardCharsets;
-import java.security.SecureRandom;
-import java.util.Map;
-
-import javax.crypto.spec.PBEKeySpec;
-
-import org.eclipse.equinox.internal.security.auth.AuthPlugin;
-import org.eclipse.equinox.internal.security.storage.Base64;
-import org.eclipse.equinox.internal.security.storage.provider.IValidatingPasswordProvider;
-import org.eclipse.equinox.security.storage.provider.IPreferencesContainer;
-import org.eclipse.equinox.security.storage.provider.PasswordProvider;
-
-import com.sun.jna.Library;
-import com.sun.jna.Native;
-import com.sun.jna.Pointer;
-import com.sun.jna.ptr.PointerByReference;
-
-public class LinuxPasswordProvider extends PasswordProvider implements IValidatingPasswordProvider {
-
- /**
- * The length of the randomly generated password in bytes
- */
- private static final int PASSWORD_LENGTH = 64;
-
- private static final String SECRET_COLLECTION_DEFAULT = "default"; //$NON-NLS-1$
- // open flags = (RTLD_NODELETE | RTLD_GLOBAL | RTLD_LAZY)
- private static final Map LIB_LOAD_OPTIONS = Map.of(Library.OPTION_OPEN_FLAGS, 0x1101);
-
- private final SecretSchema fEquinoxSchema = new SecretSchema("org.eclipse.equinox", //$NON-NLS-1$
- SecretSchemaFlags.SECRET_SCHEMA_NONE, new SecretSchemaAttribute(null, 0));
- private LibSecret fLibSecret;
- private LibGio fLibGio;
-
- private interface LibGio extends Library {
- Pointer g_bus_get_sync(int bus_type, Pointer cancellable, PointerByReference gerror);
-
- void g_error_free(Pointer error);
-
- GList g_list_append(GList list, Pointer data);
- }
-
- private interface LibSecret extends Library {
- Pointer secret_service_get_sync(int flags, Pointer cancellable, PointerByReference gerror);
-
- Pointer secret_collection_for_alias_sync(Pointer service, final String alias, int flags, Pointer cancellable,
- PointerByReference gerror);
-
- boolean secret_collection_get_locked(Pointer self);
-
- String secret_collection_get_label(Pointer self);
-
- int secret_service_unlock_sync(Pointer service, GList objects, Pointer cancellable, PointerByReference unlocked,
- PointerByReference error);
-
- String secret_password_lookup_sync(SecretSchema schema, Pointer cancellable, PointerByReference error,
- Object... attributes);
-
- boolean secret_password_store_sync(SecretSchema schema, String collection, String label, String password,
- Pointer cancellable, PointerByReference error, Object... attributes);
- }
-
- private void unlockSecretService() {
-
- fLibGio = Native.load("gio-2.0", LibGio.class, LIB_LOAD_OPTIONS); //$NON-NLS-1$
-
- PointerByReference gerror = new PointerByReference();
- gerror.setValue(Pointer.NULL);
- fLibGio.g_bus_get_sync(GBusType.G_BUS_TYPE_SESSION, Pointer.NULL, gerror);
- requireNoError(gerror, "Unable to get DBus session bus: "); //$NON-NLS-1$
-
- fLibSecret = Native.load("secret-1", LibSecret.class, LIB_LOAD_OPTIONS); //$NON-NLS-1$
- Pointer secretService = fLibSecret.secret_service_get_sync(SecretServiceFlags.SECRET_SERVICE_LOAD_COLLECTIONS,
- Pointer.NULL, gerror);
- requireNoError(gerror, "Unable to get secret service: "); //$NON-NLS-1$
-
- Pointer defaultCollection = fLibSecret.secret_collection_for_alias_sync(secretService,
- SECRET_COLLECTION_DEFAULT, SecretCollectionFlags.SECRET_COLLECTION_NONE, Pointer.NULL, gerror);
- requireNoError(gerror, "Unable to get secret collection: "); //$NON-NLS-1$
- if (defaultCollection == Pointer.NULL) {
- throw new SecurityException("Unable to find default secret collection"); //$NON-NLS-1$
- }
- if (fLibSecret.secret_collection_get_locked(defaultCollection)) {
- fLibSecret.secret_collection_get_label(defaultCollection);
- GList list = fLibGio.g_list_append(null, defaultCollection);
- PointerByReference unlocked = new PointerByReference();
- fLibSecret.secret_service_unlock_sync(secretService, list, Pointer.NULL, unlocked, gerror);
- fLibGio.g_error_free(unlocked.getValue());
- fLibGio.g_error_free(list.getPointer());
-
- requireNoError(gerror, "Unable to unlock: "); //$NON-NLS-1$
- }
-
- }
-
- private String getMasterPassword() throws SecurityException {
- unlockSecretService();
- PointerByReference gerror = new PointerByReference();
- String password = fLibSecret.secret_password_lookup_sync(fEquinoxSchema, Pointer.NULL, gerror, Pointer.NULL);
-
- requireNoError(gerror, ""); //$NON-NLS-1$
- if (password == null) {
- throw new SecurityException("Unable to find password"); //$NON-NLS-1$
- }
- return new String(password.getBytes(), StandardCharsets.UTF_8);
- }
-
- private void saveMasterPassword(String password) throws SecurityException {
- unlockSecretService();
- PointerByReference gerror = new PointerByReference();
-
- String passwordUTF8 = new String(password.getBytes(), StandardCharsets.UTF_8);
-
- fLibSecret.secret_password_store_sync(fEquinoxSchema, SECRET_COLLECTION_DEFAULT, "Equinox master password", //$NON-NLS-1$
- passwordUTF8, Pointer.NULL, gerror, Pointer.NULL);
-
- requireNoError(gerror, ""); //$NON-NLS-1$
- }
-
- private void requireNoError(PointerByReference gerror, String details) {
- if (gerror.getValue() != Pointer.NULL) {
- GError error = new GError(gerror.getValue());
- String message = error.message;
- fLibGio.g_error_free(gerror.getValue());
- throw new SecurityException(details + message);
- }
- }
-
- @Override
- public PBEKeySpec getPassword(IPreferencesContainer container, int passwordType) {
-
- boolean newPassword = (passwordType & CREATE_NEW_PASSWORD) != 0;
- boolean passwordChange = (passwordType & PASSWORD_CHANGE) != 0;
-
- if (!newPassword && !passwordChange) {
- try {
- return new PBEKeySpec(getMasterPassword().toCharArray());
- } catch (SecurityException e) {
- AuthPlugin.getDefault().logError(LinuxPasswordProviderMessages.getMasterPasswordError, e);
- return null;
- }
- }
-
- byte[] rawPassword = new byte[PASSWORD_LENGTH];
- new SecureRandom().nextBytes(rawPassword);
- String newPasswordString = Base64.encode(rawPassword);
-
- // add info message in the log
- AuthPlugin.getDefault().logMessage(LinuxPasswordProviderMessages.newMasterPasswordGenerated);
-
- try {
- saveMasterPassword(newPasswordString);
- return new PBEKeySpec(newPasswordString.toCharArray());
- } catch (SecurityException e) {
- AuthPlugin.getDefault().logError(LinuxPasswordProviderMessages.saveMasterPasswordError, e);
- return null;
- }
- }
-
- @Override
- public boolean isValid() {
- try {
- unlockSecretService();
- return true;
- } catch (SecurityException e) {
- return false;
- }
- }
-
-}
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/LinuxPasswordProviderMessages.java b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/LinuxPasswordProviderMessages.java
deleted file mode 100644
index 8e8d859814bd..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/LinuxPasswordProviderMessages.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2017 IBM Corporation and others.
- *
- * This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License 2.0
- * which accompanies this distribution, and is available at
- * https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Julien HENRY - Linux implementation
- *******************************************************************************/
-package org.eclipse.equinox.internal.security.linux;
-
-import org.eclipse.osgi.util.NLS;
-
-public class LinuxPasswordProviderMessages extends NLS {
-
- private static final String BUNDLE_NAME = "org.eclipse.equinox.internal.security.linux.messages"; //$NON-NLS-1$
-
- public static String getMasterPasswordError;
- public static String saveMasterPasswordError;
- public static String newMasterPasswordGenerated;
-
- static {
- // load message values from bundle file
- reloadMessages();
- }
-
- public static void reloadMessages() {
- NLS.initializeMessages(BUNDLE_NAME, LinuxPasswordProviderMessages.class);
- }
-}
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/SecretCollectionFlags.java b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/SecretCollectionFlags.java
deleted file mode 100644
index 7746b40a69da..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/SecretCollectionFlags.java
+++ /dev/null
@@ -1,19 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2020 Red Hat Inc.
- *
- * This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License 2.0
- * which accompanies this distribution, and is available at
- * https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Red Hat Inc. - initial version
- *******************************************************************************/
-package org.eclipse.equinox.internal.security.linux;
-
-public class SecretCollectionFlags {
- public final static int SECRET_COLLECTION_NONE = 0 << 0;
- public final static int SECRET_COLLECTION_LOAD_ITEMS = 1 << 1;
-}
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/SecretSchema.java b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/SecretSchema.java
deleted file mode 100644
index 9db5f7e6f41e..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/SecretSchema.java
+++ /dev/null
@@ -1,50 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2020, 2021 Red Hat Inc.
- *
- * This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License 2.0
- * which accompanies this distribution, and is available at
- * https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Red Hat Inc. - initial version
- *******************************************************************************/
-package org.eclipse.equinox.internal.security.linux;
-
-import java.util.List;
-
-import com.sun.jna.Pointer;
-import com.sun.jna.Structure;
-
-public class SecretSchema extends Structure {
- public String name;
- public int flags;
- public SecretSchemaAttribute[] attributes = new SecretSchemaAttribute[32];
-
- /* */
- public int reserved;
- public Pointer reserved1;
- public Pointer reserved2;
- public Pointer reserved3;
- public Pointer reserved4;
- public Pointer reserved5;
- public Pointer reserved6;
- public Pointer reserved7;
-
- public SecretSchema(String name, int flags, SecretSchemaAttribute... attributes) {
- this.name = name;
- this.flags = flags;
- for (int i = 0; i < attributes.length; ++i) {
- this.attributes[i] = attributes[i];
- }
- write();
- }
-
- @Override
- protected List getFieldOrder() {
- return List.of("name", "flags", "attributes", "reserved", "reserved1", "reserved2", "reserved3", "reserved4", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$ //$NON-NLS-7$ //$NON-NLS-8$
- "reserved5", "reserved6", "reserved7"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
- }
-}
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/SecretSchemaAttribute.java b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/SecretSchemaAttribute.java
deleted file mode 100644
index c4aa7865f265..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/SecretSchemaAttribute.java
+++ /dev/null
@@ -1,37 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2020, 2021 Red Hat Inc.
- *
- * This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License 2.0
- * which accompanies this distribution, and is available at
- * https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Red Hat Inc. - initial version
- *******************************************************************************/
-package org.eclipse.equinox.internal.security.linux;
-
-import java.util.List;
-
-import com.sun.jna.Structure;
-
-public class SecretSchemaAttribute extends Structure {
- public String name;
- public int type;
-
- public SecretSchemaAttribute() {
- }
-
- public SecretSchemaAttribute(String name, int type) {
- this.name = name;
- this.type = type;
- write();
- }
-
- @Override
- protected List getFieldOrder() {
- return List.of("name", "type"); //$NON-NLS-1$ //$NON-NLS-2$
- }
-}
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/SecretSchemaAttributeType.java b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/SecretSchemaAttributeType.java
deleted file mode 100644
index d6b5fa6ba2ef..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/SecretSchemaAttributeType.java
+++ /dev/null
@@ -1,20 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2020 Red Hat Inc.
- *
- * This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License 2.0
- * which accompanies this distribution, and is available at
- * https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Red Hat Inc. - initial version
- *******************************************************************************/
-package org.eclipse.equinox.internal.security.linux;
-
-public class SecretSchemaAttributeType {
- public static int SECRET_SCHEMA_ATTRIBUTE_STRING = 0;
- public static int SECRET_SCHEMA_ATTRIBUTE_INTEGER = 1;
- public static int SECRET_SCHEMA_ATTRIBUTE_BOOLEAN = 2;
-}
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/SecretSchemaFlags.java b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/SecretSchemaFlags.java
deleted file mode 100644
index 69f30945415d..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/SecretSchemaFlags.java
+++ /dev/null
@@ -1,19 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2020 Red Hat Inc.
- *
- * This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License 2.0
- * which accompanies this distribution, and is available at
- * https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Red Hat Inc. - initial version
- *******************************************************************************/
-package org.eclipse.equinox.internal.security.linux;
-
-public class SecretSchemaFlags {
- public static int SECRET_SCHEMA_NONE = 0;
- public static int SECRET_SCHEMA_DONT_MATCH_NAME = (1 << 1);
-}
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/SecretServiceFlags.java b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/SecretServiceFlags.java
deleted file mode 100644
index bfa09bc34196..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/SecretServiceFlags.java
+++ /dev/null
@@ -1,20 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2020 Red Hat Inc.
- *
- * This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License 2.0
- * which accompanies this distribution, and is available at
- * https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Red Hat Inc. - initial version
- *******************************************************************************/
-package org.eclipse.equinox.internal.security.linux;
-
-public class SecretServiceFlags {
- public final static int SECRET_SERVICE_NONE = 0;
- public final static int SECRET_SERVICE_OPEN_SESSION = 1 << 1;
- public final static int SECRET_SERVICE_LOAD_COLLECTIONS = 1 << 2;
-}
diff --git a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/messages.properties b/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/messages.properties
deleted file mode 100644
index 89797683736b..000000000000
--- a/java/eclipse/files/addons/equinox/bundles/org.eclipse.equinox.security.freebsd/src/org/eclipse/equinox/internal/security/linux/messages.properties
+++ /dev/null
@@ -1,18 +0,0 @@
-###############################################################################
-# Copyright (c) 2017 IBM Corporation and others.
-#
-# This program and the accompanying materials
-# are made available under the terms of the Eclipse Public License 2.0
-# which accompanies this distribution, and is available at
-# https://www.eclipse.org/legal/epl-2.0/
-#
-# SPDX-License-Identifier: EPL-2.0
-#
-# Contributors:
-# Julien HENRY - Linux implementation
-###############################################################################
-
-## Linux libsecure integration module
-getMasterPasswordError=Secure storage was unable to retrieve the master password from the password storage. If secure storage was created using a different user account, you'll have to switch back to that account. Alternatively, you can use the password recovery, or delete and re-create secure storage.
-saveMasterPasswordError=Secure storage was unable to save the master password.
-newMasterPasswordGenerated=New secure storage master password was generated (Linux libsecret integration module).
diff --git a/java/eclipse/files/patch-eclipse b/java/eclipse/files/patch-eclipse
deleted file mode 100644
index 8bbb03874f44..000000000000
--- a/java/eclipse/files/patch-eclipse
+++ /dev/null
@@ -1,1490 +0,0 @@
---- eclipse-platform-parent/pom.xml 0000-00-00 00:00:00.000000000 +0000
-+++ eclipse-platform-parent/pom.xml 0000-00-00 00:00:00.000000000 +0000
-@@ -77,9 +77,9 @@
- 'eclipiserun-repo' repository, such as for computing .api-descriptions and
- generating API Tools reports.
- -->
-- https://download.eclipse.org/eclipse/updates/4.32-I-builds/
-+ https://download.eclipse.org/eclipse/updates/4.32/
-
-- https://download.eclipse.org/eclipse/updates/4.32-I-builds
-+ https://download.eclipse.org/eclipse/updates/4.32
-
-
- https://repo.eclipse.org/content/repositories/tycho-snapshots/
-@@ -246,6 +246,26 @@
-
-
-
-+ freebsd
-+ gtk
-+ x86_64
-+
-+
-+ freebsd
-+ gtk
-+ powerpc64
-+
-+
-+ freebsd
-+ gtk
-+ powerpc64le
-+
-+
-+ freebsd
-+ gtk
-+ aarch64
-+
-+
- linux
- gtk
- x86_64
-@@ -809,7 +829,7 @@
- For maintenance streams should always be "M-builds".
- Ideally, this value would be provided by the environment, see bug 489789.
- -->
-- https://download.eclipse.org/eclipse/updates/4.32-I-builds
-+ https://download.eclipse.org/eclipse/updates/4.32
-
-
-
---- eclipse.pde/build/org.eclipse.pde.build/scripts/productBuild/allElements.xml 0000-00-00 00:00:00.000000000 +0000
-+++ eclipse.pde/build/org.eclipse.pde.build/scripts/productBuild/allElements.xml 0000-00-00 00:00:00.000000000 +0000
-@@ -66,6 +66,13 @@
-
-
-
-+
-+
-+
-+
-+
-+
-+
-
-
-
---- eclipse.pde/build/org.eclipse.pde.build/src/org/eclipse/pde/internal/build/Utils.java 0000-00-00 00:00:00.000000000 +0000
-+++ eclipse.pde/build/org.eclipse.pde.build/src/org/eclipse/pde/internal/build/Utils.java 0000-00-00 00:00:00.000000000 +0000
-@@ -646,7 +646,7 @@
- arguments.add("-sf"); //$NON-NLS-1$
- arguments.add(links[i]);
- arguments.add(links[i + 1]);
-- script.printExecTask("ln", dir, arguments, "Linux"); //$NON-NLS-1$ //$NON-NLS-2$
-+ script.printExecTask("ln", dir, arguments, "Linux,FreeBSD"); //$NON-NLS-1$ //$NON-NLS-2$
- arguments.clear();
- }
- }
---- eclipse.pde/build/org.eclipse.pde.build/src/org/eclipse/pde/internal/build/builder/ModelBuildScriptGenerator.java 0000-00-00 00:00:00.000000000 +0000
-+++ eclipse.pde/build/org.eclipse.pde.build/src/org/eclipse/pde/internal/build/builder/ModelBuildScriptGenerator.java 0000-00-00 00:00:00.000000000 +0000
-@@ -922,7 +922,7 @@
- for (int i = 0; i < links.length; i += 2) {
- arguments.add(links[i]);
- arguments.add(links[i + 1]);
-- script.printExecTask("ln -s", dir, arguments, "Linux"); //$NON-NLS-1$ //$NON-NLS-2$
-+ script.printExecTask("ln -s", dir, arguments, "Linux,FreeBSD"); //$NON-NLS-1$ //$NON-NLS-2$
- arguments.clear();
- }
- }
---- eclipse.pde/build/org.eclipse.pde.build/src_ant/org/eclipse/pde/internal/build/tasks/JNLPGenerator.java 0000-00-00 00:00:00.000000000 +0000
-+++ eclipse.pde/build/org.eclipse.pde.build/src_ant/org/eclipse/pde/internal/build/tasks/JNLPGenerator.java 0000-00-00 00:00:00.000000000 +0000
-@@ -325,6 +325,8 @@
- return "Mac"; //$NON-NLS-1$
- if ("linux".equalsIgnoreCase(os)) //$NON-NLS-1$
- return "Linux"; //$NON-NLS-1$
-+ if ("freebsd".equalsIgnoreCase(os)) //$NON-NLS-1$
-+ return "FreeBSD"; //$NON-NLS-1$
- if ("solaris".equalsIgnoreCase(os)) //$NON-NLS-1$
- return "Solaris"; //$NON-NLS-1$
- if ("hpux".equalsIgnoreCase(os)) //$NON-NLS-1$
---- eclipse.pde/build/org.eclipse.pde.build/templates/packager/customTargets.xml 0000-00-00 00:00:00.000000000 +0000
-+++ eclipse.pde/build/org.eclipse.pde.build/templates/packager/customTargets.xml 0000-00-00 00:00:00.000000000 +0000
-@@ -25,4 +25,10 @@
-
-
-
-+
-+
-+
-+
-+
-+
-