commit:     a08f021eda54a62674d28f26644db02eecf7ae89
Author:     Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net>
AuthorDate: Tue Oct 25 09:32:22 2022 +0000
Commit:     John Helmert III <ajak <AT> gentoo <DOT> org>
CommitDate: Tue Oct 25 21:55:41 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a08f021e

dev-java/jakartaee-migration: drop 1.0.3

Signed-off-by: Volkmar W. Pogatzki <gentoo <AT> pogatzki.net>
Signed-off-by: John Helmert III <ajak <AT> gentoo.org>

 dev-java/jakartaee-migration/Manifest              |  1 -
 .../jakartaee-migration-1.0.3.ebuild               | 92 ----------------------
 2 files changed, 93 deletions(-)

diff --git a/dev-java/jakartaee-migration/Manifest 
b/dev-java/jakartaee-migration/Manifest
index 63f3b30af0d7..a462cf6701d1 100644
--- a/dev-java/jakartaee-migration/Manifest
+++ b/dev-java/jakartaee-migration/Manifest
@@ -1,2 +1 @@
-DIST jakartaee-migration-1.0.3-sources.tar.gz 38243 BLAKE2B 
e1c05c05dd16ec6d54f0eb3523aed14a3fcbc9c0999b54e7c240c5ebfbb968a8cc3025855485318c19f0e85931ea239f4f08efbd0d042c7ad163c1fe5d3819f9
 SHA512 
79947fe47d55e4e93a417118e7a41fd79614b3fe3bfad967bfdcc865121c9247f92ecd99231e08abb2187036cdb1dceb85b8f2bc695c5bd2ecbf48a84bdd3b2a
 DIST jakartaee-migration-1.0.4-sources.tar.gz 38400 BLAKE2B 
c0c0151adfde56632ad95919a88eedd6a44056e2d29320e63e0dc64c59cf7ba928135f817ddb3c79a96dd7a8418ab92c8fe4aa9f50a51442bb55384349de603f
 SHA512 
a9d49463f44affa1c5f57d9342e7b4dc77a829c904ba2376f87f086c3662f01e05a2b1cfe2dc746e33605a66849f12415ebb2b63eb05c5e476a4eab9ffd39644

diff --git a/dev-java/jakartaee-migration/jakartaee-migration-1.0.3.ebuild 
b/dev-java/jakartaee-migration/jakartaee-migration-1.0.3.ebuild
deleted file mode 100644
index f4e644bdec92..000000000000
--- a/dev-java/jakartaee-migration/jakartaee-migration-1.0.3.ebuild
+++ /dev/null
@@ -1,92 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# Skeleton command:
-# java-ebuilder --generate-ebuild --workdir . --pom pom.xml --download-uri 
https://ftp.fau.de/apache/tomcat/jakartaee-migration/v1.0.3/source/jakartaee-migration-1.0.3-src.tar.gz
 --slot 0 --keywords "~amd64" --ebuild jakartaee-migration-1.0.3.ebuild
-
-EAPI=8
-
-JAVA_PKG_IUSE="doc source test"
-MAVEN_ID="org.apache.tomcat:jakartaee-migration:1.0.3"
-JAVA_TESTING_FRAMEWORKS="junit-4"
-
-inherit java-pkg-2 java-pkg-simple
-
-DESCRIPTION="Apache Tomcat tool for migration from Java EE 8 to Jakarta EE 9"
-HOMEPAGE="https://tomcat.apache.org";
-SRC_URI="mirror://apache/tomcat/${PN}/v${PV}/source/${P}-src.tar.gz -> 
${P}-sources.tar.gz"
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64"
-
-# Common dependencies
-# POM: pom.xml
-# commons-io:commons-io:2.8.0 -> >=dev-java/commons-io-2.8.0:1
-# org.apache.bcel:bcel:6.5.0 -> >=dev-java/bcel-6.5.0:0
-# org.apache.commons:commons-compress:1.20 -> 
>=dev-java/commons-compress-1.20:0
-
-CDEPEND="
-       dev-java/ant-core:0
-       dev-java/bcel:0
-       >=dev-java/commons-compress-1.20:0
-       dev-java/commons-io:1
-"
-
-# Compile dependencies
-# POM: pom.xml
-# org.apache.ant:ant:1.10.9 -> !!!groupId-not-found!!!
-# POM: pom.xml
-# test? junit:junit:4.13.1 -> >=dev-java/junit-4.13.1:4
-
-DEPEND="
-       >=virtual/jdk-1.8:*
-       ${CDEPEND}
-"
-
-RDEPEND="
-       >=virtual/jre-1.8:*
-       ${CDEPEND}"
-
-S="${WORKDIR}/${P}"
-
-JAVA_LAUNCHER_FILENAME="${PN}"
-
-JAVA_GENTOO_CLASSPATH="ant-core,bcel,commons-compress,commons-io-1"
-JAVA_SRC_DIR="src/main/java"
-JAVA_MAIN_CLASS="org.apache.tomcat.jakartaee.MigrationCLI"
-JAVA_RESOURCE_DIRS=(
-       "src/main/resources"
-)
-
-JAVA_TEST_GENTOO_CLASSPATH="junit-4"
-JAVA_TEST_SRC_DIR="src/test/java"
-JAVA_TEST_RESOURCE_DIRS=(
-       "src/test/resources"
-)
-JAVA_TEST_EXCLUDES=(
-       "org.apache.tomcat.jakartaee.TesterConstants"
-)
-
-src_prepare() {
-       default
-       sed -i "s/\${project.version}/${PV}/g" 
src/main/resources/info.properties
-}
-
-src_test() {
-       # we need to create jar files for the tests the same way as it's done 
using pom.xml
-       local implementation_version=$(grep Implementation-Version pom.xml | 
grep -oE "[0-9]+\.[0-9]+\.[0-9]+")
-       mkdir -p target/test-classes/META-INF || die
-       pushd target/test-classes || die
-       echo "Implementation-Version: ${implementation_version}" > 
META-INF/MANIFEST.MF
-       ejavac -d . -encoding ${JAVA_ENCODING} $(find 
"${S}/${JAVA_TEST_SRC_DIR}" -name CommonGatewayInterface.java) || die
-       jar cfm cgi-api.jar META-INF/MANIFEST.MF $(find -name 
CommonGatewayInterface.class) || die
-       ejavac -d . -encoding ${JAVA_ENCODING} $(find 
"${S}/${JAVA_TEST_SRC_DIR}" -name HelloCGI.java) || die
-       jar cfm hellocgi.jar META-INF/MANIFEST.MF $(find -name HelloCGI.class) 
|| die
-       for enc in rsa dsa ec; do
-               cp hellocgi.jar hellocgi-signed-${enc}.jar || die
-               jarsigner -keystore "${S}/src/test/resources/keystore.p12" 
-storepass apache hellocgi-signed-${enc}.jar ${enc} || die
-       done
-       popd
-
-       java-pkg-simple_src_test
-}

Reply via email to