diff options
| author | Volkmar W. Pogatzki <gentoo@pogatzki.net> | 2025-08-21 21:39:59 +0200 |
|---|---|---|
| committer | Miroslav Šulc <fordfrog@gentoo.org> | 2025-09-25 13:17:03 +0200 |
| commit | 72b65b1fb75073e4e4723b7f6e88b14cd68e601b (patch) | |
| tree | 972fdcc4f5a65ab2802d607b455d4bd196aea8a7 /dev-java/jakarta-xml-soap-api/jakarta-xml-soap-api-1.4.2-r3.ebuild | |
| parent | c247e417e0efed9105f3eb98fdf05713cb4f92ff (diff) | |
| download | gentoo-72b65b1fb75073e4e4723b7f6e88b14cd68e601b.tar.gz gentoo-72b65b1fb75073e4e4723b7f6e88b14cd68e601b.tar.bz2 gentoo-72b65b1fb75073e4e4723b7f6e88b14cd68e601b.zip | |
dev-java/jakarta-xml-soap-api: remove SecurityManager
Closes: https://bugs.gentoo.org/946904
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Part-of: https://github.com/gentoo/gentoo/pull/43518
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'dev-java/jakarta-xml-soap-api/jakarta-xml-soap-api-1.4.2-r3.ebuild')
| -rw-r--r-- | dev-java/jakarta-xml-soap-api/jakarta-xml-soap-api-1.4.2-r3.ebuild | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/dev-java/jakarta-xml-soap-api/jakarta-xml-soap-api-1.4.2-r3.ebuild b/dev-java/jakarta-xml-soap-api/jakarta-xml-soap-api-1.4.2-r3.ebuild new file mode 100644 index 000000000000..c118673def6e --- /dev/null +++ b/dev-java/jakarta-xml-soap-api/jakarta-xml-soap-api-1.4.2-r3.ebuild @@ -0,0 +1,55 @@ +# Copyright 2022-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +JAVA_PKG_IUSE="doc source test" +JAVA_TESTING_FRAMEWORKS="junit-4" +MAVEN_ID="jakarta.xml.soap:jakarta.xml.soap-api:1.4.2" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="SOAP with Attachments API for Java (SAAJ) API (Eclipse Project for JAX-WS)" +HOMEPAGE="https://projects.eclipse.org/projects/ee4j.jaxws" +SRC_URI="https://github.com/jakartaee/saaj-api/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/saaj-api-${PV}" + +# EDL-1.0 equivalent to BSD +# - 'SPDX-License-Identifier: BSD-3-Clause' in source files' headers +# - https://www.eclipse.org/org/documents/edl-v10.php +LICENSE="BSD" +# Since version 2.0.0, the namespace has changed to jakarta.xml.soap +SLOT="1" +KEYWORDS="amd64 arm64 ppc64" + +CP_DEPEND=" + >=dev-java/jakarta-activation-api-1.2.2-r1:1 +" + +DEPEND=" + >=virtual/jdk-11:* + ${CP_DEPEND} +" + +RDEPEND=" + >=virtual/jre-1.8:* + ${CP_DEPEND} +" + +PATCHES=( + "${FILESDIR}/jakarta-xml-soap-api-1.4.2-removeSecurityManager.patch" +) + +JAVA_SRC_DIR="api/src/main/java" + +JAVA_TEST_GENTOO_CLASSPATH="junit-4" +JAVA_TEST_SRC_DIR="api/src/test/java" +JAVA_TEST_RESOURCE_DIRS=( "api/src/test/resources" ) +JAVA_TEST_EXTRA_ARGS=( -Xbootclasspath/a:target/classes ) + +DOCS=( CONTRIBUTING.md NOTICE.md README.md ) + +src_prepare() { + default #780585 + java-pkg-2_src_prepare +} |
