summarylogtreecommitdiffstats
path: root/no_downloads.patch
diff options
context:
space:
mode:
Diffstat (limited to 'no_downloads.patch')
-rw-r--r--no_downloads.patch95
1 files changed, 0 insertions, 95 deletions
diff --git a/no_downloads.patch b/no_downloads.patch
deleted file mode 100644
index 5ae257d2358f..000000000000
--- a/no_downloads.patch
+++ /dev/null
@@ -1,95 +0,0 @@
---- build.xml.orig 2020-06-13 00:09:40.000000000 +0200
-+++ build.xml 2020-06-17 12:46:43.682413239 +0200
-@@ -1009,7 +1009,7 @@
- </if>
- </target>
-
-- <target name="linux-build" depends="ignore-tools, check-linux-arm32, check-linux-arm64, revision-check, linux-check-os, jdk-download, jfx-download, subprojects-build, subprojects-build-linux-arm32, subprojects-build-linux-arm64" description="Build Linux version">
-+ <target name="linux-build" depends="ignore-tools, check-linux-arm32, check-linux-arm64, revision-check, linux-check-os, subprojects-build, subprojects-build-linux-arm32, subprojects-build-linux-arm64" description="Build Linux version">
- <mkdir dir="linux/work" />
-
- <copy todir="linux/work" preservelastmodified="true">
-@@ -1049,25 +1049,6 @@
- <fileset refid="runtime.jars" />
- </copy>
-
-- <preparejfx />
--
-- <!-- Pull in OpenJFX (separated from mainline Java in JDK 11). -->
-- <if>
-- <equals arg1="${jfx.available}" arg2="true" />
-- <then>
-- <copy todir="linux/work/core/library" overwrite="true">
-- <fileset dir="${jfx.path.lib}" includes="*.jar"/>
-- <fileset dir="${jfx.path.lib}" includes="*.so"/>
-- </copy>
--
-- <mkdir dir="linux/work/core/java/legal/openjfx" />
--
-- <copy todir="linux/work/core/java/legal/openjfx" overwrite="true">
-- <fileset dir="${jfx.path.dist}/legal" includes="**"/>
-- </copy>
-- </then>
-- </if>
--
- <copy file="linux/processing" todir="linux/work" />
- <chmod perm="ugo+x" file="linux/work/processing" />
-
-@@ -1094,57 +1075,6 @@
- <copy file="linux/processing-pde.xml" todir="linux/work/lib" />
- <copy file="linux/appdata.xml" todir="linux/work/lib" />
- <copy file="linux/desktop.template" todir="linux/work/lib" />
--
--<!--
-- Cannot use ant version of tar because it doesn't preserve properties.
-- <untar compression="gzip"
-- dest="linux/work"
-- src="linux/jdk.tgz"
-- overwrite="false"/>
---->
--
--<!--
-- http://www.gnu.org/software/tar/manual/html_section/transform.html
---->
-- <exec executable="tar" dir="linux">
-- <!-- Change directory -->
-- <!--
-- <arg value="-C" />
-- <arg value="linux/work" />
-- <arg value="-xzpf" />
-- -->
-- <arg value="xfz" />
-- <arg value="../${jdk.tgz.path}"/>
-- </exec>
--
-- <property name="jdk.dir" value="jdk-${jdk.esoteric}+${jdk.build}/" />
--
-- <exec executable="rsync" dir="linux">
-- <arg value="-a" />
-- <arg value="--delete" />
-- <arg value="${jdk.dir}" />
-- <arg value="work/java/" />
-- </exec>
--
-- <!-- Remove unused JRE bloat. -->
-- <delete failonerror="true">
-- <!--
-- <fileset refid="javafx-basics" />
-- <fileset refid="javafx-linux-${jdk.data.model}" />
-- -->
-- <fileset refid="jdk-optional-linux" />
-- </delete>
--
-- <exec executable="rm">
-- <arg value="-r"/>
-- <arg line="linux/jdk-${jdk.esoteric}+${jdk.build}"/>
-- </exec>
--
-- <exec executable="rm">
-- <arg value="-r"/>
-- <arg line="${jfx.path.dist}"/>
-- </exec>
--
- </target>
-
- <target name="linux-run" depends="linux-build"