dev-java/wsdl4j: drop 1.6.2-r1

Closes: https://bugs.gentoo.org/214210
Closes: https://bugs.gentoo.org/631618
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/26395
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
This commit is contained in:
Volkmar W. Pogatzki
2022-07-14 08:00:41 +02:00
committed by Miroslav Šulc
parent bbe252c5ad
commit bf51ea70c9
3 changed files with 0 additions and 74 deletions

View File

@@ -1,3 +1 @@
DIST jwsdltck-bin-1.2.zip 599377 BLAKE2B 0f99dc93a1b22019c572fe55585ee285c72e1dabcecc5cf93fa635b12a39a43686f0ff704a0c9ea25c682a882c4580fd82cf2015a9d4417dd28bc87d0b32a670 SHA512 a8f86d9895c588d752d266413e77c2a8db241e9cf9c199909f2e9d1d1b3b1b03eaa6b5841c62b0e7a7c779089eb6721797fdb4f2db841789a6a19884bd48711b
DIST wsdl4j-src-1.6.2.zip 172400 BLAKE2B 96fa6a9098993ba20a277004515a4cd29bae84450b86398ceb1dc7835f14f17b39e5daf87d557b4378860c9d24e5928a80bb30b2d953fdc8fcae7d97ae8454f5 SHA512 55d0b8eb6a08cecd4a48223a9f29fe6ed0e00ec4dca99f44a04882efdba448601bb7dadcaa347e32e3ff5bb9e3334503d6666ca2a6276c7bb48b80acea57b751
DIST wsdl4j-src-1.6.3.zip 173137 BLAKE2B 85ffe7a53b281307cd2d7072f611aa7ecbc10a5e13125f44f0dc934218b8d31ad15438adfc46a89431a5fc1ac68d4896c2415a95ee87c227d74babe664202e4f SHA512 eb5e16b0b51530a27b12aae5d897384d2a03db2e4df70f23ab435af5e8444f828dacfdb0ab0807a9e0b3423eebb165eea8790c129a173d376fc929a1c222be6e

View File

@@ -1,11 +0,0 @@
diff -ur wsdl4j-1_6_2.old/build.xml wsdl4j-1_6_2/build.xml
--- wsdl4j-1_6_2.old/build.xml 2007-06-09 01:12:11.000000000 +0300
+++ wsdl4j-1_6_2/build.xml 2007-06-09 01:13:09.000000000 +0300
@@ -279,6 +279,7 @@
<target name="test" depends="compile" if="junit.present">
<junit printsummary="on">
<sysproperty key="jwsdltck_home" value="./test"/>
+ <sysproperty key="java.home" value="${temp.dir}"/>
<sysproperty key="javax.wsdl.factory.WSDLFactoryCandidate"
value="com.ibm.wsdl.factory.WSDLFactoryImpl"/>

View File

@@ -1,61 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
JAVA_PKG_IUSE="doc source test"
inherit java-pkg-2 java-ant-2
DESCRIPTION="Web Services Description Language for Java Toolkit (WSDL4J)"
HOMEPAGE="http://wsdl4j.sourceforge.net"
TCK="jwsdltck"
TCK_V="1.2"
SRC_URI="mirror://sourceforge/${PN}/${PN}-src-${PV}.zip
test? ( mirror://sourceforge/${TCK}/${TCK}-bin-${TCK_V}.zip )"
LICENSE="CPL-1.0"
SLOT="0"
KEYWORDS="amd64 ~ppc64 x86"
# tests fail with encoding errors
RESTRICT="test"
DEPEND=">=virtual/jdk-1.8:*
test? ( dev-java/junit:0 )
app-arch/unzip"
RDEPEND=">=virtual/jre-1.8:*"
S="${WORKDIR}/${P//./_}"
TCK_S="${WORKDIR}/${TCK}-${TCK_V//./_}"
EANT_BUILD_TARGET="compile"
EANT_DOC_TARGET="javadocs"
src_prepare() {
default
if use test; then
rm -v "${TCK_S}"/lib/*.jar || die
eapply "${FILESDIR}/1.6.2-tests-sandbox.patch"
fi
}
src_test() {
ln -s "${TCK_S}" test || die
cd "${TCK_S}" || die
java-ant_rewrite-classpath
local junit="$(java-pkg_getjars junit)"
eant -Dbuild.lib="${S}/test/lib" compile \
-Dgentoo.classpath="${S}/build/lib/${PN}.jar:${junit}"
cd "${S}" || die
mkdir "${T}/lib" || die
ANT_TASKS="ant-junit" eant test -Dtemp.dir="${T}"
}
src_install() {
java-pkg_dojar build/lib/*.jar
use doc && java-pkg_dojavadoc build/javadocs/
use source && java-pkg_dosrc src/*
}