summaryrefslogtreecommitdiff
path: root/dev-java/cpptasks/files
diff options
context:
space:
mode:
authorVolkmar W. Pogatzki <gentoo@pogatzki.net>2024-06-05 09:49:30 +0200
committerMiroslav Šulc <fordfrog@gentoo.org>2024-06-17 10:58:46 +0200
commitf1b06e6b7b9ba5e501d7085ffaeb0a03356fce88 (patch)
treec8dc87cd8361627bac398f4b7813f3d389cda83c /dev-java/cpptasks/files
parent76a6702789850826c9be5f6f34cbeb6e31e72fc1 (diff)
downloadgentoo-f1b06e6b7b9ba5e501d7085ffaeb0a03356fce88.tar.gz
gentoo-f1b06e6b7b9ba5e501d7085ffaeb0a03356fce88.tar.bz2
gentoo-f1b06e6b7b9ba5e501d7085ffaeb0a03356fce88.zip
dev-java/cpptasks: rewrite with java-pkg-simple, #852956
Bug: https://bugs.gentoo.org/852920 Bug: https://bugs.gentoo.org/852956 Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/36770/commits/3fefd512ff4d9716fc9f7af3b1d7e6c07f7cae52 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'dev-java/cpptasks/files')
-rw-r--r--dev-java/cpptasks/files/cpptasks-1.0_beta5-test-classpath.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/dev-java/cpptasks/files/cpptasks-1.0_beta5-test-classpath.patch b/dev-java/cpptasks/files/cpptasks-1.0_beta5-test-classpath.patch
deleted file mode 100644
index 02754ce7f1ed..000000000000
--- a/dev-java/cpptasks/files/cpptasks-1.0_beta5-test-classpath.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 732e296e780633e3dce1bace28a4abae04f506c7 Mon Sep 17 00:00:00 2001
-From: Yuan Liao <liaoyuan@gmail.com>
-Date: Sat, 15 Jan 2022 10:58:28 -0800
-Subject: [PATCH] Prevent test classpath from being overwritten by
- java-ant-2.eclass
-
-Signed-off-by: Yuan Liao <liaoyuan@gmail.com>
----
- build.xml | 8 ++++++--
- 1 file changed, 6 insertions(+), 2 deletions(-)
-
-diff --git a/build.xml b/build.xml
-index ed3a0f7..24a3114 100644
---- a/build.xml
-+++ b/build.xml
-@@ -176,8 +176,12 @@
- deprecation="false"
- target="${javac.target}"
- source="${javac.source}"
-- optimize="false"
-- classpath="${build.lib}/${name}.jar;${java.class.path}"/>
-+ optimize="false">
-+ <classpath>
-+ <pathelement location="${build.lib}/${name}.jar" />
-+ <pathelement location="${java.class.path}" />
-+ </classpath>
-+ </javac>
- <jar jarfile="${tests.build.lib}/${name}_test.jar">
- <fileset dir="." includes="NOTICE LICENSE"/>
- <fileset dir="${tests.build.classes}"/>
---
-2.34.1
-