diff options
author | Miroslav Šulc <fordfrog@gentoo.org> | 2021-12-14 09:06:17 +0100 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2021-12-14 09:06:17 +0100 |
commit | bd788a650a4df4766773f5825dabb4d1a0d49709 (patch) | |
tree | e756b8b2f6388ab19ecfba298001ee93fedb66d6 /dev-java/aspectj | |
parent | media-gfx/plantuml: removed obsolete 1.2021.13 (diff) | |
download | gentoo-bd788a650a4df4766773f5825dabb4d1a0d49709.tar.gz gentoo-bd788a650a4df4766773f5825dabb4d1a0d49709.tar.bz2 gentoo-bd788a650a4df4766773f5825dabb4d1a0d49709.zip |
dev-java/aspectj: removed obsolete 1.9.6
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'dev-java/aspectj')
-rw-r--r-- | dev-java/aspectj/Manifest | 1 | ||||
-rw-r--r-- | dev-java/aspectj/aspectj-1.9.6.ebuild | 44 |
2 files changed, 0 insertions, 45 deletions
diff --git a/dev-java/aspectj/Manifest b/dev-java/aspectj/Manifest index ee90a3a85393..e373999baeaf 100644 --- a/dev-java/aspectj/Manifest +++ b/dev-java/aspectj/Manifest @@ -1,2 +1 @@ -DIST aspectj-1.9.6-src.jar 8616829 BLAKE2B adc12e181b2584287dd149657f0505b2d3ba877aa3e8cea1f2fd827b4d05c24728f120798019f1679ebafe850a8e68fa3db1467ac080c27692d5f81d31aebd48 SHA512 f15416a3921ef614ab8068c8ff8277f0fd3c177e9b277ac471786953615f1fe81638b8d13d77ebfe0643fdf089ee3cd5e718d522d2e588989a42df775f2a0516 DIST aspectj-1.9.7.tar.gz 26472044 BLAKE2B a66605845e188903d50566df658fe636b8feb980bbafdc3b4c3e73e46558b24e4bbaf931790012266ac62bff70c3139f0034dafc7de4622827c0f09d4d626efa SHA512 5db2122d95e78056752bbca9adee72c0fa634963b4ea6979c0b75a9cc58b5ef4cf88b79ad640920363ebe7855311bedfa7e30eaba378274a0eebc31557dd57e7 diff --git a/dev-java/aspectj/aspectj-1.9.6.ebuild b/dev-java/aspectj/aspectj-1.9.6.ebuild deleted file mode 100644 index b1bc3636c59f..000000000000 --- a/dev-java/aspectj/aspectj-1.9.6.ebuild +++ /dev/null @@ -1,44 +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" - -inherit java-pkg-2 java-pkg-simple - -DESCRIPTION="A seamless aspect-oriented extension to the Java programming language" -HOMEPAGE="https://eclipse.org/aspectj/" -SRC_URI="https://www.eclipse.org/downloads/download.php?file=/tools/${PN}/${P}-src.jar&r=1 -> ${P}-src.jar" - -LICENSE="EPL-1.0" -SLOT="0" -KEYWORDS="amd64 x86" - -CDEPEND="dev-java/asm:9 - dev-java/commons-logging:0" -DEPEND="${CDEPEND} - >=virtual/jdk-1.8:*" -RDEPEND="${CDEPEND} - >=virtual/jre-1.8:*" -BDEPEND="app-arch/zip" - -S=${WORKDIR} - -JAVA_SRC_DIR="${S}/src" -JAVA_GENTOO_CLASSPATH="commons-logging,asm-9" -JAVA_ENCODING="iso8859-1" - -src_unpack() { - default - unzip "${S}"/aspectjweaver-${PV}-sources.jar -d "${S}"/src/ || die -} - -src_prepare() { - default - - # needs part of BEA JRockit to compile - rm "${S}"/src/org/aspectj/weaver/loadtime/JRockitAgent.java || die - # aspectj uses a renamed version of asm:4 - find -name "*.java" -exec sed -i -e 's/import aj.org.objectweb.asm./import org.objectweb.asm./g' {} \; || die - mkdir -p "${S}"/target/classes/org/aspectj/weaver/ || die -} |