diff options
| author | Volkmar W. Pogatzki <gentoo@pogatzki.net> | 2024-03-27 15:17:16 +0100 |
|---|---|---|
| committer | Miroslav Šulc <fordfrog@gentoo.org> | 2024-04-15 11:42:29 +0200 |
| commit | 5fd608ca1e9938bd1b77826372e2aae4b6fe5f8a (patch) | |
| tree | f7ecd0fd9562f9f4fb94ce84179caf5d4e31471e /dev-java/jakarta-xml-soap-api/jakarta-xml-soap-api-1.4.2-r2.ebuild | |
| parent | 32e186395feea86d289dc5f5601e334e2f32aff8 (diff) | |
| download | gentoo-5fd608ca1e9938bd1b77826372e2aae4b6fe5f8a.tar.gz gentoo-5fd608ca1e9938bd1b77826372e2aae4b6fe5f8a.tar.bz2 gentoo-5fd608ca1e9938bd1b77826372e2aae4b6fe5f8a.zip | |
dev-java/jakarta-xml-soap-api: drop SecurityManager
Closes: https://bugs.gentoo.org/923606
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/35946
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'dev-java/jakarta-xml-soap-api/jakarta-xml-soap-api-1.4.2-r2.ebuild')
| -rw-r--r-- | dev-java/jakarta-xml-soap-api/jakarta-xml-soap-api-1.4.2-r2.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-r2.ebuild b/dev-java/jakarta-xml-soap-api/jakarta-xml-soap-api-1.4.2-r2.ebuild new file mode 100644 index 000000000000..fc7c2c78bdec --- /dev/null +++ b/dev-java/jakarta-xml-soap-api/jakarta-xml-soap-api-1.4.2-r2.ebuild @@ -0,0 +1,55 @@ +# Copyright 2022-2024 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 ~arm arm64 ppc64 x86" + +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-dropSecurityManager.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 +} |
