* [gentoo-commits] repo/gentoo:master commit in: dev-java/cglib/, dev-java/cglib/files/
@ 2021-04-07 6:27 Andreas Sturmlechner
0 siblings, 0 replies; only message in thread
From: Andreas Sturmlechner @ 2021-04-07 6:27 UTC (permalink / raw
To: gentoo-commits
commit: 92f8cce642eb5a21765420be48676300657e7966
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 7 06:26:10 2021 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Apr 7 06:26:10 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92f8cce6
dev-java/cglib: Drop 3.1
Closes: https://bugs.gentoo.org/778596
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
dev-java/cglib/Manifest | 1 -
dev-java/cglib/cglib-3.1.ebuild | 58 --------------------------
dev-java/cglib/files/cglib-3.1-build.xml.patch | 36 ----------------
3 files changed, 95 deletions(-)
diff --git a/dev-java/cglib/Manifest b/dev-java/cglib/Manifest
index cf2193ec38b..e2e74e006c2 100644
--- a/dev-java/cglib/Manifest
+++ b/dev-java/cglib/Manifest
@@ -1,2 +1 @@
DIST cglib-RELEASE_3_3_0.tar.gz 151490 BLAKE2B d7ca4cc9ea6dad9f7a827c784ad13f93e8f31c817c5a0182a86b2ba759ccd3dfbec88d5178507599cd08a97a1ef13ba4880cab016b68b92dda3358bfb0a751c0 SHA512 635dcdb10a8fe83887a1dc8cf12844fe61b73a12fb530bf84d6ac53f75b0103820d76518cbc0d93d63dba86d13929f0df4dbae3b4943a402cf9f2af76f44161a
-DIST cglib-src-3.1.jar 1541525 BLAKE2B 46df8c11a8d05549c15a3bbf0f9789fbe4ad0540caa5be6d30f922aec95b55427cf36bff7740ba8c050c3c72749c6e9c98d8119a6de345126d7ef72343130568 SHA512 3b246b37f1c90acaefd4ba64f1f1db0b4d1fa64025f0e4e216ae7955e05701671bf8dc01d19c754286966cc5f8c06d78d02cb4f4500542f4448656768109c13f
diff --git a/dev-java/cglib/cglib-3.1.ebuild b/dev-java/cglib/cglib-3.1.ebuild
deleted file mode 100644
index 88dbbfbb6dd..00000000000
--- a/dev-java/cglib/cglib-3.1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-JAVA_PKG_IUSE="doc examples source test"
-
-inherit java-pkg-2 java-ant-2
-
-DESCRIPTION="cglib is a powerful, high performance and quality Code Generation Library"
-HOMEPAGE="https://github.com/cglib/cglib"
-SRC_URI="mirror://sourceforge/${PN}/${PN}-src-${PV}.jar"
-
-LICENSE="Apache-2.0"
-SLOT="3"
-KEYWORDS="amd64 ~arm64 ppc64 x86"
-
-IUSE=""
-
-COMMON_DEP="dev-java/asm:4
- dev-java/ant-core:0"
-RDEPEND=">=virtual/jre-1.6
- ${COMMON_DEP}"
-DEPEND=">=virtual/jdk-1.6
- test? ( dev-java/junit:4 )
- ${COMMON_DEP}"
-
-S="${WORKDIR}"
-
-JAVA_ANT_REWRITE_CLASSPATH="yes"
-EANT_GENTOO_CLASSPATH="asm-4 ant-core"
-
-java_prepare() {
- find . -iname '*.jar' -delete || die
-
- # Get rid of some parts in XML.
- epatch "${FILESDIR}"/${P}-build.xml.patch
-}
-
-src_install() {
- java-pkg_newjar dist/${P}.jar ${PN}.jar
-
- if use doc; then
- java-pkg_dojavadoc docs
- fi
-
- if use source; then
- java-pkg_dosrc src/proxy/net
- fi
-
- if use examples; then
- java-pkg_doexamples --subdir samples src/proxy/samples
- fi
-}
-
-src_test() {
- java-pkg-2_src_test
-}
diff --git a/dev-java/cglib/files/cglib-3.1-build.xml.patch b/dev-java/cglib/files/cglib-3.1-build.xml.patch
deleted file mode 100644
index 0bf60be7b01..00000000000
--- a/dev-java/cglib/files/cglib-3.1-build.xml.patch
+++ /dev/null
@@ -1,36 +0,0 @@
---- build.xml.orig 2015-04-11 20:26:25.459688628 +0200
-+++ build.xml 2015-04-11 20:28:41.930026892 +0200
-@@ -73,7 +73,7 @@
- <target depends="prepare" description="Compile shareable components"
- name="compile">
- <javac debug="${compile.debug}" deprecation="${compile.deprecation}" destdir="${build.home}/classes" optimize="${compile.optimize}" srcdir="${source.home}"
-- target="${compile.target}" bootclasspath="${compile.bootclasspath}" extdirs="${compile.extdirs}" source="${compile.source}">
-+ target="${compile.target}" extdirs="${compile.extdirs}" source="${compile.source}">
- <classpath refid="compile.classpath"/>
- <compilerarg compiler="jikes" value="-nowarn"/>
- </javac>
-@@ -123,15 +123,6 @@
- <include name="**/*"/>
- <exclude name="samples/**" />
- </jar>
--
-- <taskdef name="jarjar" classname="com.tonicsystems.jarjar.JarJarTask" classpathref="compile.classpath"/>
-- <jarjar basedir="${build.home}/classes" jarfile="${dist.home}/${component.name}-nodep-${component.version}.jar" >
-- <zipfileset dir="lib" includes="asm*.txt"/>
-- <zipfileset src="lib/asm-4.2.jar" excludes="META-INF"/>
-- <rule pattern="org.objectweb.asm.**" result="net.sf.cglib.asm.@1"/>
-- <include name="**/*"/>
-- <exclude name="samples/**"/>
-- </jarjar>
- </target>
-
- <target depends="compile,javadoc" description="Create docs and source distribution" name="srcjar">
-@@ -246,7 +237,7 @@
- <!-- <jvmarg value="-verbose:class"/> -->
- <!-- <jvmarg value="-Xprof"/> -->
- <!-- <jvmarg value="-server"/> -->
-- <!-- <sysproperty key="cglib.debugLocation" value="debug"/> -->
-+ <sysproperty key="cglib.debugLocation" value="debug"/>
- <!-- <jvmarg value="-Djava.security.policy==java.policy" /> -->
- <!-- <jvmarg value="-Djava.security.manager" /> -->
-
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2021-04-07 6:27 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-07 6:27 [gentoo-commits] repo/gentoo:master commit in: dev-java/cglib/, dev-java/cglib/files/ Andreas Sturmlechner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox